diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..ea6e20f5b2e79f76a0032c30d99b9fcd346232fd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# http://editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +insert_final_newline = false +trim_trailing_whitespace = false diff --git a/.env.development b/.env.development new file mode 100644 index 0000000000000000000000000000000000000000..30d21b55eee927962dc9824671bf057dc6c1301e --- /dev/null +++ b/.env.development @@ -0,0 +1,5 @@ +# just a flag +ENV = 'development' + +# base api +# VUE_APP_BASE_API = '' diff --git a/.env.production b/.env.production new file mode 100644 index 0000000000000000000000000000000000000000..bc125db86af14fce5afcacce49dd4d3d9848d88c --- /dev/null +++ b/.env.production @@ -0,0 +1,6 @@ +# just a flag +ENV = 'production' + +# base api +VUE_APP_BASE_API = '/kcp/api' + diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000000000000000000000000000000000000..e8a3659c02eb51bd705036ef3c3a2690e845316d --- /dev/null +++ b/.eslintignore @@ -0,0 +1,5 @@ +build/*.js +src/assets +public +dist +.vue diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000000000000000000000000000000000000..f4c31914887ac52668c61b0a7c1a4bc0cee20f64 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,201 @@ +module.exports = { + root: true, + parserOptions: { + parser: '@babel/eslint-parser', + sourceType: 'module' + }, + env: { + browser: true, + node: true, + es6: true, + }, + extends: ['plugin:vue/recommended'], + + // add your custom rules here + //it is base on https://github.com/vuejs/eslint-config-vue + rules: { + "vue/max-attributes-per-line": [2, { + "singleline": 10, + "multiline": { + "max": 1, + "allowFirstLine": false + } + }], + "vue/singleline-html-element-content-newline": "off", + "vue/multiline-html-element-content-newline": "off", + "vue/name-property-casing": ["error", "PascalCase"], + "vue/no-v-for-template-key": 'off', + "vue/no-v-for-template-key-on-child": "off",//vue3才使用的校验 + "vue/no-v-html": "off", + 'accessor-pairs': 2, + 'arrow-spacing': [2, { + 'before': true, + 'after': true + }], + 'block-spacing': [2, 'always'], + 'brace-style': [2, '1tbs', { + 'allowSingleLine': true + }], + 'camelcase': [0, { + 'properties': 'always' + }], + 'comma-dangle': [2, 'never'], + 'comma-spacing': [2, { + 'before': false, + 'after': true + }], + 'comma-style': [2, 'last'], + 'constructor-super': 2, + 'curly': [2, 'multi-line'], + 'dot-location': [2, 'property'], + 'eol-last': 2, + 'eqeqeq': ["error", "always", { "null": "ignore" }], + 'generator-star-spacing': [2, { + 'before': true, + 'after': true + }], + 'handle-callback-err': [2, '^(err|error)$'], + 'indent': [2, 2, { + 'SwitchCase': 1 + }], + 'jsx-quotes': [2, 'prefer-single'], + 'key-spacing': [2, { + 'beforeColon': false, + 'afterColon': true + }], + 'keyword-spacing': [2, { + 'before': true, + 'after': true + }], + 'new-cap': [2, { + 'newIsCap': true, + 'capIsNew': false + }], + 'new-parens': 2, + 'no-array-constructor': 2, + 'no-caller': 2, + 'no-console': 'off', + 'no-class-assign': 2, + 'no-cond-assign': 2, + 'no-const-assign': 2, + 'no-control-regex': 0, + 'no-delete-var': 2, + 'no-dupe-args': 2, + 'no-dupe-class-members': 2, + 'no-dupe-keys': 2, + 'no-duplicate-case': 2, + 'no-empty-character-class': 2, + 'no-empty-pattern': 2, + 'no-eval': 2, + 'no-ex-assign': 2, + 'no-extend-native': 2, + 'no-extra-bind': 2, + 'no-extra-boolean-cast': 2, + 'no-extra-parens': [2, 'functions'], + 'no-fallthrough': 2, + 'no-floating-decimal': 2, + 'no-func-assign': 2, + 'no-implied-eval': 2, + 'no-inner-declarations': [2, 'functions'], + 'no-invalid-regexp': 2, + 'no-irregular-whitespace': 2, + 'no-iterator': 2, + 'no-label-var': 2, + 'no-labels': [2, { + 'allowLoop': false, + 'allowSwitch': false + }], + 'no-lone-blocks': 2, + 'no-mixed-spaces-and-tabs': 2, + 'no-multi-spaces': 2, + 'no-multi-str': 2, + 'no-multiple-empty-lines': [2, { + 'max': 1 + }], + 'no-native-reassign': 2, + 'no-negated-in-lhs': 2, + 'no-new-object': 2, + 'no-new-require': 2, + 'no-new-symbol': 2, + 'no-new-wrappers': 2, + 'no-obj-calls': 2, + 'no-octal': 2, + 'no-octal-escape': 2, + 'no-path-concat': 2, + 'no-proto': 2, + 'no-redeclare': 2, + 'no-regex-spaces': 2, + 'no-return-assign': [2, 'except-parens'], + 'no-self-assign': 2, + 'no-self-compare': 2, + 'no-sequences': 2, + 'no-shadow-restricted-names': 2, + 'no-spaced-func': 2, + 'no-sparse-arrays': 2, + 'no-this-before-super': 2, + 'no-throw-literal': 2, + 'no-trailing-spaces': 2, + 'no-undef': 2, + 'no-undef-init': 2, + 'no-unexpected-multiline': 2, + 'no-unmodified-loop-condition': 2, + 'no-unneeded-ternary': [2, { + 'defaultAssignment': false + }], + 'no-unreachable': 2, + 'no-unsafe-finally': 2, + 'no-unused-vars': [2, { + 'vars': 'all', + 'args': 'none' + }], + 'no-useless-call': 2, + 'no-useless-computed-key': 2, + 'no-useless-constructor': 2, + 'no-useless-escape': 0, + 'no-whitespace-before-property': 2, + 'no-with': 2, + 'one-var': [2, { + 'initialized': 'never' + }], + 'operator-linebreak': [2, 'after', { + 'overrides': { + '?': 'before', + ':': 'before' + } + }], + 'padded-blocks': [2, 'never'], + 'quotes': [1, 'single', { + 'avoidEscape': true, + 'allowTemplateLiterals': true + }], + 'semi': [2, 'never'], + 'semi-spacing': [2, { + 'before': false, + 'after': true + }], + 'space-before-blocks': [2, 'always'], + 'space-before-function-paren': [2, 'never'], + 'space-in-parens': [2, 'never'], + 'space-infix-ops': 2, + 'space-unary-ops': [2, { + 'words': true, + 'nonwords': false + }], + 'spaced-comment': [2, 'always', { + 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] + }], + 'template-curly-spacing': [2, 'never'], + 'use-isnan': 2, + 'valid-typeof': 2, + 'wrap-iife': [2, 'any'], + 'yield-star-spacing': [2, 'both'], + 'yoda': [2, 'never'], + 'prefer-const': 2, + 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, + 'object-curly-spacing': [2, 'always', { + objectsInObjects: false + }], + 'array-bracket-spacing': [2, 'never'] + + }, +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..3e5317c452dc63d5b0a8f0df5a507da7ce09a1d5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +.DS_Store +node_modules/ +dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +package-lock.json +tests/**/coverage/ + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.zip +*.css +*.min.css \ No newline at end of file diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000000000000000000000000000000000000..fb82b2715f46a87182f3e004dcc731f5a5f49fe8 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,14 @@ +module.exports = { + presets: [ + // https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app + '@vue/cli-plugin-babel/preset' + ], + 'env': { + 'development': { + // babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require(). + // This plugin can significantly increase the speed of hot updates, when you have a large number of pages. + // https://panjiachen.github.io/vue-element-admin-site/guide/advanced/lazy-loading.html + 'plugins': ['dynamic-import-node'] + } + } +} diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..c178f28b3c9bfb2885cfc79db9e5b0299e742f35 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "baseUrl": "./", + "paths": { + "@/*": [ + "src/*" + ] + } + }, + "include": [ + "./src/*" + ], + "exclude": [ + "node_modules", + "dist" + ], +} \ No newline at end of file diff --git a/mock/index.js b/mock/index.js new file mode 100644 index 0000000000000000000000000000000000000000..a46817c78bb3fd2eaa1309ea71c79d0277ae0a25 --- /dev/null +++ b/mock/index.js @@ -0,0 +1,63 @@ +const Mock = require('mockjs') +const { param2Obj } = require('./utils') + +const user = require('./user') +const table = require('./table') +const login = require('./login') +const workOrder = require('./workOrder') +const vcenter = require('./venter') + +const mocks = [ + ...user, + ...table, + ...login, + ...vcenter, + ...workOrder +] + +// for front mock +// please use it cautiously, it will redefine XMLHttpRequest, +// which will cause many of your third-party libraries to be invalidated(like progress event). +function mockXHR() { + // mock patch + // https://github.com/nuysoft/Mock/issues/300 + Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send + Mock.XHR.prototype.send = function () { + if (this.custom.xhr) { + this.custom.xhr.withCredentials = this.withCredentials || false + + if (this.responseType) { + this.custom.xhr.responseType = this.responseType + } + } + this.proxy_send(...arguments) + } + + function XHR2ExpressReqWrap(respond) { + return function (options) { + let result = null + if (respond instanceof Function) { + const { body, type, url } = options + // https://expressjs.com/en/4x/api.html#req + result = respond({ + method: type, + body: JSON.parse(body), + query: param2Obj(url) + }) + } else { + result = respond + } + return Mock.mock(result) + } + } + + for (const i of mocks) { + Mock.mock(new RegExp(i.url), i.type || 'get', XHR2ExpressReqWrap(i.response)) + } +} + +module.exports = { + mocks, + mockXHR +} + diff --git a/mock/login.js b/mock/login.js new file mode 100644 index 0000000000000000000000000000000000000000..eb8cfb2eba5557b125058d665a5c66445419189d --- /dev/null +++ b/mock/login.js @@ -0,0 +1,84 @@ +module.exports = [ + { + url: '/dept/queryDeptList', + type: 'post', + response: config => { + return { + 'code': 200, + 'desc': '请求成功', + 'data': [ + { + 'deptId': 1, + 'deptName': '研发二部', + 'parentId': 0, + 'childDepts': [ + { + 'deptId': 2, + 'deptName': '虚拟化小组', + 'parentId': 1, + 'childDepts': [ + { + 'deptId': 4, + 'deptName': '虚拟化前端', + 'parentId': 2, + 'childDepts': [] + }, + { + 'deptId': 6, + 'deptName': '虚拟化后端', + 'parentId': 2, + 'childDepts': [] + } + ] + }, + { + 'deptId': 3, + 'deptName': '云桌面', + 'parentId': 1, + 'childDepts': [] + } + ] + }, + { + 'deptId': 5, + 'deptName': '研发一部', + 'parentId': 0, + 'childDepts': [] + } + ] + } + } + }, + { + url: '/org/queryOrgList', + type: 'post', + response: config => { + return { + 'code': 200, + 'desc': '请求成功', + 'data': [ + { + 'organizationId': 1, + 'organizationName': '麒麟信安', + 'parentId': 0, + 'childOrgs': [ + { + 'organizationId': 2, + 'organizationName': '陕西麒麟', + 'parentId': 1, + 'childOrgs': [] + }, + { + 'organizationId': 3, + 'organizationName': '研发一部', + 'parentId': 1, + 'childOrgs': [] + } + ] + } + ] + } + } + } +] + diff --git a/mock/mock-server.js b/mock/mock-server.js new file mode 100644 index 0000000000000000000000000000000000000000..a9e30f94061596c66ecbe7b236e37981c6629fb8 --- /dev/null +++ b/mock/mock-server.js @@ -0,0 +1,80 @@ +const chokidar = require('chokidar') +const bodyParser = require('body-parser') +const chalk = require('chalk') +const path = require('path') +const Mock = require('mockjs') + +const mockDir = path.join(process.cwd(), 'mock') + +function registerRoutes(app) { + let mockLastIndex + const { mocks } = require('./index.js') + const mocksForServer = mocks.map(route => { + return responseFake(route.url, route.type, route.response) + }) + for (const mock of mocksForServer) { + app[mock.type](mock.url, mock.response) + mockLastIndex = app._router.stack.length + } + const mockRoutesLength = Object.keys(mocksForServer).length + return { + mockRoutesLength: mockRoutesLength, + mockStartIndex: mockLastIndex - mockRoutesLength + } +} + +function unregisterRoutes() { + Object.keys(require.cache).forEach(i => { + if (i.includes(mockDir)) { + delete require.cache[require.resolve(i)] + } + }) +} + +// for mock server +const responseFake = (url, type, respond) => { + return { + url: new RegExp(`${process.env.VUE_APP_BASE_API}${url}`), + type: type || 'get', + response(req, res) { + res.json(Mock.mock(respond instanceof Function ? respond(req, res) : respond)) + } + } +} + +module.exports = app => { + // parse app.body + // https://expressjs.com/en/4x/api.html#req.body + app.use(bodyParser.json()) + app.use(bodyParser.urlencoded({ + extended: true + })) + + const mockRoutes = registerRoutes(app) + var mockRoutesLength = mockRoutes.mockRoutesLength + var mockStartIndex = mockRoutes.mockStartIndex + + // watch files, hot reload mock server + chokidar.watch(mockDir, { + ignored: /mock-server/, + ignoreInitial: true + }).on('all', (event, path) => { + if (event === 'change' || event === 'add') { + try { + // remove mock routes stack + app._router.stack.splice(mockStartIndex, mockRoutesLength) + + // clear routes cache + unregisterRoutes() + + const mockRoutes = registerRoutes(app) + mockRoutesLength = mockRoutes.mockRoutesLength + mockStartIndex = mockRoutes.mockStartIndex + + console.error(chalk.magentaBright(`\n > Mock Server hot reload success! changed ${path}`)) + } catch (error) { + console.error(chalk.redBright(error)) + } + } + }) +} diff --git a/mock/table.js b/mock/table.js new file mode 100644 index 0000000000000000000000000000000000000000..6f12eac080893969b26e06347c2e00aa45e252fb --- /dev/null +++ b/mock/table.js @@ -0,0 +1,29 @@ +const Mock = require('mockjs') + +const data = Mock.mock({ + 'items|30': [{ + id: '@id', + title: '@sentence(10, 20)', + 'status|1': ['published', 'draft', 'deleted'], + author: 'name', + display_time: '@datetime', + pageviews: '@integer(300, 5000)' + }] +}) + +module.exports = [ + { + url: '/vue-admin-template/table/list', + type: 'get', + response: config => { + const items = data.items + return { + code: 200, + data: { + total: items.length, + items: items + } + } + } + } +] diff --git a/mock/user.js b/mock/user.js new file mode 100644 index 0000000000000000000000000000000000000000..78d6bc025600a8541709d6f7bbeff9ccd5757439 --- /dev/null +++ b/mock/user.js @@ -0,0 +1,76 @@ + +module.exports = [ + // user login + { + url: '/login', + type: 'post', + response: config => { + return { + 'code': 200, + 'desc': '请求成功', + 'data': {} + } + } + }, + + { + url: '/user/register', + type: 'post', + response: config => { + return { + 'code': 200 + } + } + }, + + { + url: '/user/updateRealName', + type: 'post', + response: config => { + return { + 'code': 200, + 'desc': 'error 123' + } + } + }, + + { + url: '/user/updatePwd', + type: 'post', + response: config => { + return { + 'code': 200, + 'desc': 'error 124' + } + } + }, + + // get user info + { + url: '/user/userInfo', + type: 'post', + response: config => { + return { + 'code': 200, + 'data': { + 'roles': ['admin'], + 'introduction': 'I am a super administrator', + 'avatar': 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif', + 'name': 'Super Admin' + } + } + } + }, + + // user logout + { + url: '/loginOut', + type: 'post', + response: _ => { + return { + code: 200, + desc: 'success' + } + } + } +] diff --git a/mock/utils.js b/mock/utils.js new file mode 100644 index 0000000000000000000000000000000000000000..95cc27d5fe6446bc16960a0c2f79975ca6cec411 --- /dev/null +++ b/mock/utils.js @@ -0,0 +1,25 @@ +/** + * @param {string} url + * @returns {Object} + */ +function param2Obj(url) { + const search = decodeURIComponent(url.split('?')[1]).replace(/\+/g, ' ') + if (!search) { + return {} + } + const obj = {} + const searchArr = search.split('&') + searchArr.forEach(v => { + const index = v.indexOf('=') + if (index !== -1) { + const name = v.substring(0, index) + const val = v.substring(index + 1, v.length) + obj[name] = val + } + }) + return obj +} + +module.exports = { + param2Obj +} diff --git a/mock/vcenter.js b/mock/vcenter.js new file mode 100644 index 0000000000000000000000000000000000000000..33e83e44f5e52c22d6f33f639f4e9d9d45425e29 --- /dev/null +++ b/mock/vcenter.js @@ -0,0 +1,3 @@ +module.exports = [ + +] \ No newline at end of file diff --git a/mock/workOrder.js b/mock/workOrder.js new file mode 100644 index 0000000000000000000000000000000000000000..d404486d4a7a6b050a4c2e4ed42e6ebf41f33483 --- /dev/null +++ b/mock/workOrder.js @@ -0,0 +1,271 @@ +module.exports = [ + // 工单列表查询 + { + url: '/workOrder/pageWorkOrder', + type: 'post', + response: config => { + return { + "code": 200, + "desc": "请求成功", + "data": { + "list": [ + { + "workOrderId": 1, + "type": "MODIFY_SERVERVM", + "typeDesc": "变更云服务器", + "target": "wanglei1", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyReason": "测试申请", + "auditOpinion": 'over', + "applyTime": "2021-06-18 14:13:05" + }, + { + "workOrderId": 2, + "type": "APPLY_SERVERVM", + "typeDesc": "申请云服务器", + "target": "wanglei1", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyReason": "测试申请", + "auditOpinion": "over", + "applyTime": new Date() + }, + { + "workOrderId": 3, + "type": "DEFERRED_SERVERVM", + "typeDesc": "延期云服务器", + "target": "wanglei1", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyReason": "测试申请", + "auditOpinion": "调试中...", + "applyTime": new Date() + }, + { + "workOrderId": 4, + "type": "REGISTER_USER", + "typeDesc": "注册账号", + "target": "wanglei1", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyReason": "测试申请", + "auditOpinion": "调试中...", + "applyTime": new Date() + }, + { + "workOrderId": 5, + "type": "MODIFY_USER", + "typeDesc": "修改账号", + "target": "wanglei1", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyReason": "测试申请", + "auditOpinion": "调试中...", + "applyTime": new Date() + } + ], + "pageInfo": { + "currentPage": 1, + "currentSize": 2, + "total": 40, + "totalPage": 2 + } + } + } + + } + }, + + { + url: '/workOrder/applyServerVmDetail', + type: 'post', + response: config => { + return { + "code": 200, + "desc": "请求成功", + "data": { + "workOrderType": "APPLY_SERVERVM", + "workOrderTypeDesc": "申请云服务器", + "workOrderTarget": "wanglei-test", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyTime": "2021-06-21 16:45:25", + "applyReason": "测试", + "auditOpinion": null, + "auditionTime": null, + "auditionUser": null, + "userId": 17, + "osMachine": "KylinsecOS", + "useMonth": 6, + "applyNum": 2, + "deadlineType": "POWER_OFF", + "deadlineTypeDesc": "关机", + "cpu": 2, + "mem": 4, + "disks": [ + { + "diskSize": 500, + "purpose": "用途xx" + }, + { + "diskSize": 200, + "purpose": "用途xx" + } + ], + "networks": [ + { + "purpose": "网络类型(Bridge) 交换机(TPlinksafg)端口组(102)" + }, + { + "purpose": "网络类型(Bridge) 交换机(TPlinksafg)端口组(103)" + }, + { + "purpose": "外网网卡测试使用" + }, + { + "purpose": "内网网卡,测试使用" + } + ] + } + } + + } + }, + { + url: '/workOrder/modifyServerVmDetail', + type: 'post', + response: config => { + return { + "code": 200, + "desc": "请求成功", + "data": { + "workOrderType": "MODIFY_SERVERVM", + "workOrderTypeDesc": "变更云服务器", + "workOrderTarget": "wanglei-test", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyTime": "2021-06-21 16:45:25", + "applyReason": "测试", + "auditOpinion": null, + "auditionTime": null, + "auditionUser": null, + "userId": 17, + "osMachine": "KylinsecOS", + "deadLineTime": "2022-09-22 23:59:59", + "applyNum": 2, + "deadlineType": "POWER_OFF", + "deadlineTypeDesc": "关机", + "cpu": 2, + "mem": 4, + "disks": [ + { + "diskSize": 500, + "purpose": "测试磁盘1" + }, + { + "diskSize": 200, + "purpose": "测试磁盘2" + } + ], + "networks": [ + { + "purpose": "网络类型(Bridge) 交换机(TPlinksafg)端口组(102)" + }, + { + "purpose": "网络类型(Bridge) 交换机(TPlinksafg)端口组(103)" + }, + { + "purpose": "外网网卡测试使用" + }, + { + "purpose": "内网网卡,测试使用" + } + ] + } + } + } + }, + { + url: '/workOrder/applyDeferredDetail', + type: 'post', + response: config => { + return { + "code": 200, + "desc": "请求成功", + "data": { + "workOrderType": "DEFERRED_SERVERVM", + "workOrderTypeDesc": "延期云服务器", + "workOrderTarget": "wanglei", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyTime": "2021-06-18 14:48:07", + "applyReason": "修改真实姓名", + "auditOpinion": null, + "auditionTime": null, + "auditionUser": null, + "userId": 8, + "oldDeadlineTime": "2021-07-22 23:59:59", + "newDeadlineTime": "2021-08-22 23:59:59" + } + } + + } + }, + { + url: '/workOrder/registerUserDetail', + type: 'post', + response: config => { + return { + "code": 200, + "desc": "请求成功", + "data": { + "workOrderType": "REGISTER_USER", + "workOrderTypeDesc": "注册账号", + "workOrderTarget": "wanglei1", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyTime": "2021-06-18 14:13:05", + "applyReason": "测试申请", + "auditOpinion": null, + "auditionTime": null, + "auditionUser": null, + "userName": "wanglei1", + "realName": "汪雷", + "organizationName": "研发一部", + "mobile": 1234564433 + } + } + + + } + }, + { + url: '/workOrder/updateUserDetail', + type: 'post', + response: config => { + return { + "code": 200, + "desc": "请求成功", + "data": { + "workOrderType": "MODIFY_USER", + "workOrderTypeDesc": "修改账号", + "workOrderTarget": "wanglei", + "status": "WAIT_CHECK", + "statusDesc": "待审核", + "applyTime": "2021-06-18 14:48:07", + "applyReason": "修改真实姓名", + "auditOpinion": null, + "auditionTime": null, + "auditionUser": null, + "userId": 8, + "userName": "wanglei", + "realName": "汪雷", + "newRealName": "runningwang", + "organizationName": "研发一部", + "mobile": null + } + } + } + } +] \ No newline at end of file diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json new file mode 100644 index 0000000000000000000000000000000000000000..9bdf382e279309f2be24e38d1f40ef4fb5f0c006 --- /dev/null +++ b/npm-shrinkwrap.json @@ -0,0 +1,102101 @@ +{ + "name": "kcp_vue", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz" + } + } + } + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + } + } + } + } + }, + "@babel/compat-data": { + "version": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/core": { + "version": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helpers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/generator": { + "version": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "https://registry.nlark.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz?cache=0&sync_timestamp=1623281028892&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.14.5.tgz", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-explode-assignable-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.14.5.tgz?cache=0&sync_timestamp=1623280355925&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-explode-assignable-expression%2Fdownload%2F%40babel%2Fhelper-explode-assignable-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-compilation-targets": { + "version": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": { + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-8.2.0.tgz", + "requires": { + "regenerate": "^1.4.0" + }, + "dependencies": { + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + } + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.nlark.com/regjsgen/download/regjsgen-0.5.2.tgz" + }, + "regjsparser": { + "version": "0.6.9", + "resolved": "https://registry.nlark.com/regjsparser/download/regjsparser-0.6.9.tgz", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-0.5.0.tgz" + } + } + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-1.0.4.tgz", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "dependencies": { + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.1.0.tgz" + } + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.2.0.tgz" + } + } + } + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": { + "is-core-module": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + } + } + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "https://registry.nlark.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.14.5.tgz?cache=0&sync_timestamp=1623280355925&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-explode-assignable-expression%2Fdownload%2F%40babel%2Fhelper-explode-assignable-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-function-name": { + "version": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-get-function-arity": { + "version": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-hoist-variables": { + "version": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-module-imports": { + "version": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-module-transforms": { + "version": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-optimise-call-expression": { + "version": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-remap-async-to-generator": { + "version": "https://registry.nlark.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.14.5.tgz?cache=0&sync_timestamp=1623281035387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-wrap-function": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.14.5.tgz?cache=0&sync_timestamp=1623281034189&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-wrap-function%2Fdownload%2F%40babel%2Fhelper-wrap-function-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-replace-supers": { + "version": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-simple-access": { + "version": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@babel/helper-split-export-declaration": { + "version": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-validator-identifier": { + "version": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "@babel/helper-wrap-function": { + "version": "https://registry.nlark.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.14.5.tgz?cache=0&sync_timestamp=1623281034189&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-wrap-function%2Fdownload%2F%40babel%2Fhelper-wrap-function-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helpers": { + "version": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/highlight": { + "version": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + } + } + }, + "@babel/parser": { + "version": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "https://registry.nlark.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz?cache=0&sync_timestamp=1623281031588&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.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.14.5.tgz?cache=0&sync_timestamp=1623281029077&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-optional-chaining%2Fdownload%2F%40babel%2Fplugin-proposal-optional-chaining-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + } + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281036884&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-async-generator-functions%2Fdownload%2F%40babel%2Fplugin-proposal-async-generator-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.14.5.tgz?cache=0&sync_timestamp=1623281035387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-wrap-function": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.14.5.tgz?cache=0&sync_timestamp=1623281034189&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-wrap-function%2Fdownload%2F%40babel%2Fhelper-wrap-function-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.14.5.tgz?cache=0&sync_timestamp=1623281036705&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", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.14.5.tgz?cache=0&sync_timestamp=1623281036166&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-class-static-block%2Fdownload%2F%40babel%2Fplugin-proposal-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-decorators": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.14.5.tgz?cache=0&sync_timestamp=1623281037832&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-decorators%2Fdownload%2F%40babel%2Fplugin-proposal-decorators-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-decorators": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-decorators": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.14.5.tgz?cache=0&sync_timestamp=1623280320906&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-decorators%2Fdownload%2F%40babel%2Fplugin-syntax-decorators-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.14.5.tgz?cache=0&sync_timestamp=1623280310895&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.14.5.tgz?cache=0&sync_timestamp=1623280316882&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-json-strings%2Fdownload%2F%40babel%2Fplugin-proposal-json-strings-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "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=1623280317167&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.14.5.tgz?cache=0&sync_timestamp=1623281026792&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-object-rest-spread%2Fdownload%2F%40babel%2Fplugin-proposal-object-rest-spread-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.14.5" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.14.5.tgz?cache=0&sync_timestamp=1623280341809&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-parameters%2Fdownload%2F%40babel%2Fplugin-transform-parameters-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.14.5.tgz?cache=0&sync_timestamp=1623281029077&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-optional-chaining%2Fdownload%2F%40babel%2Fplugin-proposal-optional-chaining-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.14.5.tgz?cache=0&sync_timestamp=1623281037437&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-private-methods%2Fdownload%2F%40babel%2Fplugin-proposal-private-methods-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "https://registry.nlark.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.14.5.tgz?cache=0&sync_timestamp=1623281037606&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.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "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=1623281030595&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-decorators": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.14.5.tgz?cache=0&sync_timestamp=1623280320906&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-decorators%2Fdownload%2F%40babel%2Fplugin-syntax-decorators-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-jsx": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "https://registry.nlark.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "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=1623281037270&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", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.14.5.tgz?cache=0&sync_timestamp=1623281035387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-wrap-function": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.14.5.tgz?cache=0&sync_timestamp=1623281034189&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-wrap-function%2Fdownload%2F%40babel%2Fhelper-wrap-function-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "https://registry.nlark.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "https://registry.nlark.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-classes": { + "version": "https://registry.nlark.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.14.5.tgz?cache=0&sync_timestamp=1623281035642&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-classes%2Fdownload%2F%40babel%2Fplugin-transform-classes-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "https://registry.nlark.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-destructuring": { + "version": "https://registry.nlark.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "https://registry.nlark.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281031420&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "https://registry.nlark.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "https://registry.nlark.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.14.5.tgz?cache=0&sync_timestamp=1623281031959&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", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz?cache=0&sync_timestamp=1623281028892&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.14.5.tgz", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-explode-assignable-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.14.5.tgz?cache=0&sync_timestamp=1623280355925&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-explode-assignable-expression%2Fdownload%2F%40babel%2Fhelper-explode-assignable-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-for-of": { + "version": "https://registry.nlark.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-function-name": { + "version": "https://registry.nlark.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281033364&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-function-name%2Fdownload%2F%40babel%2Fplugin-transform-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623281025223&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-literals": { + "version": "https://registry.nlark.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280340946&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-literals%2Fdownload%2F%40babel%2Fplugin-transform-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "https://registry.nlark.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280341518&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-member-expression-literals%2Fdownload%2F%40babel%2Fplugin-transform-member-expression-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "https://registry.nlark.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.14.5.tgz?cache=0&sync_timestamp=1623281037068&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", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + } + } + } + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "https://registry.nlark.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038415&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-commonjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-commonjs-7.14.5.tgz", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "https://registry.nlark.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038234&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-systemjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-systemjs-7.14.5.tgz", + "requires": { + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "https://registry.nlark.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.14.5.tgz?cache=0&sync_timestamp=1623281038583&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-umd%2Fdownload%2F%40babel%2Fplugin-transform-modules-umd-7.14.5.tgz", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "https://registry.nlark.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281032117&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.5.tgz", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/plugin-transform-new-target": { + "version": "https://registry.nlark.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-object-super": { + "version": "https://registry.nlark.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.14.5.tgz?cache=0&sync_timestamp=1623281035210&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/helper-member-expression-to-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281026349&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/plugin-transform-parameters": { + "version": "https://registry.nlark.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.14.5.tgz?cache=0&sync_timestamp=1623280341809&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-parameters%2Fdownload%2F%40babel%2Fplugin-transform-parameters-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-property-literals": { + "version": "https://registry.nlark.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280340973&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-property-literals%2Fdownload%2F%40babel%2Fplugin-transform-property-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-regenerator": { + "version": "https://registry.nlark.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.14.5.tgz?cache=0&sync_timestamp=1623281051915&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-regenerator%2Fdownload%2F%40babel%2Fplugin-transform-regenerator-7.14.5.tgz", + "requires": { + "regenerator-transform": "^0.14.2" + }, + "dependencies": { + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz", + "requires": { + "@babel/runtime": "^7.8.4" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.5.tgz?cache=0&sync_timestamp=1623280325784&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.5.tgz", + "requires": { + "regenerator-runtime": "^0.13.4" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.7.tgz" + } + } + } + } + } + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "https://registry.nlark.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.14.5.tgz?cache=0&sync_timestamp=1623280351577&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-runtime": { + "version": "https://registry.nlark.com/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.14.5.tgz?cache=0&sync_timestamp=1623281029611&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-runtime%2Fdownload%2F%40babel%2Fplugin-transform-runtime-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.9.1" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + } + } + } + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "https://registry.nlark.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-spread": { + "version": "https://registry.nlark.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.14.5.tgz?cache=0&sync_timestamp=1623281030381&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-spread%2Fdownload%2F%40babel%2Fplugin-transform-spread-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-template-literals": { + "version": "https://registry.nlark.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "https://registry.nlark.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.14.5.tgz?cache=0&sync_timestamp=1623280350966&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "https://registry.nlark.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281032613&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-unicode-regex%2Fdownload%2F%40babel%2Fplugin-transform-unicode-regex-7.14.5.tgz", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/preset-env": { + "version": "https://registry.nlark.com/@babel/preset-env/download/@babel/preset-env-7.14.5.tgz?cache=0&sync_timestamp=1623281039019&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fpreset-env%2Fdownload%2F%40babel%2Fpreset-env-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-async-generator-functions": "^7.14.5", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.14.5", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.14.5", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.14.5", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.14.5", + "@babel/plugin-transform-classes": "^7.14.5", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.5", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.14.5", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.14.5", + "@babel/plugin-transform-modules-systemjs": "^7.14.5", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.5", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.14.5", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.14.5", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.14.0", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.14.5", + "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.14.5.tgz?cache=0&sync_timestamp=1623281031588&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.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.14.5.tgz?cache=0&sync_timestamp=1623281029077&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-optional-chaining%2Fdownload%2F%40babel%2Fplugin-proposal-optional-chaining-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281036884&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-async-generator-functions%2Fdownload%2F%40babel%2Fplugin-proposal-async-generator-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.14.5.tgz?cache=0&sync_timestamp=1623281035387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.14.5.tgz?cache=0&sync_timestamp=1623281036705&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", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.14.5.tgz?cache=0&sync_timestamp=1623281036166&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-class-static-block%2Fdownload%2F%40babel%2Fplugin-proposal-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.14.5.tgz?cache=0&sync_timestamp=1623280310895&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.14.5.tgz?cache=0&sync_timestamp=1623280316882&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-json-strings%2Fdownload%2F%40babel%2Fplugin-proposal-json-strings-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "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=1623280317167&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.14.5.tgz?cache=0&sync_timestamp=1623281026792&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-object-rest-spread%2Fdownload%2F%40babel%2Fplugin-proposal-object-rest-spread-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.14.5" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-transform-parameters": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.14.5.tgz?cache=0&sync_timestamp=1623280341809&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-parameters%2Fdownload%2F%40babel%2Fplugin-transform-parameters-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.14.5.tgz?cache=0&sync_timestamp=1623281029077&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-optional-chaining%2Fdownload%2F%40babel%2Fplugin-proposal-optional-chaining-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.14.5.tgz?cache=0&sync_timestamp=1623281037437&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-private-methods%2Fdownload%2F%40babel%2Fplugin-proposal-private-methods-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.14.5.tgz?cache=0&sync_timestamp=1623281037606&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.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "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=1623281030595&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "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=1623281037270&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", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.14.5.tgz?cache=0&sync_timestamp=1623281035387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-remap-async-to-generator%2Fdownload%2F%40babel%2Fhelper-remap-async-to-generator-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-classes": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.14.5.tgz?cache=0&sync_timestamp=1623281035642&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-classes%2Fdownload%2F%40babel%2Fplugin-transform-classes-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.14.5.tgz?cache=0&sync_timestamp=1623281024879&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623281026000&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281031420&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.14.5.tgz?cache=0&sync_timestamp=1623281031959&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", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz?cache=0&sync_timestamp=1623281028892&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.14.5.tgz", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281033364&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-function-name%2Fdownload%2F%40babel%2Fplugin-transform-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280340946&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-literals%2Fdownload%2F%40babel%2Fplugin-transform-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280341518&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-member-expression-literals%2Fdownload%2F%40babel%2Fplugin-transform-member-expression-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.14.5.tgz?cache=0&sync_timestamp=1623281037068&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", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038415&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-commonjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-commonjs-7.14.5.tgz", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038234&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-systemjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-systemjs-7.14.5.tgz", + "requires": { + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.14.5.tgz?cache=0&sync_timestamp=1623281038583&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-umd%2Fdownload%2F%40babel%2Fplugin-transform-modules-umd-7.14.5.tgz", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281032117&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.5.tgz", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.14.5.tgz?cache=0&sync_timestamp=1623281035210&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-replace-supers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623281033770&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.14.5.tgz?cache=0&sync_timestamp=1623280341809&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-parameters%2Fdownload%2F%40babel%2Fplugin-transform-parameters-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280340973&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-property-literals%2Fdownload%2F%40babel%2Fplugin-transform-property-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.14.5.tgz?cache=0&sync_timestamp=1623281051915&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-regenerator%2Fdownload%2F%40babel%2Fplugin-transform-regenerator-7.14.5.tgz", + "requires": { + "regenerator-transform": "^0.14.2" + }, + "dependencies": { + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz", + "requires": { + "@babel/runtime": "^7.8.4" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.14.5.tgz?cache=0&sync_timestamp=1623280351577&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-spread": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.14.5.tgz?cache=0&sync_timestamp=1623281030381&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-spread%2Fdownload%2F%40babel%2Fplugin-transform-spread-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.14.5.tgz?cache=0&sync_timestamp=1623281026508&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-skip-transparent-expression-wrappers%2Fdownload%2F%40babel%2Fhelper-skip-transparent-expression-wrappers-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.14.5.tgz?cache=0&sync_timestamp=1623280350966&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281032613&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-unicode-regex%2Fdownload%2F%40babel%2Fplugin-transform-unicode-regex-7.14.5.tgz", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/@babel/preset-modules/download/@babel/preset-modules-0.1.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "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=1623281030595&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281031420&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "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=1623281028398&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", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.9.1" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": {} + } + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + } + } + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/preset-modules": { + "version": "https://registry.nlark.com/@babel/preset-modules/download/@babel/preset-modules-0.1.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "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=1623281030595&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281031420&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + } + } + }, + "@babel/runtime": { + "version": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.5.tgz?cache=0&sync_timestamp=1623280325784&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.5.tgz", + "requires": { + "regenerator-runtime": "^0.13.4" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.7.tgz" + } + } + }, + "@babel/template": { + "version": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "@cnakazawa/watch": { + "version": "https://registry.nlark.com/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "dependencies": { + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "@hapi/address": { + "version": "https://registry.nlark.com/@hapi/address/download/@hapi/address-2.1.4.tgz" + }, + "@hapi/bourne": { + "version": "https://registry.nlark.com/@hapi/bourne/download/@hapi/bourne-1.3.2.tgz" + }, + "@hapi/hoek": { + "version": "https://registry.nlark.com/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz" + }, + "@hapi/joi": { + "version": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": { + "@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.nlark.com/@hapi/address/download/@hapi/address-2.1.4.tgz" + }, + "@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/@hapi/bourne/download/@hapi/bourne-1.3.2.tgz" + }, + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.nlark.com/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz" + }, + "@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.nlark.com/@hapi/topo/download/@hapi/topo-3.1.6.tgz", + "requires": { + "@hapi/hoek": "^8.3.0" + }, + "dependencies": { + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.nlark.com/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz" + } + } + } + } + }, + "@hapi/topo": { + "version": "https://registry.nlark.com/@hapi/topo/download/@hapi/topo-3.1.6.tgz", + "requires": { + "@hapi/hoek": "^8.3.0" + }, + "dependencies": { + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.nlark.com/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz" + } + } + }, + "@intervolga/optimize-cssnano-plugin": { + "version": "https://registry.nlark.com/@intervolga/optimize-cssnano-plugin/download/@intervolga/optimize-cssnano-plugin-1.0.6.tgz", + "requires": { + "cssnano": "^4.0.0", + "cssnano-preset-default": "^4.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.nlark.com/cssnano/download/cssnano-4.1.11.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-fresh/download/import-fresh-2.0.0.tgz", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": { + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/caller-path/download/caller-path-2.0.0.tgz", + "requires": { + "caller-callsite": "^2.0.0" + }, + "dependencies": { + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/caller-callsite/download/caller-callsite-2.0.0.tgz", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-2.0.0.tgz" + } + } + } + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz" + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + } + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": { + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz" + } + } + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + } + } + } + } + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz?cache=0&sync_timestamp=1620754721682&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-declaration-sorter%2Fdownload%2Fcss-declaration-sorter-4.0.1.tgz", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + } + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz" + } + } + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz?cache=0&sync_timestamp=1622236593947&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-colormin%2Fdownload%2Fpostcss-colormin-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/color/download/color-3.1.3.tgz", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz" + } + } + }, + "color-string": { + "version": "1.5.5", + "resolved": "https://registry.nlark.com/color-string/download/color-string-1.5.5.tgz", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz" + } + } + } + } + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.nlark.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/stylehacks/download/stylehacks-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": { + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz" + } + } + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz" + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz" + } + } + } + } + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz" + } + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-same-parent/download/cssnano-util-same-parent-4.0.1.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": { + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": {} + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz" + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz" + } + } + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/vendors/download/vendors-1.0.4.tgz" + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz" + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/hsla-regex/download/hsla-regex-1.0.0.tgz" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/rgb-regex/download/rgb-regex-1.0.1.tgz" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/rgba-regex/download/rgba-regex-1.0.0.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": { + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": {} + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz" + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz" + } + } + } + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-2.1.0.tgz" + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-3.3.0.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-3.3.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz" + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz?cache=0&sync_timestamp=1622236593132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-svgo%2Fdownload%2Fpostcss-svgo-4.0.3.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/svgo/download/svgo-1.3.2.tgz", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/coa/download/coa-2.0.2.tgz", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.nlark.com/@types/q/download/@types/q-1.5.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fq%2Fdownload%2F%40types%2Fq-1.5.4.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/q/download/q-1.5.1.tgz" + } + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/css-select/download/css-select-2.1.0.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-2.1.0.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.nlark.com/css-what/download/css-what-3.4.2.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-3.4.2.tgz" + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz", + "requires": { + "boolbase": "~1.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + } + } + } + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.37.tgz", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.4.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/csso/download/csso-4.2.0.tgz", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.1.3.tgz", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": { + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.14.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.14.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": {} + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "object.values": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz?cache=0&sync_timestamp=1622071191450&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject.values%2Fdownload%2Fobject.values-1.1.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": { + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-date-object": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": { + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "object-inspect": { + "version": "1.10.3", + "resolved": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + } + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + } + } + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "dependencies": { + "is-bigint": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.2.tgz?cache=0&sync_timestamp=1620162102171&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.2.tgz" + }, + "is-boolean-object": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.1.tgz?cache=0&sync_timestamp=1620428460670&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-boolean-object%2Fdownload%2Fis-boolean-object-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + } + } + }, + "is-number-object": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.5.tgz?cache=0&sync_timestamp=1620421302435&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-number-object%2Fdownload%2Fis-number-object-1.0.5.tgz" + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": { + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + } + } + } + } + } + } + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/stable/download/stable-0.1.8.tgz" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": {} + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": {} + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "object-inspect": { + "version": "1.10.3", + "resolved": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": {} + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": {} + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "object-inspect": { + "version": "1.10.3", + "resolved": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": {} + } + } + } + } + } + } + } + } + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + } + } + } + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz?cache=0&sync_timestamp=1620754721682&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-declaration-sorter%2Fdownload%2Fcss-declaration-sorter-4.0.1.tgz", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": {} + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": {} + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz?cache=0&sync_timestamp=1622236593947&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-colormin%2Fdownload%2Fpostcss-colormin-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.nlark.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": {} + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": {} + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": {} + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz?cache=0&sync_timestamp=1622236593132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-svgo%2Fdownload%2Fpostcss-svgo-4.0.3.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": {} + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@jest/console": { + "version": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "@jest/core": { + "version": "https://registry.nlark.com/@jest/core/download/@jest/core-24.9.0.tgz?cache=0&sync_timestamp=1622709636473&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/reporters/download/@jest/reporters-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz?cache=0&sync_timestamp=1621241448952&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-report%2Fdownload%2F%40types%2Fistanbul-lib-report-3.0.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + } + } + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": { + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.0.tgz?cache=0&sync_timestamp=1621243984050&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.0.tgz" + } + } + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-2.1.1.tgz", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + } + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/cache-base/download/cache-base-1.0.1.tgz", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": { + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "dependencies": { + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/map-visit/download/map-visit-1.0.0.tgz", + "requires": { + "object-visit": "^1.0.0" + }, + "dependencies": { + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + } + } + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + } + } + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-value/download/has-value-1.0.0.tgz", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-values/download/has-values-1.0.0.tgz", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-4.0.0.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + } + } + } + } + } + } + } + } + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/to-object-path/download/to-object-path-0.3.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/union-value/download/union-value-1.0.1.tgz", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/unset-value/download/unset-value-1.0.0.tgz", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/has-value/download/has-value-0.3.1.tgz", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/has-values/download/has-values-0.1.4.tgz" + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + } + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-5.1.0.tgz" + } + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/static-extend/download/static-extend-0.1.2.tgz", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/object-copy/download/object-copy-0.1.0.tgz", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz" + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + } + } + } + } + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/mixin-deep/download/mixin-deep-1.3.2.tgz", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + } + } + } + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/pascalcase/download/pascalcase-0.1.1.tgz" + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": { + "atob": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/resolve-url/download/resolve-url-0.2.1.tgz" + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz" + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/snapdragon-util/download/snapdragon-util-3.0.1.tgz", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + } + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": {} + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": { + "ret": { + "version": "0.1.15", + "resolved": "https://registry.nlark.com/ret/download/ret-0.1.15.tgz" + } + } + } + } + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": { + "ret": { + "version": "0.1.15", + "resolved": "https://registry.nlark.com/ret/download/ret-0.1.15.tgz" + } + } + } + } + } + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/posix-character-classes/download/posix-character-classes-0.1.1.tgz" + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": { + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + } + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + } + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": { + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + } + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": { + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + } + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + } + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz" + } + } + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helpers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": { + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-3.0.0.tgz", + "requires": { + "p-limit": "^2.0.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": { + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + } + } + } + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + } + } + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz" + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": {} + } + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-4.0.0.tgz", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": { + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-3.0.0.tgz", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/load-json-file/download/load-json-file-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": { + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": {} + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + } + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + } + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": { + "is-core-module": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": {} + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + } + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": { + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz" + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz" + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + } + } + } + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + } + } + } + } + } + } + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + } + } + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz" + } + } + } + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": { + "bser": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "requires": { + "node-int64": "^0.4.0" + }, + "dependencies": { + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz" + } + } + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": { + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "dependencies": { + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + } + } + } + } + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz" + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "dependencies": { + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/capture-exit/download/capture-exit-2.0.0.tgz", + "requires": { + "rsvp": "^4.8.4" + }, + "dependencies": { + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.nlark.com/rsvp/download/rsvp-4.8.5.tgz" + } + } + }, + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/nice-try/download/nice-try-1.0.5.tgz" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz", + "requires": { + "shebang-regex": "^1.0.0" + }, + "dependencies": { + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-1.0.0.tgz" + } + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + } + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + } + } + } + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + } + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": { + "bser": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "requires": { + "node-int64": "^0.4.0" + }, + "dependencies": {} + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": { + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/makeerror/download/makeerror-1.0.11.tgz", + "requires": { + "tmpl": "1.0.x" + }, + "dependencies": { + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/tmpl/download/tmpl-1.0.4.tgz" + } + } + } + } + } + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": { + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/makeerror/download/makeerror-1.0.11.tgz", + "requires": { + "tmpl": "1.0.x" + }, + "dependencies": {} + } + } + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": { + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz" + } + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "requires": { + "is-callable": "^1.1.3" + }, + "dependencies": { + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + } + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.nlark.com/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz", + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + } + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.nlark.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-3.0.6.tgz", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + } + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "istanbul-reports": { + "version": "2.2.7", + "resolved": "https://registry.nlark.com/istanbul-reports/download/istanbul-reports-2.2.7.tgz", + "requires": { + "html-escaper": "^2.0.0" + }, + "dependencies": { + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz" + } + } + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.1.7.tgz" + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + } + } + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": { + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.0.tgz?cache=0&sync_timestamp=1621243984050&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.0.tgz" + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helpers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": { + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runner/download/jest-runner-24.9.0.tgz?cache=0&sync_timestamp=1622709114586&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "@types/babel__core": { + "version": "7.1.14", + "resolved": "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.14.tgz?cache=0&sync_timestamp=1621240678089&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__core%2Fdownload%2F%40types%2Fbabel__core-7.1.14.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + }, + "dependencies": { + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.2.tgz?cache=0&sync_timestamp=1621240679938&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__generator%2Fdownload%2F%40types%2Fbabel__generator-7.6.2.tgz", + "requires": { + "@babel/types": "^7.0.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.0.tgz?cache=0&sync_timestamp=1621240678638&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__template%2Fdownload%2F%40types%2Fbabel__template-7.4.0.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + }, + "dependencies": { + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + }, + "@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240677670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz", + "requires": { + "@babel/types": "^7.3.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + } + } + } + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-24.9.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-24.9.0.tgz", + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-24.9.0.tgz", + "requires": { + "@types/babel__traverse": "^7.0.6" + }, + "dependencies": { + "@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240677670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz", + "requires": { + "@babel/types": "^7.3.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/jsdom/download/jsdom-11.12.0.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.nlark.com/acorn/download/acorn-5.7.4.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-5.7.4.tgz" + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-6.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-6.2.0.tgz" + } + } + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + }, + "cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-1.4.0.tgz", + "requires": { + "cssom": "0.3.x" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + } + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + } + } + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": { + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + } + } + } + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + } + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz" + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz", + "optional": true + } + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": { + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + } + } + } + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/left-pad/download/left-pad-1.3.0.tgz" + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse5/download/parse5-4.0.0.tgz" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": { + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz" + } + } + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + } + } + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + } + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz" + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.3.0.tgz" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "extsprintf": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz" + } + } + } + } + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npm.taobao.org/sshpk/download/sshpk-1.16.1.tgz", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": { + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npm.taobao.org/asn1/download/asn1-0.2.4.tgz", + "requires": { + "safer-buffer": "~2.1.0" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "requires": { + "tweetnacl": "^0.14.3" + }, + "dependencies": { + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + } + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/getpass/download/getpass-0.1.7.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + } + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + } + } + } + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.5.2.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.5.2.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/request-promise-core/download/request-promise-core-1.1.4.tgz", + "requires": { + "lodash": "^4.17.19" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": { + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz" + } + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + } + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-6.5.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "ws": { + "version": "5.2.3", + "resolved": "https://registry.nlark.com/ws/download/ws-5.2.3.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": { + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + } + } + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + } + } + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/co/download/co-4.6.0.tgz" + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + } + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + } + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + } + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + } + } + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz" + }, + "jest-each": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-each/download/jest-each-24.9.0.tgz?cache=0&sync_timestamp=1622290388475&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-each%2Fdownload%2Fjest-each-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + } + } + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + } + } + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + } + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-5.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + } + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + } + } + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": { + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz" + } + } + } + } + } + } + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + } + } + }, + "jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz", + "requires": { + "detect-newline": "^2.1.0" + }, + "dependencies": { + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-newline/download/detect-newline-2.1.0.tgz" + } + } + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/co/download/co-4.6.0.tgz" + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz" + }, + "jest-each": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-each/download/jest-each-24.9.0.tgz?cache=0&sync_timestamp=1622290388475&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-each%2Fdownload%2Fjest-each-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz?cache=0&sync_timestamp=1622290386972&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-24.9.0.tgz", + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": {} + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "node-notifier": { + "version": "5.4.5", + "resolved": "https://registry.nlark.com/node-notifier/download/node-notifier-5.4.5.tgz?cache=0&sync_timestamp=1621962354910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-notifier%2Fdownload%2Fnode-notifier-5.4.5.tgz", + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "dependencies": { + "growly": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/growly/download/growly-1.3.0.tgz" + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/shellwords/download/shellwords-0.1.1.tgz" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz" + } + } + } + } + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-changed-files": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-changed-files/download/jest-changed-files-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": {} + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-resolve-dependencies": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + } + } + }, + "jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runner/download/jest-runner-24.9.0.tgz?cache=0&sync_timestamp=1622709114586&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz", + "requires": { + "detect-newline": "^2.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz?cache=0&sync_timestamp=1622290386972&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-24.9.0.tgz", + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": { + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.0.tgz?cache=0&sync_timestamp=1621243984050&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.0.tgz" + } + } + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-each-series/download/p-each-series-1.0.0.tgz", + "requires": { + "p-reduce": "^1.0.0" + }, + "dependencies": { + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-reduce/download/p-reduce-1.0.0.tgz" + } + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + } + } + }, + "@jest/environment": { + "version": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/fake-timers": { + "version": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/reporters": { + "version": "https://registry.nlark.com/@jest/reporters/download/@jest/reporters-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.nlark.com/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz", + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.nlark.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-3.0.6.tgz", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "dependencies": {} + }, + "istanbul-reports": { + "version": "2.2.7", + "resolved": "https://registry.nlark.com/istanbul-reports/download/istanbul-reports-2.2.7.tgz", + "requires": { + "html-escaper": "^2.0.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "node-notifier": { + "version": "5.4.5", + "resolved": "https://registry.nlark.com/node-notifier/download/node-notifier-5.4.5.tgz?cache=0&sync_timestamp=1621962354910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-notifier%2Fdownload%2Fnode-notifier-5.4.5.tgz", + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "@jest/source-map": { + "version": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "@jest/test-result": { + "version": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/test-sequencer": { + "version": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": { + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runner/download/jest-runner-24.9.0.tgz?cache=0&sync_timestamp=1622709114586&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + } + } + }, + "@jest/transform": { + "version": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "@mrmlnc/readdir-enhanced": { + "version": "https://registry.nlark.com/@mrmlnc/readdir-enhanced/download/@mrmlnc/readdir-enhanced-2.2.1.tgz", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "dependencies": { + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/call-me-maybe/download/call-me-maybe-1.0.1.tgz" + }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz" + } + } + }, + "@nodelib/fs.stat": { + "version": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-1.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-1.1.3.tgz" + }, + "@soda/friendly-errors-webpack-plugin": { + "version": "https://registry.nlark.com/@soda/friendly-errors-webpack-plugin/download/@soda/friendly-errors-webpack-plugin-1.8.0.tgz", + "requires": { + "chalk": "^2.4.2", + "error-stack-parser": "^2.0.2", + "string-width": "^2.0.0", + "strip-ansi": "^5" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/error-stack-parser/download/error-stack-parser-2.0.6.tgz", + "requires": { + "stackframe": "^1.1.1" + }, + "dependencies": { + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/stackframe/download/stackframe-1.2.0.tgz" + } + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz" + } + } + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + } + } + }, + "@soda/get-current-script": { + "version": "https://registry.nlark.com/@soda/get-current-script/download/@soda/get-current-script-1.0.2.tgz" + }, + "@types/babel__core": { + "version": "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.14.tgz?cache=0&sync_timestamp=1621240678089&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__core%2Fdownload%2F%40types%2Fbabel__core-7.1.14.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + }, + "dependencies": { + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.2.tgz?cache=0&sync_timestamp=1621240679938&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__generator%2Fdownload%2F%40types%2Fbabel__generator-7.6.2.tgz", + "requires": { + "@babel/types": "^7.0.0" + }, + "dependencies": {} + }, + "@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.0.tgz?cache=0&sync_timestamp=1621240678638&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__template%2Fdownload%2F%40types%2Fbabel__template-7.4.0.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + }, + "dependencies": {} + }, + "@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240677670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz", + "requires": { + "@babel/types": "^7.3.0" + }, + "dependencies": {} + } + } + }, + "@types/babel__generator": { + "version": "https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.2.tgz?cache=0&sync_timestamp=1621240679938&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__generator%2Fdownload%2F%40types%2Fbabel__generator-7.6.2.tgz", + "requires": { + "@babel/types": "^7.0.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@types/babel__template": { + "version": "https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.0.tgz?cache=0&sync_timestamp=1621240678638&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__template%2Fdownload%2F%40types%2Fbabel__template-7.4.0.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + }, + "dependencies": { + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@types/babel__traverse": { + "version": "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240677670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz", + "requires": { + "@babel/types": "^7.3.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@types/glob": { + "version": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": { + "@types/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/@types/minimatch/download/@types/minimatch-3.0.4.tgz?cache=0&sync_timestamp=1621241868071&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fminimatch%2Fdownload%2F%40types%2Fminimatch-3.0.4.tgz" + }, + "@types/node": { + "version": "15.12.2", + "resolved": "https://registry.nlark.com/@types/node/download/@types/node-15.12.2.tgz?cache=0&sync_timestamp=1623107061338&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-15.12.2.tgz" + } + } + }, + "@types/istanbul-lib-coverage": { + "version": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-lib-report": { + "version": "https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz?cache=0&sync_timestamp=1621241448952&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-report%2Fdownload%2F%40types%2Fistanbul-lib-report-3.0.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@types/istanbul-reports": { + "version": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz?cache=0&sync_timestamp=1621241448952&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-report%2Fdownload%2F%40types%2Fistanbul-lib-report-3.0.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*" + }, + "dependencies": {} + } + } + }, + "@types/jest": { + "version": "https://registry.nlark.com/@types/jest/download/@types/jest-24.9.1.tgz?cache=0&sync_timestamp=1621241449093&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fjest%2Fdownload%2F%40types%2Fjest-24.9.1.tgz", + "requires": { + "jest-diff": "^24.3.0" + }, + "dependencies": { + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + } + } + }, + "@types/json-schema": { + "version": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "@types/minimatch": { + "version": "https://registry.nlark.com/@types/minimatch/download/@types/minimatch-3.0.4.tgz?cache=0&sync_timestamp=1621241868071&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fminimatch%2Fdownload%2F%40types%2Fminimatch-3.0.4.tgz" + }, + "@types/node": { + "version": "https://registry.nlark.com/@types/node/download/@types/node-15.12.2.tgz?cache=0&sync_timestamp=1623107061338&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-15.12.2.tgz" + }, + "@types/normalize-package-data": { + "version": "https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz?cache=0&sync_timestamp=1621242064742&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnormalize-package-data%2Fdownload%2F%40types%2Fnormalize-package-data-2.4.0.tgz" + }, + "@types/q": { + "version": "https://registry.nlark.com/@types/q/download/@types/q-1.5.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fq%2Fdownload%2F%40types%2Fq-1.5.4.tgz" + }, + "@types/stack-utils": { + "version": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "@types/strip-bom": { + "version": "https://registry.nlark.com/@types/strip-bom/download/@types/strip-bom-3.0.0.tgz" + }, + "@types/strip-json-comments": { + "version": "https://registry.nlark.com/@types/strip-json-comments/download/@types/strip-json-comments-0.0.30.tgz" + }, + "@types/yargs": { + "version": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": { + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.0.tgz?cache=0&sync_timestamp=1621243984050&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.0.tgz" + } + } + }, + "@types/yargs-parser": { + "version": "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.0.tgz?cache=0&sync_timestamp=1621243984050&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.0.tgz" + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "@vue/babel-helper-vue-transform-on": { + "version": "https://registry.nlark.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz" + }, + "@vue/babel-plugin-jsx": { + "version": "https://registry.nlark.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.0.6.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "@vue/babel-helper-vue-transform-on": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz" + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-6.2.0.tgz" + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "@vue/babel-preset-app": { + "version": "https://registry.nlark.com/@vue/babel-preset-app/download/@vue/babel-preset-app-4.5.13.tgz", + "requires": { + "@babel/core": "^7.11.0", + "@babel/helper-compilation-targets": "^7.9.6", + "@babel/helper-module-imports": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-proposal-decorators": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-jsx": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.11.0", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.0", + "@vue/babel-plugin-jsx": "^1.0.3", + "@vue/babel-preset-jsx": "^1.2.4", + "babel-plugin-dynamic-import-node": "^2.3.3", + "core-js": "^3.6.5", + "core-js-compat": "^3.6.5", + "semver": "^6.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helpers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.14.5.tgz?cache=0&sync_timestamp=1623281036705&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", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.14.5.tgz?cache=0&sync_timestamp=1623281037832&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-decorators%2Fdownload%2F%40babel%2Fplugin-proposal-decorators-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-decorators": "^7.14.5" + }, + "dependencies": { + "@babel/helper-create-class-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.14.5.tgz?cache=0&sync_timestamp=1623281035830&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/plugin-syntax-decorators": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.14.5.tgz?cache=0&sync_timestamp=1623280320906&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-decorators%2Fdownload%2F%40babel%2Fplugin-syntax-decorators-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.14.5.tgz?cache=0&sync_timestamp=1623281029611&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-runtime%2Fdownload%2F%40babel%2Fplugin-transform-runtime-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": {} + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.9.1" + }, + "dependencies": {} + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/preset-env": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/preset-env/download/@babel/preset-env-7.14.5.tgz?cache=0&sync_timestamp=1623281039019&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fpreset-env%2Fdownload%2F%40babel%2Fpreset-env-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-async-generator-functions": "^7.14.5", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.14.5", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.14.5", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.14.5", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.14.5", + "@babel/plugin-transform-classes": "^7.14.5", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.5", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.14.5", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.14.5", + "@babel/plugin-transform-modules-systemjs": "^7.14.5", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.5", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.14.5", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.14.5", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.14.0", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280323607&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz" + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.14.5", + "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.14.5.tgz?cache=0&sync_timestamp=1623281031588&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.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.14.5.tgz?cache=0&sync_timestamp=1623281036884&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-async-generator-functions%2Fdownload%2F%40babel%2Fplugin-proposal-async-generator-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.14.5.tgz?cache=0&sync_timestamp=1623281036705&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", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.14.5.tgz?cache=0&sync_timestamp=1623281036166&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-class-static-block%2Fdownload%2F%40babel%2Fplugin-proposal-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.14.5.tgz?cache=0&sync_timestamp=1623280310895&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.14.5.tgz?cache=0&sync_timestamp=1623280316882&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-json-strings%2Fdownload%2F%40babel%2Fplugin-proposal-json-strings-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "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=1623280317167&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.14.5.tgz?cache=0&sync_timestamp=1623281026792&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-object-rest-spread%2Fdownload%2F%40babel%2Fplugin-proposal-object-rest-spread-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.14.5.tgz?cache=0&sync_timestamp=1623281029077&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-optional-chaining%2Fdownload%2F%40babel%2Fplugin-proposal-optional-chaining-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.14.5.tgz?cache=0&sync_timestamp=1623281037437&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-private-methods%2Fdownload%2F%40babel%2Fplugin-proposal-private-methods-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.14.5.tgz?cache=0&sync_timestamp=1623281037606&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.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "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=1623281030595&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "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=1623281037270&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", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-classes": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.14.5.tgz?cache=0&sync_timestamp=1623281035642&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-classes%2Fdownload%2F%40babel%2Fplugin-transform-classes-7.14.5.tgz", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-destructuring": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281031420&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", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.14.5.tgz?cache=0&sync_timestamp=1623281031959&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", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-for-of": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281033364&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-function-name%2Fdownload%2F%40babel%2Fplugin-transform-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280340946&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-literals%2Fdownload%2F%40babel%2Fplugin-transform-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280341518&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-member-expression-literals%2Fdownload%2F%40babel%2Fplugin-transform-member-expression-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.14.5.tgz?cache=0&sync_timestamp=1623281037068&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", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": {} + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038415&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-commonjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-commonjs-7.14.5.tgz", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": {} + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038234&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-systemjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-systemjs-7.14.5.tgz", + "requires": { + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": {} + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.14.5.tgz?cache=0&sync_timestamp=1623281038583&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-umd%2Fdownload%2F%40babel%2Fplugin-transform-modules-umd-7.14.5.tgz", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281032117&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.5.tgz", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-new-target": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-object-super": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.14.5.tgz?cache=0&sync_timestamp=1623281035210&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-parameters": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.14.5.tgz?cache=0&sync_timestamp=1623280341809&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-parameters%2Fdownload%2F%40babel%2Fplugin-transform-parameters-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.14.5.tgz?cache=0&sync_timestamp=1623280340973&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-property-literals%2Fdownload%2F%40babel%2Fplugin-transform-property-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.14.5.tgz?cache=0&sync_timestamp=1623281051915&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-regenerator%2Fdownload%2F%40babel%2Fplugin-transform-regenerator-7.14.5.tgz", + "requires": { + "regenerator-transform": "^0.14.2" + }, + "dependencies": {} + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.14.5.tgz?cache=0&sync_timestamp=1623280351577&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-spread": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.14.5.tgz?cache=0&sync_timestamp=1623281030381&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-spread%2Fdownload%2F%40babel%2Fplugin-transform-spread-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.14.5.tgz?cache=0&sync_timestamp=1623280350966&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", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.14.5.tgz?cache=0&sync_timestamp=1623281032613&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-unicode-regex%2Fdownload%2F%40babel%2Fplugin-transform-unicode-regex-7.14.5.tgz", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/@babel/preset-modules/download/@babel/preset-modules-0.1.4.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": {} + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.9.1" + }, + "dependencies": {} + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "dependencies": {} + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@babel/runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.5.tgz?cache=0&sync_timestamp=1623280325784&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.5.tgz", + "requires": { + "regenerator-runtime": "^0.13.4" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.7.tgz" + } + } + }, + "@vue/babel-plugin-jsx": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.0.6.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@vue/babel-helper-vue-transform-on": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz" + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-6.2.0.tgz" + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "@vue/babel-preset-jsx": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/@vue/babel-preset-jsx/download/@vue/babel-preset-jsx-1.2.4.tgz", + "requires": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "@vue/babel-sugar-composition-api-inject-h": "^1.2.1", + "@vue/babel-sugar-composition-api-render-instance": "^1.2.4", + "@vue/babel-sugar-functional-vue": "^1.2.2", + "@vue/babel-sugar-inject-h": "^1.2.2", + "@vue/babel-sugar-v-model": "^1.2.3", + "@vue/babel-sugar-v-on": "^1.2.3" + }, + "dependencies": { + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "@vue/babel-sugar-composition-api-inject-h": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/download/@vue/babel-sugar-composition-api-inject-h-1.2.1.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@vue/babel-sugar-composition-api-render-instance": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/download/@vue/babel-sugar-composition-api-render-instance-1.2.4.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@vue/babel-sugar-functional-vue": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-functional-vue/download/@vue/babel-sugar-functional-vue-1.2.2.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@vue/babel-sugar-inject-h": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-inject-h/download/@vue/babel-sugar-inject-h-1.2.2.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + } + } + }, + "@vue/babel-sugar-v-model": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-v-model/download/@vue/babel-sugar-v-model-1.2.3.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0", + "html-tags": "^2.0.0", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "@vue/babel-sugar-v-on": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-v-on/download/@vue/babel-sugar-v-on-1.2.3.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + } + } + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + } + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "core-js": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js/download/core-js-3.14.0.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-3.14.0.tgz" + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@vue/babel-preset-jsx": { + "version": "https://registry.nlark.com/@vue/babel-preset-jsx/download/@vue/babel-preset-jsx-1.2.4.tgz", + "requires": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "@vue/babel-sugar-composition-api-inject-h": "^1.2.1", + "@vue/babel-sugar-composition-api-render-instance": "^1.2.4", + "@vue/babel-sugar-functional-vue": "^1.2.2", + "@vue/babel-sugar-inject-h": "^1.2.2", + "@vue/babel-sugar-v-model": "^1.2.3", + "@vue/babel-sugar-v-on": "^1.2.3" + }, + "dependencies": { + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": {} + }, + "@vue/babel-sugar-composition-api-inject-h": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/download/@vue/babel-sugar-composition-api-inject-h-1.2.1.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": {} + }, + "@vue/babel-sugar-composition-api-render-instance": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/download/@vue/babel-sugar-composition-api-render-instance-1.2.4.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": {} + }, + "@vue/babel-sugar-functional-vue": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-functional-vue/download/@vue/babel-sugar-functional-vue-1.2.2.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": {} + }, + "@vue/babel-sugar-inject-h": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-inject-h/download/@vue/babel-sugar-inject-h-1.2.2.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": {} + }, + "@vue/babel-sugar-v-model": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-v-model/download/@vue/babel-sugar-v-model-1.2.3.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0", + "html-tags": "^2.0.0", + "svg-tags": "^1.0.0" + }, + "dependencies": {} + }, + "@vue/babel-sugar-v-on": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/@vue/babel-sugar-v-on/download/@vue/babel-sugar-v-on-1.2.3.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "@vue/babel-sugar-composition-api-inject-h": { + "version": "https://registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/download/@vue/babel-sugar-composition-api-inject-h-1.2.1.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@vue/babel-sugar-composition-api-render-instance": { + "version": "https://registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/download/@vue/babel-sugar-composition-api-render-instance-1.2.4.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@vue/babel-sugar-functional-vue": { + "version": "https://registry.nlark.com/@vue/babel-sugar-functional-vue/download/@vue/babel-sugar-functional-vue-1.2.2.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@vue/babel-sugar-inject-h": { + "version": "https://registry.nlark.com/@vue/babel-sugar-inject-h/download/@vue/babel-sugar-inject-h-1.2.2.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + } + } + }, + "@vue/babel-sugar-v-model": { + "version": "https://registry.nlark.com/@vue/babel-sugar-v-model/download/@vue/babel-sugar-v-model-1.2.3.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0", + "html-tags": "^2.0.0", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz" + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + } + } + }, + "@vue/babel-sugar-v-on": { + "version": "https://registry.nlark.com/@vue/babel-sugar-v-on/download/@vue/babel-sugar-v-on-1.2.3.tgz", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0" + }, + "dependencies": { + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + } + } + }, + "@vue/cli-overlay": { + "version": "https://registry.nlark.com/@vue/cli-overlay/download/@vue/cli-overlay-4.5.13.tgz" + }, + "@vue/cli-plugin-babel": { + "version": "4.4.4", + "resolved": "https://registry.nlark.com/@vue/cli-plugin-babel/download/@vue/cli-plugin-babel-4.4.4.tgz", + "dev": true, + "requires": { + "@babel/core": "^7.9.6", + "@vue/babel-preset-app": "^4.4.4", + "@vue/cli-shared-utils": "^4.4.4", + "babel-loader": "^8.1.0", + "cache-loader": "^4.1.0", + "thread-loader": "^2.1.3", + "webpack": "^4.0.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helpers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@vue/babel-preset-app": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/babel-preset-app/download/@vue/babel-preset-app-4.5.13.tgz", + "dev": true, + "requires": { + "@babel/core": "^7.11.0", + "@babel/helper-compilation-targets": "^7.9.6", + "@babel/helper-module-imports": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-proposal-decorators": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-jsx": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.11.0", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.0", + "@vue/babel-plugin-jsx": "^1.0.3", + "@vue/babel-preset-jsx": "^1.2.4", + "babel-plugin-dynamic-import-node": "^2.3.3", + "core-js": "^3.6.5", + "core-js-compat": "^3.6.5", + "semver": "^6.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623281025653&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.14.5.tgz?cache=0&sync_timestamp=1623281036705&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", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-proposal-decorators": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.14.5.tgz?cache=0&sync_timestamp=1623281037832&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-proposal-decorators%2Fdownload%2F%40babel%2Fplugin-proposal-decorators-7.14.5.tgz", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-decorators": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1623280326005&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/plugin-transform-runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.14.5.tgz?cache=0&sync_timestamp=1623281029611&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-runtime%2Fdownload%2F%40babel%2Fplugin-transform-runtime-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/preset-env": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/preset-env/download/@babel/preset-env-7.14.5.tgz?cache=0&sync_timestamp=1623281039019&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fpreset-env%2Fdownload%2F%40babel%2Fpreset-env-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-async-generator-functions": "^7.14.5", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.14.5", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.14.5", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.14.5", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.14.5", + "@babel/plugin-transform-classes": "^7.14.5", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.5", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.14.5", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.14.5", + "@babel/plugin-transform-modules-systemjs": "^7.14.5", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.5", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.14.5", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.14.5", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.14.0", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.5.tgz?cache=0&sync_timestamp=1623280325784&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.5.tgz", + "requires": { + "regenerator-runtime": "^0.13.4" + }, + "dependencies": {} + }, + "@vue/babel-plugin-jsx": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.0.6.tgz", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + }, + "dependencies": {} + }, + "@vue/babel-preset-jsx": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/@vue/babel-preset-jsx/download/@vue/babel-preset-jsx-1.2.4.tgz", + "requires": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "@vue/babel-sugar-composition-api-inject-h": "^1.2.1", + "@vue/babel-sugar-composition-api-render-instance": "^1.2.4", + "@vue/babel-sugar-functional-vue": "^1.2.2", + "@vue/babel-sugar-inject-h": "^1.2.2", + "@vue/babel-sugar-v-model": "^1.2.3", + "@vue/babel-sugar-v-on": "^1.2.3" + }, + "dependencies": {} + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": {} + }, + "core-js": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js/download/core-js-3.14.0.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-3.14.0.tgz" + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "@vue/cli-shared-utils": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "dev": true, + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": { + "@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.nlark.com/@hapi/address/download/@hapi/address-2.1.4.tgz" + }, + "@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/@hapi/bourne/download/@hapi/bourne-1.3.2.tgz" + }, + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.nlark.com/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz" + }, + "@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.nlark.com/@hapi/topo/download/@hapi/topo-3.1.6.tgz", + "requires": { + "@hapi/hoek": "^8.3.0" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/shell-quote/download/shell-quote-1.7.2.tgz" + } + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": { + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz" + } + } + }, + "node-ipc": { + "version": "9.1.4", + "resolved": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": { + "event-pubsub": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/event-pubsub/download/event-pubsub-4.3.0.tgz" + }, + "js-message": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/js-message/download/js-message-1.0.7.tgz" + }, + "js-queue": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/js-queue/download/js-queue-2.0.2.tgz", + "requires": { + "easy-stack": "^1.0.1" + }, + "dependencies": { + "easy-stack": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/easy-stack/download/easy-stack-1.0.1.tgz" + } + } + } + } + }, + "open": { + "version": "6.4.0", + "resolved": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + } + } + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz", + "requires": { + "restore-cursor": "^2.0.0" + }, + "dependencies": { + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-2.0.0.tgz", + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/onetime/download/onetime-2.0.1.tgz", + "requires": { + "mimic-fn": "^1.0.0" + }, + "dependencies": { + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/mimic-fn/download/mimic-fn-1.2.0.tgz" + } + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + } + } + }, + "cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.nlark.com/cli-spinners/download/cli-spinners-2.6.0.tgz" + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/log-symbols/download/log-symbols-2.2.0.tgz", + "requires": { + "chalk": "^2.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz", + "requires": { + "defaults": "^1.0.3" + }, + "dependencies": { + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz", + "requires": { + "clone": "^1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-1.0.4.tgz" + } + } + } + } + } + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz?cache=0&sync_timestamp=1621242064742&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnormalize-package-data%2Fdownload%2F%40types%2Fnormalize-package-data-2.4.0.tgz" + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz" + } + } + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz" + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz" + } + } + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.6.0.tgz" + } + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": {} + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": {} + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": {} + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": {} + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.5.2.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.5.2.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + } + } + }, + "babel-loader": { + "version": "8.2.2", + "resolved": "https://registry.nlark.com/babel-loader/download/babel-loader-8.2.2.tgz", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": { + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-5.0.0.tgz", + "requires": { + "p-locate": "^4.1.0" + }, + "dependencies": { + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-4.1.0.tgz", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": { + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + } + } + } + } + } + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-4.0.0.tgz" + } + } + } + } + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + } + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + } + } + }, + "cache-loader": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/cache-loader/download/cache-loader-4.1.0.tgz", + "dev": true, + "requires": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "dependencies": { + "buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/buffer-json/download/buffer-json-2.0.0.tgz" + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + } + } + }, + "thread-loader": { + "version": "2.1.3", + "resolved": "https://registry.nlark.com/thread-loader/download/thread-loader-2.1.3.tgz", + "dev": true, + "requires": { + "loader-runner": "^2.3.1", + "loader-utils": "^1.1.0", + "neo-async": "^2.6.0" + }, + "dependencies": { + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + } + } + }, + "webpack": { + "version": "4.46.0", + "resolved": "https://registry.nlark.com/webpack/download/webpack-4.46.0.tgz", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.9.0.tgz" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.9.0.tgz", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.9.0.tgz" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.9.0.tgz", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.9.0.tgz" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + } + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.9.0.tgz" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + } + } + } + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": { + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz" + } + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + } + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": {} + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": {} + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": { + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz" + } + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + } + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": {} + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + } + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": {} + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.5.0.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": { + "prr": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + } + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + } + } + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": { + "prr": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "assert": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/assert/download/assert-1.5.0.tgz", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.nlark.com/util/download/util-0.10.3.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.10.3.tgz", + "requires": { + "inherits": "2.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.1.tgz" + } + } + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz", + "requires": { + "pako": "~1.0.5" + }, + "dependencies": { + "pako": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/pako/download/pako-1.0.11.tgz" + } + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.nlark.com/buffer/download/buffer-4.9.2.tgz", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + }, + "dependencies": { + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/base64-js/download/base64-js-1.5.1.tgz" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/console-browserify/download/console-browserify-1.2.0.tgz" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/constants-browserify/download/constants-browserify-1.0.0.tgz" + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.nlark.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "dependencies": { + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + }, + "dependencies": { + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + } + } + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/des.js/download/des.js-1.0.1.tgz", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.nlark.com/asn1.js/download/asn1.js-5.4.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": {} + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.nlark.com/diffie-hellman/download/diffie-hellman-5.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/miller-rabin/download/miller-rabin-4.0.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + } + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/public-encrypt/download/public-encrypt-4.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.nlark.com/asn1.js/download/asn1.js-5.4.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": {} + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/randomfill/download/randomfill-1.0.4.tgz", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/domain-browser/download/domain-browser-1.2.0.tgz" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/events/download/events-3.3.0.tgz" + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/https-browserify/download/https-browserify-1.0.0.tgz" + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/os-browserify/download/os-browserify-0.3.0.tgz" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.nlark.com/path-browserify/download/path-browserify-0.0.1.tgz" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.nlark.com/process/download/process-0.11.10.tgz" + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/querystring-es3/download/querystring-es3-0.2.1.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/stream-browserify/download/stream-browserify-2.0.2.tgz", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + } + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.nlark.com/timers-browserify/download/timers-browserify-2.0.12.tgz", + "requires": { + "setimmediate": "^1.0.4" + }, + "dependencies": { + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/setimmediate/download/setimmediate-1.0.5.tgz" + } + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.nlark.com/tty-browserify/download/tty-browserify-0.0.0.tgz" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz" + } + } + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/util/download/util-0.11.1.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.11.1.tgz", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + } + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/vm-browserify/download/vm-browserify-1.1.2.tgz" + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": { + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz" + } + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/mississippi/download/mississippi-3.0.0.tgz", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz" + } + } + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/flush-write-stream/download/flush-write-stream-1.1.1.tgz", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/from2/download/from2-2.3.0.tgz", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/parallel-transform/download/parallel-transform-1.2.0.tgz", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/cyclist/download/cyclist-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/pumpify/download/pumpify-1.5.1.tgz", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-2.0.1.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + } + } + } + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/stream-each/download/stream-each-1.2.3.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/through2/download/through2-2.0.5.tgz", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + } + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + } + } + } + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + } + } + } + } + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.nlark.com/ssri/download/ssri-6.0.2.tgz", + "requires": { + "figgy-pudding": "^3.5.1" + }, + "dependencies": { + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + } + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": { + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz", + "requires": { + "imurmurhash": "^0.1.4" + }, + "dependencies": { + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + } + } + } + } + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + } + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": { + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/worker-farm/download/worker-farm-1.7.0.tgz", + "requires": { + "errno": "~0.1.7" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": { + "prr": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + } + } + } + } + } + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": { + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "dependencies": { + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + } + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "requires": { + "fill-range": "^7.0.1" + }, + "dependencies": { + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "requires": { + "to-regex-range": "^5.0.1" + }, + "dependencies": { + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "requires": { + "is-number": "^7.0.0" + }, + "dependencies": { + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz" + } + } + } + } + } + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": { + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + } + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "requires": { + "binary-extensions": "^2.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz" + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-3.5.0.tgz", + "requires": { + "picomatch": "^2.2.1" + }, + "dependencies": { + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + } + } + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/watchpack-chokidar2/download/watchpack-chokidar2-2.0.1.tgz", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": {} + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/fsevents/download/fsevents-1.2.13.tgz", + "optional": true + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "requires": { + "is-extglob": "^2.1.0" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz" + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-1.0.1.tgz", + "requires": { + "binary-extensions": "^1.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-1.13.1.tgz" + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-2.2.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/upath/download/upath-1.2.0.tgz" + } + } + } + } + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + } + } + }, + "@vue/cli-plugin-eslint": { + "version": "4.4.4", + "resolved": "https://registry.nlark.com/@vue/cli-plugin-eslint/download/@vue/cli-plugin-eslint-4.4.4.tgz", + "dev": true, + "requires": { + "@vue/cli-shared-utils": "^4.4.4", + "eslint-loader": "^2.2.1", + "globby": "^9.2.0", + "inquirer": "^7.1.0", + "webpack": "^4.0.0", + "yorkie": "^2.0.0" + }, + "dependencies": { + "@vue/cli-shared-utils": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "dev": true, + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "node-ipc": { + "version": "9.1.4", + "resolved": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": {} + }, + "open": { + "version": "6.4.0", + "resolved": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": {} + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "eslint-loader": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/eslint-loader/download/eslint-loader-2.2.1.tgz", + "dev": true, + "requires": { + "loader-fs-cache": "^1.0.0", + "loader-utils": "^1.0.2", + "object-assign": "^4.0.1", + "object-hash": "^1.1.4", + "rimraf": "^2.6.1" + }, + "dependencies": { + "loader-fs-cache": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/loader-fs-cache/download/loader-fs-cache-1.0.3.tgz", + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + }, + "dependencies": { + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-0.1.1.tgz", + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-1.0.0.tgz", + "requires": { + "find-up": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-1.1.2.tgz", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-2.1.0.tgz", + "requires": { + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + } + } + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + } + } + } + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "object-hash": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/object-hash/download/object-hash-1.3.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "globby": { + "version": "9.2.0", + "resolved": "https://registry.nlark.com/globby/download/globby-9.2.0.tgz", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": { + "@types/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/@types/minimatch/download/@types/minimatch-3.0.4.tgz?cache=0&sync_timestamp=1621241868071&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fminimatch%2Fdownload%2F%40types%2Fminimatch-3.0.4.tgz" + }, + "@types/node": { + "version": "15.12.2", + "resolved": "https://registry.nlark.com/@types/node/download/@types/node-15.12.2.tgz?cache=0&sync_timestamp=1623107061338&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-15.12.2.tgz" + } + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + } + } + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + } + } + } + } + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": { + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/@mrmlnc/readdir-enhanced/download/@mrmlnc/readdir-enhanced-2.2.1.tgz", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "dependencies": { + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/call-me-maybe/download/call-me-maybe-1.0.1.tgz" + }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz" + } + } + }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-1.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-1.1.3.tgz" + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "requires": { + "is-extglob": "^2.1.0" + }, + "dependencies": {} + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz" + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.nlark.com/inquirer/download/inquirer-7.3.3.tgz?cache=0&sync_timestamp=1621629616998&other_urls=https%3A%2F%2Fregistry.nlark.com%2Finquirer%2Fdownload%2Finquirer-7.3.3.tgz", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz" + } + } + }, + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + } + } + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz" + } + } + } + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz", + "requires": { + "restore-cursor": "^3.1.0" + }, + "dependencies": { + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz" + } + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + } + } + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz" + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.nlark.com/chardet/download/chardet-0.7.0.tgz" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz", + "requires": { + "os-tmpdir": "~1.0.2" + }, + "dependencies": { + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz" + } + } + } + } + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz" + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz" + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npm.taobao.org/tslib/download/tslib-1.14.1.tgz" + } + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz" + } + } + }, + "webpack": { + "version": "4.46.0", + "resolved": "https://registry.nlark.com/webpack/download/webpack-4.46.0.tgz", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": {} + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "yorkie": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/yorkie/download/yorkie-2.0.0.tgz", + "dev": true, + "requires": { + "execa": "^0.8.0", + "is-ci": "^1.0.10", + "normalize-path": "^1.0.0", + "strip-indent": "^2.0.0" + }, + "dependencies": { + "execa": { + "version": "0.8.0", + "resolved": "https://registry.nlark.com/execa/download/execa-0.8.0.tgz", + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-5.1.0.tgz", + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz" + } + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz", + "requires": { + "shebang-regex": "^1.0.0" + }, + "dependencies": { + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-1.0.0.tgz" + } + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + } + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-3.0.0.tgz" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + } + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-1.2.1.tgz", + "requires": { + "ci-info": "^1.5.0" + }, + "dependencies": { + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/ci-info/download/ci-info-1.6.0.tgz" + } + } + }, + "normalize-path": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-1.0.0.tgz" + }, + "strip-indent": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-indent/download/strip-indent-2.0.0.tgz?cache=0&sync_timestamp=1620053263051&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-indent%2Fdownload%2Fstrip-indent-2.0.0.tgz" + } + } + } + } + }, + "@vue/cli-plugin-router": { + "version": "https://registry.nlark.com/@vue/cli-plugin-router/download/@vue/cli-plugin-router-4.5.13.tgz", + "requires": { + "@vue/cli-shared-utils": "^4.5.13" + }, + "dependencies": { + "@vue/cli-shared-utils": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "node-ipc": { + "version": "9.1.4", + "resolved": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": {} + }, + "open": { + "version": "6.4.0", + "resolved": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": {} + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "@vue/cli-plugin-unit-jest": { + "version": "4.4.4", + "resolved": "https://registry.nlark.com/@vue/cli-plugin-unit-jest/download/@vue/cli-plugin-unit-jest-4.4.4.tgz?cache=0&sync_timestamp=1623215859419&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcli-plugin-unit-jest%2Fdownload%2F%40vue%2Fcli-plugin-unit-jest-4.4.4.tgz", + "dev": true, + "requires": { + "@babel/core": "^7.9.6", + "@babel/plugin-transform-modules-commonjs": "^7.9.6", + "@types/jest": "^24.0.19", + "@vue/cli-shared-utils": "^4.4.4", + "babel-core": "^7.0.0-bridge.0", + "babel-jest": "^24.9.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", + "deepmerge": "^4.2.2", + "jest": "^24.9.0", + "jest-environment-jsdom-fifteen": "^1.0.2", + "jest-serializer-vue": "^2.0.2", + "jest-transform-stub": "^2.0.0", + "jest-watch-typeahead": "^0.4.2", + "ts-jest": "^24.2.0", + "vue-jest": "^3.0.5" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-compilation-targets": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280310886&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz", + "requires": { + "@babel/compat-data": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": {} + }, + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helpers": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623281033999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz", + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.14.5.tgz?cache=0&sync_timestamp=1623281038415&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-modules-commonjs%2Fdownload%2F%40babel%2Fplugin-transform-modules-commonjs-7.14.5.tgz", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "@babel/helper-module-transforms": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623281034999&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "@babel/helper-simple-access": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623281026177&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "@types/jest": { + "version": "24.9.1", + "resolved": "https://registry.nlark.com/@types/jest/download/@types/jest-24.9.1.tgz?cache=0&sync_timestamp=1621241449093&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fjest%2Fdownload%2F%40types%2Fjest-24.9.1.tgz", + "dev": true, + "requires": { + "jest-diff": "^24.3.0" + }, + "dependencies": { + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@vue/cli-shared-utils": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "dev": true, + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "node-ipc": { + "version": "9.1.4", + "resolved": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": {} + }, + "open": { + "version": "6.4.0", + "resolved": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": {} + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.nlark.com/babel-core/download/babel-core-7.0.0-bridge.0.tgz", + "dev": true + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "dev": true, + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/babel__core": { + "version": "7.1.14", + "resolved": "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.14.tgz?cache=0&sync_timestamp=1621240678089&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__core%2Fdownload%2F%40types%2Fbabel__core-7.1.14.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-24.9.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-24.9.0.tgz", + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.2", + "resolved": "https://registry.nlark.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "dev": true, + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + }, + "dependencies": { + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.nlark.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + } + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-2.0.0.tgz" + } + } + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-3.0.2.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-3.0.2.tgz" + } + } + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.nlark.com/globals/download/globals-9.18.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-9.18.0.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": { + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "dependencies": {} + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + } + } + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz", + "dev": true + }, + "jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest/download/jest-24.9.0.tgz", + "dev": true, + "requires": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "dependencies": { + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + } + } + }, + "jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-cli/download/jest-cli-24.9.0.tgz", + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/core/download/@jest/core-24.9.0.tgz?cache=0&sync_timestamp=1622709636473&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/reporters": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/reporters/download/@jest/reporters-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-changed-files": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-changed-files/download/jest-changed-files-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-resolve-dependencies": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "dependencies": {} + }, + "jest-runner": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runner/download/jest-runner-24.9.0.tgz?cache=0&sync_timestamp=1622709114586&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-each-series/download/p-each-series-1.0.0.tgz", + "requires": { + "p-reduce": "^1.0.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": {} + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz" + } + } + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": {} + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "prompts": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/prompts/download/prompts-2.4.1.tgz", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "dependencies": { + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz" + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz" + } + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "jest-environment-jsdom-fifteen": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/jest-environment-jsdom-fifteen/download/jest-environment-jsdom-fifteen-1.0.2.tgz", + "dev": true, + "requires": { + "@jest/environment": "^24.3.0", + "@jest/fake-timers": "^24.3.0", + "@jest/types": "^24.3.0", + "jest-mock": "^24.0.0", + "jest-util": "^24.0.0", + "jsdom": "^15.2.1" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + } + } + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": { + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz?cache=0&sync_timestamp=1621241448960&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-lib-coverage%2Fdownload%2F%40types%2Fistanbul-lib-coverage-2.0.3.tgz" + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.nlark.com/jsdom/download/jsdom-15.2.1.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-6.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-6.2.0.tgz" + } + } + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + } + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + } + } + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz", + "optional": true + } + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": { + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": {} + } + } + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "parse5": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/parse5/download/parse5-5.1.0.tgz" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": {} + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": {} + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": {} + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": {} + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.5.2.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.5.2.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/request-promise-core/download/request-promise-core-1.1.4.tgz", + "requires": { + "lodash": "^4.17.19" + }, + "dependencies": {} + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "saxes": { + "version": "3.1.11", + "resolved": "https://registry.nlark.com/saxes/download/saxes-3.1.11.tgz", + "requires": { + "xmlchars": "^2.1.1" + }, + "dependencies": { + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz" + } + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-3.0.1.tgz", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": { + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz" + } + } + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-1.1.2.tgz", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + } + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "ws": { + "version": "7.4.6", + "resolved": "https://registry.nlark.com/ws/download/ws-7.4.6.tgz" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + } + } + }, + "jest-serializer-vue": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/jest-serializer-vue/download/jest-serializer-vue-2.0.2.tgz", + "dev": true, + "requires": { + "pretty": "2.0.0" + }, + "dependencies": { + "pretty": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/pretty/download/pretty-2.0.0.tgz", + "requires": { + "condense-newlines": "^0.2.1", + "extend-shallow": "^2.0.1", + "js-beautify": "^1.6.12" + }, + "dependencies": { + "condense-newlines": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/condense-newlines/download/condense-newlines-0.2.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-whitespace": "^0.3.0", + "kind-of": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "is-whitespace": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/is-whitespace/download/is-whitespace-0.3.0.tgz" + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "js-beautify": { + "version": "1.13.13", + "resolved": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": { + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz?cache=0&sync_timestamp=1622746031285&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconfig-chain%2Fdownload%2Fconfig-chain-1.1.13.tgz", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.nlark.com/ini/download/ini-1.3.8.tgz" + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/proto-list/download/proto-list-1.2.4.tgz" + } + } + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.nlark.com/editorconfig/download/editorconfig-0.15.3.tgz", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz" + } + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/sigmund/download/sigmund-1.0.1.tgz" + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz" + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz", + "requires": { + "abbrev": "1" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/abbrev/download/abbrev-1.1.1.tgz" + } + } + } + } + } + } + } + } + }, + "jest-transform-stub": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/jest-transform-stub/download/jest-transform-stub-2.0.0.tgz", + "dev": true + }, + "jest-watch-typeahead": { + "version": "0.4.2", + "resolved": "https://registry.nlark.com/jest-watch-typeahead/download/jest-watch-typeahead-0.4.2.tgz?cache=0&sync_timestamp=1622135809685&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-watch-typeahead%2Fdownload%2Fjest-watch-typeahead-0.4.2.tgz", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^2.4.1", + "jest-regex-util": "^24.9.0", + "jest-watcher": "^24.3.0", + "slash": "^3.0.0", + "string-length": "^3.1.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz" + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-3.0.0.tgz" + }, + "string-length": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-3.1.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": { + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + } + } + }, + "ts-jest": { + "version": "24.3.0", + "resolved": "https://registry.nlark.com/ts-jest/download/ts-jest-24.3.0.tgz?cache=0&sync_timestamp=1622995664837&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fts-jest%2Fdownload%2Fts-jest-24.3.0.tgz", + "dev": true, + "requires": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "dependencies": { + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.nlark.com/bs-logger/download/bs-logger-0.2.6.tgz", + "requires": { + "fast-json-stable-stringify": "2.x" + }, + "dependencies": { + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + } + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": { + "is-core-module": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": {} + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + } + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-10.1.0.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-10.1.0.tgz", + "requires": { + "camelcase": "^4.1.0" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-4.1.0.tgz" + } + } + } + } + }, + "vue-jest": { + "version": "3.0.7", + "resolved": "https://registry.nlark.com/vue-jest/download/vue-jest-3.0.7.tgz?cache=0&sync_timestamp=1622444650910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-jest%2Fdownload%2Fvue-jest-3.0.7.tgz", + "dev": true, + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", + "chalk": "^2.1.0", + "deasync": "^0.1.15", + "extract-from-css": "^0.4.4", + "find-babel-config": "^1.1.0", + "js-beautify": "^1.6.14", + "node-cache": "^4.1.1", + "object-assign": "^4.1.1", + "source-map": "^0.5.6", + "tsconfig": "^7.0.0", + "vue-template-es2015-compiler": "^1.6.0" + }, + "dependencies": { + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.2", + "resolved": "https://registry.nlark.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + }, + "dependencies": { + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.nlark.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "deasync": { + "version": "0.1.21", + "resolved": "https://registry.nlark.com/deasync/download/deasync-0.1.21.tgz", + "requires": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + }, + "dependencies": { + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz", + "requires": { + "file-uri-to-path": "1.0.0" + }, + "dependencies": { + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz" + } + } + }, + "node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/node-addon-api/download/node-addon-api-1.7.2.tgz" + } + } + }, + "extract-from-css": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/extract-from-css/download/extract-from-css-0.4.4.tgz", + "requires": { + "css": "^2.1.0" + }, + "dependencies": { + "css": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/css/download/css-2.2.4.tgz", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": { + "atob": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/resolve-url/download/resolve-url-0.2.1.tgz" + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz" + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + } + } + }, + "find-babel-config": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/find-babel-config/download/find-babel-config-1.2.0.tgz", + "requires": { + "json5": "^0.5.1", + "path-exists": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/json5/download/json5-0.5.1.tgz" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + }, + "js-beautify": { + "version": "1.13.13", + "resolved": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": { + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz?cache=0&sync_timestamp=1622746031285&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconfig-chain%2Fdownload%2Fconfig-chain-1.1.13.tgz", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": {} + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.nlark.com/editorconfig/download/editorconfig-0.15.3.tgz", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz" + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz", + "requires": { + "abbrev": "1" + }, + "dependencies": {} + } + } + }, + "node-cache": { + "version": "4.2.1", + "resolved": "https://registry.nlark.com/node-cache/download/node-cache-4.2.1.tgz", + "requires": { + "clone": "2.x", + "lodash": "^4.17.15" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "tsconfig": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/tsconfig/download/tsconfig-7.0.0.tgz", + "requires": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + }, + "dependencies": { + "@types/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/@types/strip-bom/download/@types/strip-bom-3.0.0.tgz" + }, + "@types/strip-json-comments": { + "version": "0.0.30", + "resolved": "https://registry.nlark.com/@types/strip-json-comments/download/@types/strip-json-comments-0.0.30.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz" + } + } + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + } + } + } + } + }, + "@vue/cli-plugin-vuex": { + "version": "https://registry.nlark.com/@vue/cli-plugin-vuex/download/@vue/cli-plugin-vuex-4.5.13.tgz" + }, + "@vue/cli-service": { + "version": "4.4.4", + "resolved": "https://registry.nlark.com/@vue/cli-service/download/@vue/cli-service-4.4.4.tgz", + "dev": true, + "requires": { + "@intervolga/optimize-cssnano-plugin": "^1.0.5", + "@soda/friendly-errors-webpack-plugin": "^1.7.1", + "@soda/get-current-script": "^1.0.0", + "@vue/cli-overlay": "^4.4.4", + "@vue/cli-plugin-router": "^4.4.4", + "@vue/cli-plugin-vuex": "^4.4.4", + "@vue/cli-shared-utils": "^4.4.4", + "@vue/component-compiler-utils": "^3.1.2", + "@vue/preload-webpack-plugin": "^1.1.0", + "@vue/web-component-wrapper": "^1.2.0", + "acorn": "^7.2.0", + "acorn-walk": "^7.1.1", + "address": "^1.1.2", + "autoprefixer": "^9.8.0", + "browserslist": "^4.12.0", + "cache-loader": "^4.1.0", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "cli-highlight": "^2.1.4", + "clipboardy": "^2.3.0", + "cliui": "^6.0.0", + "copy-webpack-plugin": "^5.1.1", + "css-loader": "^3.5.3", + "cssnano": "^4.1.10", + "debug": "^4.1.1", + "default-gateway": "^5.0.5", + "dotenv": "^8.2.0", + "dotenv-expand": "^5.1.0", + "file-loader": "^4.2.0", + "fs-extra": "^7.0.1", + "globby": "^9.2.0", + "hash-sum": "^2.0.0", + "html-webpack-plugin": "^3.2.0", + "launch-editor-middleware": "^2.2.1", + "lodash.defaultsdeep": "^4.6.1", + "lodash.mapvalues": "^4.6.0", + "lodash.transform": "^4.6.0", + "mini-css-extract-plugin": "^0.9.0", + "minimist": "^1.2.5", + "pnp-webpack-plugin": "^1.6.4", + "portfinder": "^1.0.26", + "postcss-loader": "^3.0.0", + "ssri": "^7.1.0", + "terser-webpack-plugin": "^2.3.6", + "thread-loader": "^2.1.3", + "url-loader": "^2.2.0", + "vue-loader": "^15.9.2", + "vue-style-loader": "^4.1.2", + "webpack": "^4.0.0", + "webpack-bundle-analyzer": "^3.8.0", + "webpack-chain": "^6.4.0", + "webpack-dev-server": "^3.11.0", + "webpack-merge": "^4.2.2" + }, + "dependencies": { + "@intervolga/optimize-cssnano-plugin": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/@intervolga/optimize-cssnano-plugin/download/@intervolga/optimize-cssnano-plugin-1.0.6.tgz", + "dev": true, + "requires": { + "cssnano": "^4.0.0", + "cssnano-preset-default": "^4.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.nlark.com/cssnano/download/cssnano-4.1.11.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "@soda/friendly-errors-webpack-plugin": { + "version": "1.8.0", + "resolved": "https://registry.nlark.com/@soda/friendly-errors-webpack-plugin/download/@soda/friendly-errors-webpack-plugin-1.8.0.tgz", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "error-stack-parser": "^2.0.2", + "string-width": "^2.0.0", + "strip-ansi": "^5" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/error-stack-parser/download/error-stack-parser-2.0.6.tgz", + "requires": { + "stackframe": "^1.1.1" + }, + "dependencies": {} + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "@soda/get-current-script": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/@soda/get-current-script/download/@soda/get-current-script-1.0.2.tgz", + "dev": true + }, + "@vue/cli-overlay": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-overlay/download/@vue/cli-overlay-4.5.13.tgz", + "dev": true + }, + "@vue/cli-plugin-router": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-plugin-router/download/@vue/cli-plugin-router-4.5.13.tgz", + "dev": true, + "requires": { + "@vue/cli-shared-utils": "^4.5.13" + }, + "dependencies": { + "@vue/cli-shared-utils": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + } + } + }, + "@vue/cli-plugin-vuex": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-plugin-vuex/download/@vue/cli-plugin-vuex-4.5.13.tgz", + "dev": true + }, + "@vue/cli-shared-utils": { + "version": "4.5.13", + "resolved": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "dev": true, + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "node-ipc": { + "version": "9.1.4", + "resolved": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": {} + }, + "open": { + "version": "6.4.0", + "resolved": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": {} + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "@vue/component-compiler-utils": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.2.1.tgz", + "dev": true, + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": { + "consolidate": { + "version": "0.15.1", + "resolved": "https://registry.nlark.com/consolidate/download/consolidate-0.15.1.tgz", + "requires": { + "bluebird": "^3.1.1" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + } + } + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz" + } + } + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "prettier": { + "version": "1.19.1", + "resolved": "https://registry.nlark.com/prettier/download/prettier-1.19.1.tgz?cache=0&sync_timestamp=1622888592750&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprettier%2Fdownload%2Fprettier-1.19.1.tgz", + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + } + } + }, + "@vue/preload-webpack-plugin": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/@vue/preload-webpack-plugin/download/@vue/preload-webpack-plugin-1.1.2.tgz", + "dev": true + }, + "@vue/web-component-wrapper": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/@vue/web-component-wrapper/download/@vue/web-component-wrapper-1.3.0.tgz", + "dev": true + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz", + "dev": true + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz", + "dev": true + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/address/download/address-1.1.2.tgz", + "dev": true + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.nlark.com/autoprefixer/download/autoprefixer-9.8.6.tgz", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz" + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "cache-loader": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/cache-loader/download/cache-loader-4.1.0.tgz", + "dev": true, + "requires": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "dependencies": { + "buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/buffer-json/download/buffer-json-2.0.0.tgz" + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "dev": true + }, + "cli-highlight": { + "version": "2.1.11", + "resolved": "https://registry.nlark.com/cli-highlight/download/cli-highlight-2.1.11.tgz", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "dependencies": { + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": {} + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.nlark.com/highlight.js/download/highlight.js-10.7.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhighlight.js%2Fdownload%2Fhighlight.js-10.7.3.tgz" + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/mz/download/mz-2.7.0.tgz", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + }, + "dependencies": { + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/thenify-all/download/thenify-all-1.6.0.tgz", + "requires": { + "thenify": ">= 3.1.0 < 4" + }, + "dependencies": { + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/thenify/download/thenify-3.3.1.tgz", + "requires": { + "any-promise": "^1.0.0" + }, + "dependencies": { + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + } + } + } + } + } + } + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-5.1.1.tgz" + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz" + } + } + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": {} + } + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + } + } + } + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz" + }, + "yargs-parser": { + "version": "20.2.7", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.7.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.7.tgz" + } + } + } + } + }, + "clipboardy": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/clipboardy/download/clipboardy-2.3.0.tgz", + "dev": true, + "requires": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + }, + "dependencies": { + "arch": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/arch/download/arch-2.2.0.tgz" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": { + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz" + } + } + } + } + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-6.0.0.tgz", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-6.2.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": {} + } + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + } + } + } + } + }, + "copy-webpack-plugin": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/copy-webpack-plugin/download/copy-webpack-plugin-5.1.2.tgz", + "dev": true, + "requires": { + "cacache": "^12.0.3", + "find-cache-dir": "^2.1.0", + "glob-parent": "^3.1.0", + "globby": "^7.1.1", + "is-glob": "^4.0.1", + "loader-utils": "^1.2.3", + "minimatch": "^3.0.4", + "normalize-path": "^3.0.0", + "p-limit": "^2.2.1", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/mississippi/download/mississippi-3.0.0.tgz", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": {} + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.nlark.com/ssri/download/ssri-6.0.2.tgz", + "requires": { + "figgy-pudding": "^3.5.1" + }, + "dependencies": {} + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": {} + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "requires": { + "is-extglob": "^2.1.0" + }, + "dependencies": {} + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz" + } + } + }, + "globby": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/globby/download/globby-7.1.1.tgz", + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + } + } + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.nlark.com/ignore/download/ignore-3.3.10.tgz" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-1.0.0.tgz" + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": {} + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": { + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + } + } + }, + "css-loader": { + "version": "3.6.0", + "resolved": "https://registry.nlark.com/css-loader/download/css-loader-3.6.0.tgz?cache=0&sync_timestamp=1621865270658&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-loader%2Fdownload%2Fcss-loader-3.6.0.tgz", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.0", + "semver": "^6.3.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-2.0.0.tgz", + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-3.0.3.tgz", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-3.0.0.tgz", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + }, + "dependencies": { + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.nlark.com/cssnano/download/cssnano-4.1.11.tgz", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": {} + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": {} + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "dev": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "default-gateway": { + "version": "5.0.5", + "resolved": "https://registry.nlark.com/default-gateway/download/default-gateway-5.0.5.tgz", + "dev": true, + "requires": { + "execa": "^3.3.0" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/execa/download/execa-3.4.0.tgz", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz", + "requires": { + "shebang-regex": "^3.0.0" + }, + "dependencies": { + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz" + } + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + } + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + } + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz" + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-2.0.0.tgz" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-4.0.1.tgz", + "requires": { + "path-key": "^3.0.0" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + } + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz" + } + } + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-2.0.1.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-final-newline": { + "version": "2.0.0", + "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" + } + } + } + } + }, + "dotenv": { + "version": "8.6.0", + "resolved": "https://registry.nlark.com/dotenv/download/dotenv-8.6.0.tgz", + "dev": true + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz", + "dev": true + }, + "file-loader": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/file-loader/download/file-loader-4.3.0.tgz", + "dev": true, + "requires": { + "loader-utils": "^1.2.3", + "schema-utils": "^2.5.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + } + } + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/fs-extra/download/fs-extra-7.0.1.tgz", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.6" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz", + "optional": true + } + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz" + } + } + }, + "globby": { + "version": "9.2.0", + "resolved": "https://registry.nlark.com/globby/download/globby-9.2.0.tgz", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": {} + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": {} + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": {} + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-2.0.0.tgz", + "dev": true + }, + "html-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz", + "dev": true, + "requires": { + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "tapable": "^1.0.0", + "toposort": "^1.0.0", + "util.promisify": "1.0.0" + }, + "dependencies": { + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/camel-case/download/camel-case-3.0.0.tgz", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + }, + "dependencies": { + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": { + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz" + } + } + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/upper-case/download/upper-case-1.1.3.tgz" + } + } + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.nlark.com/clean-css/download/clean-css-4.2.3.tgz", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "commander": { + "version": "2.17.1", + "resolved": "https://registry.nlark.com/commander/download/commander-2.17.1.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/param-case/download/param-case-2.1.1.tgz", + "requires": { + "no-case": "^2.2.0" + }, + "dependencies": { + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": { + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz" + } + } + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.nlark.com/relateurl/download/relateurl-0.2.7.tgz" + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.nlark.com/uglify-js/download/uglify-js-3.4.10.tgz", + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.nlark.com/commander/download/commander-2.19.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-0.2.17.tgz", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + }, + "dependencies": { + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/big.js/download/big.js-3.2.0.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-3.2.0.tgz" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-2.1.0.tgz" + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/json5/download/json5-0.5.1.tgz" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/pretty-error/download/pretty-error-2.1.2.tgz?cache=0&sync_timestamp=1623180529588&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-error%2Fdownload%2Fpretty-error-2.1.2.tgz", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "renderkid": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/renderkid/download/renderkid-2.0.6.tgz?cache=0&sync_timestamp=1623180526912&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frenderkid%2Fdownload%2Frenderkid-2.0.6.tgz", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-4.1.3.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "css-what": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/css-what/download/css-what-5.0.1.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-5.0.1.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + } + } + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + } + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + } + } + } + } + }, + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-2.0.0.tgz", + "requires": { + "boolbase": "^1.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + } + } + } + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/dom-converter/download/dom-converter-0.2.0.tgz", + "requires": { + "utila": "~0.4" + }, + "dependencies": { + "utila": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/utila/download/utila-0.4.0.tgz" + } + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-6.1.0.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + } + } + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + } + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + } + } + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "toposort": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz" + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.0.tgz", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "launch-editor-middleware": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor-middleware/download/launch-editor-middleware-2.2.1.tgz", + "dev": true, + "requires": { + "launch-editor": "^2.2.1" + }, + "dependencies": { + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/shell-quote/download/shell-quote-1.7.2.tgz" + } + } + } + } + }, + "lodash.defaultsdeep": { + "version": "4.6.1", + "resolved": "https://registry.nlark.com/lodash.defaultsdeep/download/lodash.defaultsdeep-4.6.1.tgz", + "dev": true + }, + "lodash.mapvalues": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/lodash.mapvalues/download/lodash.mapvalues-4.6.0.tgz", + "dev": true + }, + "lodash.transform": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/lodash.transform/download/lodash.transform-4.6.0.tgz", + "dev": true + }, + "mini-css-extract-plugin": { + "version": "0.9.0", + "resolved": "https://registry.nlark.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.9.0.tgz?cache=0&sync_timestamp=1619783444865&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-0.9.0.tgz", + "dev": true, + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-1.9.1.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-1.9.1.tgz", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/prepend-http/download/prepend-http-1.0.4.tgz" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz" + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/sort-keys/download/sort-keys-1.1.2.tgz", + "requires": { + "is-plain-obj": "^1.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz", + "dev": true + }, + "pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.nlark.com/pnp-webpack-plugin/download/pnp-webpack-plugin-1.6.4.tgz", + "dev": true, + "requires": { + "ts-pnp": "^1.1.6" + }, + "dependencies": { + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/ts-pnp/download/ts-pnp-1.2.0.tgz" + } + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "async": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz", + "requires": { + "lodash": "^4.17.14" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.3.tgz" + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + } + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/postcss-loader/download/postcss-loader-3.0.0.tgz", + "dev": true, + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-2.1.2.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-fresh/download/import-fresh-2.0.0.tgz", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": {} + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": {} + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-cwd/download/import-cwd-2.1.0.tgz", + "requires": { + "import-from": "^2.1.0" + }, + "dependencies": { + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-from/download/import-from-2.1.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + } + } + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + } + } + }, + "ssri": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "dependencies": { + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + } + } + }, + "terser-webpack-plugin": { + "version": "2.3.8", + "resolved": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-2.3.8.tgz", + "dev": true, + "requires": { + "cacache": "^13.0.1", + "find-cache-dir": "^3.3.1", + "jest-worker": "^25.4.0", + "p-limit": "^2.3.0", + "schema-utils": "^2.6.6", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "cacache": { + "version": "13.0.1", + "resolved": "https://registry.nlark.com/cacache/download/cacache-13.0.1.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-13.0.1.tgz", + "requires": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/fs-minipass/download/fs-minipass-2.1.0.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": { + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz" + } + } + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/minipass-collect/download/minipass-collect-1.0.2.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + } + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/minipass-flush/download/minipass-flush-1.0.5.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + } + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/minipass-pipeline/download/minipass-pipeline-1.2.4.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": {} + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "p-map": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/p-map/download/p-map-3.0.0.tgz", + "requires": { + "aggregate-error": "^3.0.0" + }, + "dependencies": { + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915056089&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz" + } + } + } + } + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "ssri": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz", + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "dependencies": { + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": { + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz", + "requires": { + "imurmurhash": "^0.1.4" + }, + "dependencies": {} + } + } + } + } + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz" + } + } + } + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": { + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + } + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + } + } + }, + "thread-loader": { + "version": "2.1.3", + "resolved": "https://registry.nlark.com/thread-loader/download/thread-loader-2.1.3.tgz", + "dev": true, + "requires": { + "loader-runner": "^2.3.1", + "loader-utils": "^1.1.0", + "neo-async": "^2.6.0" + }, + "dependencies": { + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + } + } + }, + "url-loader": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/url-loader/download/url-loader-2.3.0.tgz", + "dev": true, + "requires": { + "loader-utils": "^1.2.3", + "mime": "^2.4.4", + "schema-utils": "^2.5.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + } + } + }, + "vue-loader": { + "version": "15.9.7", + "resolved": "https://registry.nlark.com/vue-loader/download/vue-loader-15.9.7.tgz?cache=0&sync_timestamp=1620717814924&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-loader%2Fdownload%2Fvue-loader-15.9.7.tgz", + "dev": true, + "requires": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "dependencies": { + "@vue/component-compiler-utils": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.2.1.tgz", + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": { + "consolidate": { + "version": "0.15.1", + "resolved": "https://registry.nlark.com/consolidate/download/consolidate-0.15.1.tgz", + "requires": { + "bluebird": "^3.1.1" + }, + "dependencies": {} + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": {} + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + }, + "prettier": { + "version": "1.19.1", + "resolved": "https://registry.nlark.com/prettier/download/prettier-1.19.1.tgz?cache=0&sync_timestamp=1622888592750&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprettier%2Fdownload%2Fprettier-1.19.1.tgz", + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + } + } + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.nlark.com/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz" + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz", + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + } + } + } + } + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz", + "dev": true, + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "webpack": { + "version": "4.46.0", + "resolved": "https://registry.nlark.com/webpack/download/webpack-4.46.0.tgz", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": {} + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "webpack-bundle-analyzer": { + "version": "3.9.0", + "resolved": "https://registry.nlark.com/webpack-bundle-analyzer/download/webpack-bundle-analyzer-3.9.0.tgz?cache=0&sync_timestamp=1621259036556&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-bundle-analyzer%2Fdownload%2Fwebpack-bundle-analyzer-3.9.0.tgz", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.19", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz" + }, + "bfj": { + "version": "6.1.2", + "resolved": "https://registry.nlark.com/bfj/download/bfj-6.1.2.tgz", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "check-types": { + "version": "8.0.3", + "resolved": "https://registry.nlark.com/check-types/download/check-types-8.0.3.tgz" + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz" + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tryer/download/tryer-1.0.1.tgz" + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.nlark.com/ejs/download/ejs-2.7.4.tgz" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": { + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + } + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/raw-body/download/raw-body-2.4.0.tgz", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": { + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + } + } + } + } + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/cookie-signature/download/cookie-signature-1.0.6.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz?cache=0&sync_timestamp=1622509170257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fproxy-addr%2Fdownload%2Fproxy-addr-2.0.7.tgz", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + } + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz" + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.1.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/serve-static/download/serve-static-1.14.1.tgz", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz" + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.1.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + } + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": { + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + } + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "filesize": { + "version": "3.6.1", + "resolved": "https://registry.nlark.com/filesize/download/filesize-3.6.1.tgz" + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/gzip-size/download/gzip-size-5.1.1.tgz", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": { + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/duplexer/download/duplexer-0.1.2.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz" + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": { + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + } + } + } + } + }, + "webpack-chain": { + "version": "6.5.1", + "resolved": "https://registry.nlark.com/webpack-chain/download/webpack-chain-6.5.1.tgz", + "dev": true, + "requires": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + }, + "dependencies": { + "deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz" + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/javascript-stringify/download/javascript-stringify-2.1.0.tgz" + } + } + }, + "webpack-dev-server": { + "version": "3.11.2", + "resolved": "https://registry.nlark.com/webpack-dev-server/download/webpack-dev-server-3.11.2.tgz?cache=0&sync_timestamp=1620307433525&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-dev-server%2Fdownload%2Fwebpack-dev-server-3.11.2.tgz", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.nlark.com/ansi-html/download/ansi-html-0.0.7.tgz" + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.1.tgz", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "dependencies": { + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.0.tgz", + "requires": { + "call-bind": "^1.0.0" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + } + } + }, + "is-date-object": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + } + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + } + } + } + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/dns-equal/download/dns-equal-1.0.0.tgz" + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "requires": { + "buffer-indexof": "^1.0.0" + }, + "dependencies": { + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-indexof/download/buffer-indexof-1.1.1.tgz" + } + } + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.nlark.com/multicast-dns/download/multicast-dns-6.2.3.tgz", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "dependencies": { + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.nlark.com/dns-packet/download/dns-packet-1.3.4.tgz", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz" + } + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz" + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/fsevents/download/fsevents-1.2.13.tgz", + "optional": true + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-1.0.1.tgz", + "requires": { + "binary-extensions": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-2.2.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": {} + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/upath/download/upath-1.2.0.tgz" + } + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": { + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + } + } + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.0.0.tgz" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npm.taobao.org/compressible/download/compressible-2.0.18.tgz", + "requires": { + "mime-db": ">= 1.43.0 < 2" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz" + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/del/download/del-4.1.1.tgz", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": { + "@types/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/@types/minimatch/download/@types/minimatch-3.0.4.tgz?cache=0&sync_timestamp=1621241868071&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fminimatch%2Fdownload%2F%40types%2Fminimatch-3.0.4.tgz" + }, + "@types/node": { + "version": "15.12.2", + "resolved": "https://registry.nlark.com/@types/node/download/@types/node-15.12.2.tgz?cache=0&sync_timestamp=1623107061338&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-15.12.2.tgz" + } + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/globby/download/globby-6.1.0.tgz", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + } + } + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-path-in-cwd/download/is-path-in-cwd-2.1.0.tgz?cache=0&sync_timestamp=1620047156679&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-in-cwd%2Fdownload%2Fis-path-in-cwd-2.1.0.tgz", + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": { + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1620046922351&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz", + "requires": { + "path-is-inside": "^1.0.2" + }, + "dependencies": { + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-is-inside/download/path-is-inside-1.0.2.tgz" + } + } + } + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/p-map/download/p-map-2.1.0.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": {} + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": {} + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/cookie-signature/download/cookie-signature-1.0.6.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": {} + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz?cache=0&sync_timestamp=1622509170257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fproxy-addr%2Fdownload%2Fproxy-addr-2.0.7.tgz", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": {} + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": {} + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/serve-static/download/serve-static-1.14.1.tgz", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "dependencies": {} + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": {} + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/html-entities/download/html-entities-1.4.0.tgz" + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-0.19.1.tgz?cache=0&sync_timestamp=1620409562092&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-0.19.1.tgz", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.nlark.com/eventemitter3/download/eventemitter3-4.0.7.tgz" + }, + "follow-redirects": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + } + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": {} + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/internal-ip/download/internal-ip-4.3.0.tgz", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "dependencies": { + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/default-gateway/download/default-gateway-4.2.0.tgz", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": { + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + } + } + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + } + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-3.0.3.tgz" + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/killable/download/killable-1.0.1.tgz" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.nlark.com/loglevel/download/loglevel-1.7.1.tgz" + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/opn/download/opn-5.5.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + } + } + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/p-retry/download/p-retry-3.0.1.tgz", + "requires": { + "retry": "^0.12.0" + }, + "dependencies": { + "retry": { + "version": "0.12.0", + "resolved": "https://registry.nlark.com/retry/download/retry-0.12.0.tgz" + } + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "async": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz", + "requires": { + "lodash": "^4.17.14" + }, + "dependencies": {} + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz", + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": { + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": { + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + } + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/batch/download/batch-0.6.1.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.0.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + } + } + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.nlark.com/sockjs/download/sockjs-0.3.21.tgz", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": { + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": { + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz" + } + } + } + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": { + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz" + } + } + } + } + }, + "sockjs-client": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/sockjs-client/download/sockjs-client-1.5.1.tgz", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.3.tgz" + } + } + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/eventsource/download/eventsource-1.1.0.tgz", + "requires": { + "original": "^1.0.0" + }, + "dependencies": { + "original": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/original/download/original-1.0.2.tgz", + "requires": { + "url-parse": "^1.4.3" + }, + "dependencies": { + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": { + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + } + } + } + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": { + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": {} + } + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.nlark.com/json3/download/json3-3.3.3.tgz" + }, + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": { + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + } + } + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/handle-thing/download/handle-thing-2.0.1.tgz" + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz" + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/select-hose/download/select-hose-2.0.0.tgz" + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz?cache=0&sync_timestamp=1621147029891&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdetect-node%2Fdownload%2Fdetect-node-2.1.0.tgz" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.nlark.com/hpack.js/download/hpack.js-2.1.6.tgz", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + } + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + } + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + } + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz" + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.nlark.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": { + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + } + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": {} + } + } + } + } + }, + "webpack-merge": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/webpack-merge/download/webpack-merge-4.2.2.tgz", + "dev": true, + "requires": { + "lodash": "^4.17.15" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + } + } + }, + "@vue/cli-shared-utils": { + "version": "https://registry.nlark.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.13.tgz", + "requires": { + "@hapi/joi": "^15.0.1", + "chalk": "^2.4.2", + "execa": "^1.0.0", + "launch-editor": "^2.2.1", + "lru-cache": "^5.1.1", + "node-ipc": "^9.1.1", + "open": "^6.3.0", + "ora": "^3.4.0", + "read-pkg": "^5.1.1", + "request": "^2.88.2", + "semver": "^6.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.nlark.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "node-ipc": { + "version": "9.1.4", + "resolved": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": {} + }, + "open": { + "version": "6.4.0", + "resolved": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "ora": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": {} + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "@vue/component-compiler-utils": { + "version": "https://registry.nlark.com/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.2.1.tgz", + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": { + "consolidate": { + "version": "0.15.1", + "resolved": "https://registry.nlark.com/consolidate/download/consolidate-0.15.1.tgz", + "requires": { + "bluebird": "^3.1.1" + }, + "dependencies": {} + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": {} + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + }, + "prettier": { + "version": "1.19.1", + "resolved": "https://registry.nlark.com/prettier/download/prettier-1.19.1.tgz?cache=0&sync_timestamp=1622888592750&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprettier%2Fdownload%2Fprettier-1.19.1.tgz", + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + } + } + }, + "@vue/preload-webpack-plugin": { + "version": "https://registry.nlark.com/@vue/preload-webpack-plugin/download/@vue/preload-webpack-plugin-1.1.2.tgz" + }, + "@vue/test-utils": { + "version": "1.0.0-beta.29", + "resolved": "https://registry.nlark.com/@vue/test-utils/download/@vue/test-utils-1.0.0-beta.29.tgz", + "dev": true, + "requires": { + "dom-event-types": "^1.0.0", + "lodash": "^4.17.4" + }, + "dependencies": { + "dom-event-types": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/dom-event-types/download/dom-event-types-1.0.0.tgz", + "dev": true + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz", + "dev": true + } + } + }, + "@vue/web-component-wrapper": { + "version": "https://registry.nlark.com/@vue/web-component-wrapper/download/@vue/web-component-wrapper-1.3.0.tgz" + }, + "@webassemblyjs/ast": { + "version": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.9.0.tgz" + }, + "@webassemblyjs/helper-api-error": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-buffer": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/helper-code-frame": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.9.0.tgz", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-fsm": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.9.0.tgz" + }, + "@webassemblyjs/helper-module-context": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "https://registry.nlark.com/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/ieee754": { + "version": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": { + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz" + } + } + }, + "@webassemblyjs/leb128": { + "version": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + }, + "@webassemblyjs/utf8": { + "version": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + }, + "@webassemblyjs/wasm-edit": { + "version": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/wasm-gen": { + "version": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": {} + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + }, + "@webassemblyjs/wasm-opt": { + "version": "https://registry.nlark.com/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz" + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + } + } + }, + "@webassemblyjs/wasm-parser": { + "version": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz" + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz", + "requires": { + "@xtuc/ieee754": "^1.2.0" + }, + "dependencies": {} + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz", + "requires": { + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz" + } + } + }, + "@webassemblyjs/wast-parser": { + "version": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.9.0.tgz" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.9.0.tgz", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.9.0.tgz" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + }, + "@webassemblyjs/wast-printer": { + "version": "https://registry.nlark.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + }, + "dependencies": {} + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + } + } + }, + "@xtuc/ieee754": { + "version": "https://registry.nlark.com/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz" + }, + "@xtuc/long": { + "version": "https://registry.nlark.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz" + }, + "_@babel_code-frame@7.14.5@@babel": {}, + "_@babel_compat-data@7.14.5@@babel": {}, + "_@babel_core@7.14.5@@babel": {}, + "_@babel_generator@7.14.5@@babel": {}, + "_@babel_helper-annotate-as-pure@7.14.5@@babel": {}, + "_@babel_helper-builder-binary-assignment-operator-visitor@7.14.5@@babel": {}, + "_@babel_helper-compilation-targets@7.14.5@@babel": {}, + "_@babel_helper-create-class-features-plugin@7.14.5@@babel": {}, + "_@babel_helper-create-regexp-features-plugin@7.14.5@@babel": {}, + "_@babel_helper-define-polyfill-provider@0.2.3@@babel": {}, + "_@babel_helper-explode-assignable-expression@7.14.5@@babel": {}, + "_@babel_helper-function-name@7.14.5@@babel": {}, + "_@babel_helper-get-function-arity@7.14.5@@babel": {}, + "_@babel_helper-hoist-variables@7.14.5@@babel": {}, + "_@babel_helper-member-expression-to-functions@7.14.5@@babel": {}, + "_@babel_helper-module-imports@7.14.5@@babel": {}, + "_@babel_helper-module-transforms@7.14.5@@babel": {}, + "_@babel_helper-optimise-call-expression@7.14.5@@babel": {}, + "_@babel_helper-plugin-utils@7.14.5@@babel": {}, + "_@babel_helper-remap-async-to-generator@7.14.5@@babel": {}, + "_@babel_helper-replace-supers@7.14.5@@babel": {}, + "_@babel_helper-simple-access@7.14.5@@babel": {}, + "_@babel_helper-skip-transparent-expression-wrappers@7.14.5@@babel": {}, + "_@babel_helper-split-export-declaration@7.14.5@@babel": {}, + "_@babel_helper-validator-identifier@7.14.5@@babel": {}, + "_@babel_helper-validator-option@7.14.5@@babel": {}, + "_@babel_helper-wrap-function@7.14.5@@babel": {}, + "_@babel_helpers@7.14.5@@babel": {}, + "_@babel_highlight@7.14.5@@babel": {}, + "_@babel_parser@7.14.5@@babel": {}, + "_@babel_plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.14.5@@babel": {}, + "_@babel_plugin-proposal-async-generator-functions@7.14.5@@babel": {}, + "_@babel_plugin-proposal-class-properties@7.14.5@@babel": {}, + "_@babel_plugin-proposal-class-static-block@7.14.5@@babel": {}, + "_@babel_plugin-proposal-decorators@7.14.5@@babel": {}, + "_@babel_plugin-proposal-dynamic-import@7.14.5@@babel": {}, + "_@babel_plugin-proposal-export-namespace-from@7.14.5@@babel": {}, + "_@babel_plugin-proposal-json-strings@7.14.5@@babel": {}, + "_@babel_plugin-proposal-logical-assignment-operators@7.14.5@@babel": {}, + "_@babel_plugin-proposal-nullish-coalescing-operator@7.14.5@@babel": {}, + "_@babel_plugin-proposal-numeric-separator@7.14.5@@babel": {}, + "_@babel_plugin-proposal-object-rest-spread@7.14.5@@babel": {}, + "_@babel_plugin-proposal-optional-catch-binding@7.14.5@@babel": {}, + "_@babel_plugin-proposal-optional-chaining@7.14.5@@babel": {}, + "_@babel_plugin-proposal-private-methods@7.14.5@@babel": {}, + "_@babel_plugin-proposal-private-property-in-object@7.14.5@@babel": {}, + "_@babel_plugin-proposal-unicode-property-regex@7.14.5@@babel": {}, + "_@babel_plugin-syntax-async-generators@7.8.4@@babel": {}, + "_@babel_plugin-syntax-class-properties@7.12.13@@babel": {}, + "_@babel_plugin-syntax-class-static-block@7.14.5@@babel": {}, + "_@babel_plugin-syntax-decorators@7.14.5@@babel": {}, + "_@babel_plugin-syntax-dynamic-import@7.8.3@@babel": {}, + "_@babel_plugin-syntax-export-namespace-from@7.8.3@@babel": {}, + "_@babel_plugin-syntax-json-strings@7.8.3@@babel": {}, + "_@babel_plugin-syntax-jsx@7.14.5@@babel": {}, + "_@babel_plugin-syntax-logical-assignment-operators@7.10.4@@babel": {}, + "_@babel_plugin-syntax-nullish-coalescing-operator@7.8.3@@babel": {}, + "_@babel_plugin-syntax-numeric-separator@7.10.4@@babel": {}, + "_@babel_plugin-syntax-object-rest-spread@7.8.3@@babel": {}, + "_@babel_plugin-syntax-optional-catch-binding@7.8.3@@babel": {}, + "_@babel_plugin-syntax-optional-chaining@7.8.3@@babel": {}, + "_@babel_plugin-syntax-private-property-in-object@7.14.5@@babel": {}, + "_@babel_plugin-syntax-top-level-await@7.14.5@@babel": {}, + "_@babel_plugin-transform-arrow-functions@7.14.5@@babel": {}, + "_@babel_plugin-transform-async-to-generator@7.14.5@@babel": {}, + "_@babel_plugin-transform-block-scoped-functions@7.14.5@@babel": {}, + "_@babel_plugin-transform-block-scoping@7.14.5@@babel": {}, + "_@babel_plugin-transform-classes@7.14.5@@babel": {}, + "_@babel_plugin-transform-computed-properties@7.14.5@@babel": {}, + "_@babel_plugin-transform-destructuring@7.14.5@@babel": {}, + "_@babel_plugin-transform-dotall-regex@7.14.5@@babel": {}, + "_@babel_plugin-transform-duplicate-keys@7.14.5@@babel": {}, + "_@babel_plugin-transform-exponentiation-operator@7.14.5@@babel": {}, + "_@babel_plugin-transform-for-of@7.14.5@@babel": {}, + "_@babel_plugin-transform-function-name@7.14.5@@babel": {}, + "_@babel_plugin-transform-literals@7.14.5@@babel": {}, + "_@babel_plugin-transform-member-expression-literals@7.14.5@@babel": {}, + "_@babel_plugin-transform-modules-amd@7.14.5@@babel": {}, + "_@babel_plugin-transform-modules-commonjs@7.14.5@@babel": {}, + "_@babel_plugin-transform-modules-systemjs@7.14.5@@babel": {}, + "_@babel_plugin-transform-modules-umd@7.14.5@@babel": {}, + "_@babel_plugin-transform-named-capturing-groups-regex@7.14.5@@babel": {}, + "_@babel_plugin-transform-new-target@7.14.5@@babel": {}, + "_@babel_plugin-transform-object-super@7.14.5@@babel": {}, + "_@babel_plugin-transform-parameters@7.14.5@@babel": {}, + "_@babel_plugin-transform-property-literals@7.14.5@@babel": {}, + "_@babel_plugin-transform-regenerator@7.14.5@@babel": {}, + "_@babel_plugin-transform-reserved-words@7.14.5@@babel": {}, + "_@babel_plugin-transform-runtime@7.14.5@@babel": {}, + "_@babel_plugin-transform-shorthand-properties@7.14.5@@babel": {}, + "_@babel_plugin-transform-spread@7.14.5@@babel": {}, + "_@babel_plugin-transform-sticky-regex@7.14.5@@babel": {}, + "_@babel_plugin-transform-template-literals@7.14.5@@babel": {}, + "_@babel_plugin-transform-typeof-symbol@7.14.5@@babel": {}, + "_@babel_plugin-transform-unicode-escapes@7.14.5@@babel": {}, + "_@babel_plugin-transform-unicode-regex@7.14.5@@babel": {}, + "_@babel_preset-env@7.14.5@@babel": {}, + "_@babel_preset-modules@0.1.4@@babel": {}, + "_@babel_runtime@7.14.5@@babel": {}, + "_@babel_template@7.14.5@@babel": {}, + "_@babel_traverse@7.14.5@@babel": {}, + "_@babel_types@7.14.5@@babel": {}, + "_@cnakazawa_watch@1.0.4@@cnakazawa": {}, + "_@hapi_address@2.1.4@@hapi": {}, + "_@hapi_bourne@1.3.2@@hapi": {}, + "_@hapi_hoek@8.5.1@@hapi": {}, + "_@hapi_joi@15.1.1@@hapi": {}, + "_@hapi_topo@3.1.6@@hapi": {}, + "_@intervolga_optimize-cssnano-plugin@1.0.6@@intervolga": {}, + "_@jest_console@24.9.0@@jest": {}, + "_@jest_core@24.9.0@@jest": {}, + "_@jest_environment@24.9.0@@jest": {}, + "_@jest_fake-timers@24.9.0@@jest": {}, + "_@jest_reporters@24.9.0@@jest": {}, + "_@jest_source-map@24.9.0@@jest": {}, + "_@jest_test-result@24.9.0@@jest": {}, + "_@jest_test-sequencer@24.9.0@@jest": {}, + "_@jest_transform@24.9.0@@jest": {}, + "_@jest_types@24.9.0@@jest": {}, + "_@mrmlnc_readdir-enhanced@2.2.1@@mrmlnc": {}, + "_@nodelib_fs.stat@1.1.3@@nodelib": {}, + "_@soda_friendly-errors-webpack-plugin@1.8.0@@soda": {}, + "_@soda_get-current-script@1.0.2@@soda": {}, + "_@types_babel__core@7.1.14@@types": {}, + "_@types_babel__generator@7.6.2@@types": {}, + "_@types_babel__template@7.4.0@@types": {}, + "_@types_babel__traverse@7.11.1@@types": {}, + "_@types_glob@7.1.3@@types": {}, + "_@types_istanbul-lib-coverage@2.0.3@@types": {}, + "_@types_istanbul-lib-report@3.0.0@@types": {}, + "_@types_istanbul-reports@1.1.2@@types": {}, + "_@types_jest@24.9.1@@types": {}, + "_@types_json-schema@7.0.7@@types": {}, + "_@types_minimatch@3.0.4@@types": {}, + "_@types_node@15.12.2@@types": {}, + "_@types_normalize-package-data@2.4.0@@types": {}, + "_@types_q@1.5.4@@types": {}, + "_@types_stack-utils@1.0.1@@types": {}, + "_@types_strip-bom@3.0.0@@types": {}, + "_@types_strip-json-comments@0.0.30@@types": {}, + "_@types_yargs-parser@20.2.0@@types": {}, + "_@types_yargs@13.0.11@@types": {}, + "_@vue_babel-helper-vue-jsx-merge-props@1.2.1@@vue": {}, + "_@vue_babel-helper-vue-transform-on@1.0.2@@vue": {}, + "_@vue_babel-plugin-jsx@1.0.6@@vue": {}, + "_@vue_babel-plugin-transform-vue-jsx@1.2.1@@vue": {}, + "_@vue_babel-preset-app@4.5.13@@vue": {}, + "_@vue_babel-preset-jsx@1.2.4@@vue": {}, + "_@vue_babel-sugar-composition-api-inject-h@1.2.1@@vue": {}, + "_@vue_babel-sugar-composition-api-render-instance@1.2.4@@vue": {}, + "_@vue_babel-sugar-functional-vue@1.2.2@@vue": {}, + "_@vue_babel-sugar-inject-h@1.2.2@@vue": {}, + "_@vue_babel-sugar-v-model@1.2.3@@vue": {}, + "_@vue_babel-sugar-v-on@1.2.3@@vue": {}, + "_@vue_cli-overlay@4.5.13@@vue": {}, + "_@vue_cli-plugin-babel@4.4.4@@vue": {}, + "_@vue_cli-plugin-eslint@4.4.4@@vue": {}, + "_@vue_cli-plugin-router@4.5.13@@vue": {}, + "_@vue_cli-plugin-unit-jest@4.4.4@@vue": {}, + "_@vue_cli-plugin-vuex@4.5.13@@vue": {}, + "_@vue_cli-service@4.4.4@@vue": {}, + "_@vue_cli-shared-utils@4.5.13@@vue": {}, + "_@vue_component-compiler-utils@3.2.1@@vue": {}, + "_@vue_preload-webpack-plugin@1.1.2@@vue": {}, + "_@vue_test-utils@1.0.0-beta.29@@vue": {}, + "_@vue_web-component-wrapper@1.3.0@@vue": {}, + "_@webassemblyjs_ast@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_floating-point-hex-parser@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-api-error@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-buffer@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-code-frame@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-fsm@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-module-context@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-wasm-bytecode@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_helper-wasm-section@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_ieee754@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_leb128@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_utf8@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_wasm-edit@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_wasm-gen@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_wasm-opt@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_wasm-parser@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_wast-parser@1.9.0@@webassemblyjs": {}, + "_@webassemblyjs_wast-printer@1.9.0@@webassemblyjs": {}, + "_@xtuc_ieee754@1.2.0@@xtuc": {}, + "_@xtuc_long@4.2.2@@xtuc": {}, + "_abab@2.0.5@abab": { + "version": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "_abbrev@1.1.1@abbrev": { + "version": "https://registry.nlark.com/abbrev/download/abbrev-1.1.1.tgz" + }, + "_accepts@1.3.7@accepts": { + "version": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": { + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + } + } + }, + "_acorn-globals@4.3.4@acorn-globals": { + "version": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-6.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-6.2.0.tgz" + } + } + }, + "_acorn-jsx@5.3.1@acorn-jsx": { + "version": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.1.tgz" + }, + "_acorn-walk@6.2.0@acorn-walk": { + "version": "https://registry.nlark.com/acorn-walk/download/acorn-walk-6.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-6.2.0.tgz" + }, + "_acorn-walk@7.2.0@acorn-walk": { + "version": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz" + }, + "_acorn@5.7.4@acorn": { + "version": "https://registry.nlark.com/acorn/download/acorn-5.7.4.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-5.7.4.tgz" + }, + "_acorn@6.4.2@acorn": { + "version": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "_acorn@7.4.1@acorn": { + "version": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "_address@1.1.2@address": { + "version": "https://registry.nlark.com/address/download/address-1.1.2.tgz" + }, + "_aggregate-error@3.1.0@aggregate-error": { + "version": "https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915056089&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz" + } + } + }, + "_ajv-errors@1.0.1@ajv-errors": { + "version": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "_ajv-keywords@3.5.2@ajv-keywords": { + "version": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "_ajv@6.12.6@ajv": { + "version": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "_alphanum-sort@1.0.2@alphanum-sort": { + "version": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "_ansi-colors@3.2.4@ansi-colors": { + "version": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "_ansi-escapes@3.2.0@ansi-escapes": { + "version": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "_ansi-escapes@4.3.2@ansi-escapes": { + "version": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz" + } + } + }, + "_ansi-html@0.0.7@ansi-html": { + "version": "https://registry.nlark.com/ansi-html/download/ansi-html-0.0.7.tgz" + }, + "_ansi-regex@2.1.1@ansi-regex": { + "version": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + }, + "_ansi-regex@3.0.0@ansi-regex": { + "version": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz" + }, + "_ansi-regex@4.1.0@ansi-regex": { + "version": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "_ansi-regex@5.0.0@ansi-regex": { + "version": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + }, + "_ansi-styles@2.2.1@ansi-styles": { + "version": "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz" + }, + "_ansi-styles@3.2.1@ansi-styles": { + "version": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + } + } + }, + "_ansi-styles@4.3.0@ansi-styles": { + "version": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": {} + } + } + }, + "_any-promise@1.3.0@any-promise": { + "version": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + }, + "_anymatch@2.0.0@anymatch": { + "version": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_anymatch@3.1.2@anymatch": { + "version": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "dependencies": { + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + } + } + }, + "_aproba@1.2.0@aproba": { + "version": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "_arch@2.2.0@arch": { + "version": "https://registry.nlark.com/arch/download/arch-2.2.0.tgz" + }, + "_argparse@1.0.10@argparse": { + "version": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz" + } + } + }, + "_arr-diff@2.0.0@arr-diff": { + "version": "https://registry.nlark.com/arr-diff/download/arr-diff-2.0.0.tgz", + "requires": { + "arr-flatten": "^1.0.1" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + } + } + }, + "_arr-diff@4.0.0@arr-diff": { + "version": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "_arr-flatten@1.1.0@arr-flatten": { + "version": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + }, + "_arr-union@3.1.0@arr-union": { + "version": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "_array-equal@1.0.0@array-equal": { + "version": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "_array-flatten@1.1.1@array-flatten": { + "version": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz" + }, + "_array-flatten@2.1.2@array-flatten": { + "version": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz" + }, + "_array-union@1.0.2@array-union": { + "version": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + } + } + }, + "_array-uniq@1.0.3@array-uniq": { + "version": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + }, + "_array-unique@0.2.1@array-unique": { + "version": "https://registry.nlark.com/array-unique/download/array-unique-0.2.1.tgz" + }, + "_array-unique@0.3.2@array-unique": { + "version": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "_arrify@1.0.1@arrify": { + "version": "https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz" + }, + "_asn1.js@5.4.1@asn1.js": { + "version": "https://registry.nlark.com/asn1.js/download/asn1.js-5.4.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "_asn1@0.2.4@asn1": { + "version": "https://registry.npm.taobao.org/asn1/download/asn1-0.2.4.tgz", + "requires": { + "safer-buffer": "~2.1.0" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "_assert-plus@1.0.0@assert-plus": { + "version": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "_assert@1.5.0@assert": { + "version": "https://registry.nlark.com/assert/download/assert-1.5.0.tgz", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.nlark.com/util/download/util-0.10.3.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.10.3.tgz", + "requires": { + "inherits": "2.0.1" + }, + "dependencies": {} + } + } + }, + "_assign-symbols@1.0.0@assign-symbols": { + "version": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "_astral-regex@1.0.0@astral-regex": { + "version": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "_async-each@1.0.3@async-each": { + "version": "https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz" + }, + "_async-limiter@1.0.1@async-limiter": { + "version": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + }, + "_async-validator@1.8.5@async-validator": { + "version": "https://registry.nlark.com/async-validator/download/async-validator-1.8.5.tgz", + "requires": { + "babel-runtime": "6.x" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + } + } + }, + "_async@2.6.3@async": { + "version": "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz", + "requires": { + "lodash": "^4.17.14" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_asynckit@0.4.0@asynckit": { + "version": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz" + }, + "_atob@2.1.2@atob": { + "version": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz" + }, + "_autoprefixer@9.5.1@autoprefixer": { + "version": "https://registry.nlark.com/autoprefixer/download/autoprefixer-9.5.1.tgz", + "requires": { + "browserslist": "^4.5.4", + "caniuse-lite": "^1.0.30000957", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.14", + "postcss-value-parser": "^3.3.1" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz" + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_autoprefixer@9.8.6@autoprefixer": { + "version": "https://registry.nlark.com/autoprefixer/download/autoprefixer-9.8.6.tgz", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz" + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "_aws-sign2@0.7.0@aws-sign2": { + "version": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "_aws4@1.11.0@aws4": { + "version": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "_axios@0.18.1@axios": { + "version": "https://registry.nlark.com/axios/download/axios-0.18.1.tgz", + "requires": { + "follow-redirects": "1.5.10", + "is-buffer": "^2.0.2" + }, + "dependencies": { + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.5.10.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.5.10.tgz", + "requires": { + "debug": "=3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.1.0.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + } + } + }, + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-2.0.5.tgz" + } + } + }, + "_babel-code-frame@6.26.0@babel-code-frame": { + "version": "https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-3.0.2.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-3.0.2.tgz" + } + } + }, + "_babel-core@7.0.0-bridge.0@babel-core": { + "version": "https://registry.nlark.com/babel-core/download/babel-core-7.0.0-bridge.0.tgz" + }, + "_babel-eslint@10.1.0@babel-eslint": { + "version": "https://registry.nlark.com/babel-eslint/download/babel-eslint-10.1.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623281031217&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz", + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623281025824&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623281027146&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + } + } + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "@babel/helper-validator-identifier": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + } + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": { + "is-core-module": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": {} + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + } + } + } + } + }, + "_babel-generator@6.26.1@babel-generator": { + "version": "https://registry.nlark.com/babel-generator/download/babel-generator-6.26.1.tgz", + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + }, + "dependencies": { + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/detect-indent/download/detect-indent-4.0.0.tgz", + "requires": { + "repeating": "^2.0.0" + }, + "dependencies": { + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/repeating/download/repeating-2.0.1.tgz", + "requires": { + "is-finite": "^1.0.0" + }, + "dependencies": { + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-finite/download/is-finite-1.1.0.tgz" + } + } + } + } + }, + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-1.3.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/trim-right/download/trim-right-1.0.1.tgz?cache=0&sync_timestamp=1619002842644&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftrim-right%2Fdownload%2Ftrim-right-1.0.1.tgz" + } + } + }, + "_babel-helper-vue-jsx-merge-props@2.0.3@babel-helper-vue-jsx-merge-props": { + "version": "https://registry.nlark.com/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz" + }, + "_babel-jest@23.6.0@babel-jest": { + "version": "https://registry.nlark.com/babel-jest/download/babel-jest-23.6.0.tgz", + "requires": { + "babel-plugin-istanbul": "^4.1.6", + "babel-preset-jest": "^23.2.0" + }, + "dependencies": { + "babel-plugin-istanbul": { + "version": "4.1.6", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-4.1.6.tgz", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.13.0", + "find-up": "^2.1.0", + "istanbul-lib-instrument": "^1.10.1", + "test-exclude": "^4.2.1" + }, + "dependencies": { + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "requires": { + "locate-path": "^2.0.0" + }, + "dependencies": { + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz", + "requires": { + "p-limit": "^1.1.0" + }, + "dependencies": { + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz", + "requires": { + "p-try": "^1.0.0" + }, + "dependencies": { + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz" + } + } + } + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + } + } + }, + "istanbul-lib-instrument": { + "version": "1.10.2", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-1.10.2.tgz", + "requires": { + "babel-generator": "^6.18.0", + "babel-template": "^6.16.0", + "babel-traverse": "^6.18.0", + "babel-types": "^6.18.0", + "babylon": "^6.18.0", + "istanbul-lib-coverage": "^1.2.1", + "semver": "^5.3.0" + }, + "dependencies": { + "babel-generator": { + "version": "6.26.1", + "resolved": "https://registry.nlark.com/babel-generator/download/babel-generator-6.26.1.tgz", + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + }, + "dependencies": { + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/detect-indent/download/detect-indent-4.0.0.tgz", + "requires": { + "repeating": "^2.0.0" + }, + "dependencies": {} + }, + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-1.3.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/trim-right/download/trim-right-1.0.1.tgz?cache=0&sync_timestamp=1619002842644&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftrim-right%2Fdownload%2Ftrim-right-1.0.1.tgz" + } + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": {} + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.nlark.com/globals/download/globals-9.18.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-9.18.0.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "istanbul-lib-coverage": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-1.2.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + } + } + }, + "test-exclude": { + "version": "4.2.3", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-4.2.3.tgz", + "requires": { + "arrify": "^1.0.1", + "micromatch": "^2.3.11", + "object-assign": "^4.1.0", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1" + }, + "dependencies": { + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz" + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-2.3.11.tgz", + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-2.0.0.tgz", + "requires": { + "arr-flatten": "^1.0.1" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + } + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.2.1.tgz" + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.nlark.com/braces/download/braces-1.8.5.tgz", + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.nlark.com/expand-range/download/expand-range-1.8.2.tgz", + "requires": { + "fill-range": "^2.1.0" + }, + "dependencies": { + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-2.2.4.tgz", + "requires": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-2.1.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + } + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + }, + "randomatic": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/randomatic/download/randomatic-3.1.1.tgz", + "requires": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-4.0.0.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "math-random": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/math-random/download/math-random-1.0.4.tgz" + } + } + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + } + } + } + } + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/preserve/download/preserve-0.2.0.tgz" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + } + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/expand-brackets/download/expand-brackets-0.1.5.tgz", + "requires": { + "is-posix-bracket": "^0.1.0" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz" + } + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/extglob/download/extglob-0.3.2.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/filename-regex/download/filename-regex-2.0.1.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz" + } + } + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/object.omit/download/object.omit-2.0.1.tgz", + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz", + "requires": { + "for-in": "^1.0.1" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/parse-glob/download/parse-glob-3.0.4.tgz", + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/glob-base/download/glob-base-0.3.0.tgz", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-2.0.0.tgz", + "requires": { + "is-glob": "^2.0.0" + }, + "dependencies": { + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + } + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + } + } + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/is-dotfile/download/is-dotfile-1.0.3.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + } + } + }, + "regex-cache": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/regex-cache/download/regex-cache-0.4.4.tgz", + "requires": { + "is-equal-shallow": "^0.1.3" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz", + "requires": { + "is-primitive": "^2.0.0" + }, + "dependencies": { + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-primitive/download/is-primitive-2.0.0.tgz" + } + } + } + } + } + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-1.0.1.tgz", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-1.1.2.tgz", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-2.1.0.tgz", + "requires": { + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-1.1.0.tgz", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/load-json-file/download/load-json-file-1.1.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-2.2.0.tgz", + "requires": { + "error-ex": "^1.2.0" + }, + "dependencies": { + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz" + } + } + } + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-2.0.0.tgz", + "requires": { + "is-utf8": "^0.2.0" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz" + } + } + } + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-1.1.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + } + } + } + } + } + } + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-1.0.1.tgz" + } + } + } + } + }, + "babel-preset-jest": { + "version": "23.2.0", + "resolved": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-23.2.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-23.2.0.tgz", + "requires": { + "babel-plugin-jest-hoist": "^23.2.0", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" + }, + "dependencies": { + "babel-plugin-jest-hoist": { + "version": "23.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-23.2.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-23.2.0.tgz" + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + } + } + } + } + }, + "_babel-jest@24.9.0@babel-jest": { + "version": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": { + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/babel__core": { + "version": "7.1.14", + "resolved": "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.14.tgz?cache=0&sync_timestamp=1621240678089&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__core%2Fdownload%2F%40types%2Fbabel__core-7.1.14.tgz", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + }, + "dependencies": {} + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": {} + }, + "babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-24.9.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-24.9.0.tgz", + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "_babel-loader@8.2.2@babel-loader": { + "version": "https://registry.nlark.com/babel-loader/download/babel-loader-8.2.2.tgz", + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "_babel-messages@6.23.0@babel-messages": { + "version": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-dynamic-import-node@2.3.3@babel-plugin-dynamic-import-node": { + "version": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-istanbul@4.1.6@babel-plugin-istanbul": { + "version": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-4.1.6.tgz", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.13.0", + "find-up": "^2.1.0", + "istanbul-lib-instrument": "^1.10.1", + "test-exclude": "^4.2.1" + }, + "dependencies": { + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "requires": { + "locate-path": "^2.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-instrument": { + "version": "1.10.2", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-1.10.2.tgz", + "requires": { + "babel-generator": "^6.18.0", + "babel-template": "^6.16.0", + "babel-traverse": "^6.18.0", + "babel-types": "^6.18.0", + "babylon": "^6.18.0", + "istanbul-lib-coverage": "^1.2.1", + "semver": "^5.3.0" + }, + "dependencies": {} + }, + "test-exclude": { + "version": "4.2.3", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-4.2.3.tgz", + "requires": { + "arrify": "^1.0.1", + "micromatch": "^2.3.11", + "object-assign": "^4.1.0", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-istanbul@5.2.0@babel-plugin-istanbul": { + "version": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-jest-hoist@23.2.0@babel-plugin-jest-hoist": { + "version": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-23.2.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-23.2.0.tgz" + }, + "_babel-plugin-jest-hoist@24.9.0@babel-plugin-jest-hoist": { + "version": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-24.9.0.tgz", + "requires": { + "@types/babel__traverse": "^7.0.6" + }, + "dependencies": { + "@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240677670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz", + "requires": { + "@babel/types": "^7.3.0" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-polyfill-corejs2@0.2.2@babel-plugin-polyfill-corejs2": { + "version": "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "_babel-plugin-polyfill-corejs3@0.2.2@babel-plugin-polyfill-corejs3": { + "version": "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.9.1" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-polyfill-regenerator@0.2.2@babel-plugin-polyfill-regenerator": { + "version": "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-syntax-object-rest-spread@6.13.0@babel-plugin-syntax-object-rest-spread": { + "version": "https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + }, + "_babel-plugin-transform-es2015-modules-commonjs@6.26.2@babel-plugin-transform-es2015-modules-commonjs": { + "version": "https://registry.nlark.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + }, + "dependencies": { + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.nlark.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "_babel-plugin-transform-strict-mode@6.24.1@babel-plugin-transform-strict-mode": { + "version": "https://registry.nlark.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "_babel-preset-jest@23.2.0@babel-preset-jest": { + "version": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-23.2.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-23.2.0.tgz", + "requires": { + "babel-plugin-jest-hoist": "^23.2.0", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" + }, + "dependencies": { + "babel-plugin-jest-hoist": { + "version": "23.2.0", + "resolved": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-23.2.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-23.2.0.tgz" + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + } + } + }, + "_babel-preset-jest@24.9.0@babel-preset-jest": { + "version": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-24.9.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-24.9.0.tgz", + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-24.9.0.tgz", + "requires": { + "@types/babel__traverse": "^7.0.6" + }, + "dependencies": {} + } + } + }, + "_babel-runtime@6.26.0@babel-runtime": { + "version": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "_babel-template@6.26.0@babel-template": { + "version": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_babel-traverse@6.26.0@babel-traverse": { + "version": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": {} + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.nlark.com/globals/download/globals-9.18.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-9.18.0.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_babel-types@6.26.0@babel-types": { + "version": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + }, + "_babylon@6.18.0@babylon": { + "version": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "_balanced-match@1.0.2@balanced-match": { + "version": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz" + }, + "_base64-js@1.5.1@base64-js": { + "version": "https://registry.nlark.com/base64-js/download/base64-js-1.5.1.tgz" + }, + "_base@0.11.2@base": { + "version": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/cache-base/download/cache-base-1.0.1.tgz", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": {} + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": {} + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/mixin-deep/download/mixin-deep-1.3.2.tgz", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/pascalcase/download/pascalcase-0.1.1.tgz" + } + } + }, + "_batch@0.6.1@batch": { + "version": "https://registry.nlark.com/batch/download/batch-0.6.1.tgz" + }, + "_bcrypt-pbkdf@1.0.2@bcrypt-pbkdf": { + "version": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "requires": { + "tweetnacl": "^0.14.3" + }, + "dependencies": { + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + } + } + }, + "_bfj@6.1.2@bfj": { + "version": "https://registry.nlark.com/bfj/download/bfj-6.1.2.tgz", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "check-types": { + "version": "8.0.3", + "resolved": "https://registry.nlark.com/check-types/download/check-types-8.0.3.tgz" + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz" + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tryer/download/tryer-1.0.1.tgz" + } + } + }, + "_big.js@3.2.0@big.js": { + "version": "https://registry.nlark.com/big.js/download/big.js-3.2.0.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-3.2.0.tgz" + }, + "_big.js@5.2.2@big.js": { + "version": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "_binary-extensions@1.13.1@binary-extensions": { + "version": "https://registry.nlark.com/binary-extensions/download/binary-extensions-1.13.1.tgz" + }, + "_binary-extensions@2.2.0@binary-extensions": { + "version": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz" + }, + "_bindings@1.5.0@bindings": { + "version": "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz", + "requires": { + "file-uri-to-path": "1.0.0" + }, + "dependencies": { + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz" + } + } + }, + "_bluebird@3.7.2@bluebird": { + "version": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "_bn.js@4.12.0@bn.js": { + "version": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "_bn.js@5.2.0@bn.js": { + "version": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "_body-parser@1.19.0@body-parser": { + "version": "https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/raw-body/download/raw-body-2.4.0.tgz", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": {} + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": {} + } + } + }, + "_bonjour@3.5.0@bonjour": { + "version": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.1.tgz", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "dependencies": {} + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/dns-equal/download/dns-equal-1.0.0.tgz" + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "requires": { + "buffer-indexof": "^1.0.0" + }, + "dependencies": {} + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.nlark.com/multicast-dns/download/multicast-dns-6.2.3.tgz", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "dependencies": {} + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz" + } + } + }, + "_boolbase@1.0.0@boolbase": { + "version": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "_brace-expansion@1.1.11@brace-expansion": { + "version": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz" + } + } + }, + "_braces@1.8.5@braces": { + "version": "https://registry.nlark.com/braces/download/braces-1.8.5.tgz", + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + }, + "dependencies": { + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.nlark.com/expand-range/download/expand-range-1.8.2.tgz", + "requires": { + "fill-range": "^2.1.0" + }, + "dependencies": {} + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/preserve/download/preserve-0.2.0.tgz" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + } + } + }, + "_braces@2.3.2@braces": { + "version": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": {} + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "_braces@3.0.2@braces": { + "version": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "requires": { + "fill-range": "^7.0.1" + }, + "dependencies": { + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "requires": { + "to-regex-range": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "_brorand@1.1.0@brorand": { + "version": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + }, + "_browser-process-hrtime@1.0.0@browser-process-hrtime": { + "version": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz" + }, + "_browser-resolve@1.11.3@browser-resolve": { + "version": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.1.7.tgz" + } + } + }, + "_browserify-aes@1.2.0@browserify-aes": { + "version": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_browserify-cipher@1.0.1@browserify-cipher": { + "version": "https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + }, + "dependencies": { + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + } + } + }, + "_browserify-des@1.0.2@browserify-des": { + "version": "https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/des.js/download/des.js-1.0.1.tgz", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_browserify-rsa@4.1.0@browserify-rsa": { + "version": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "_browserify-sign@4.2.1@browserify-sign": { + "version": "https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_browserify-zlib@0.2.0@browserify-zlib": { + "version": "https://registry.nlark.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz", + "requires": { + "pako": "~1.0.5" + }, + "dependencies": { + "pako": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/pako/download/pako-1.0.11.tgz" + } + } + }, + "_browserslist@4.16.6@browserslist": { + "version": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "_bs-logger@0.2.6@bs-logger": { + "version": "https://registry.nlark.com/bs-logger/download/bs-logger-0.2.6.tgz", + "requires": { + "fast-json-stable-stringify": "2.x" + }, + "dependencies": { + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + } + } + }, + "_bser@2.1.1@bser": { + "version": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "requires": { + "node-int64": "^0.4.0" + }, + "dependencies": { + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz" + } + } + }, + "_buffer-from@1.1.1@buffer-from": { + "version": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "_buffer-indexof@1.1.1@buffer-indexof": { + "version": "https://registry.nlark.com/buffer-indexof/download/buffer-indexof-1.1.1.tgz" + }, + "_buffer-json@2.0.0@buffer-json": { + "version": "https://registry.nlark.com/buffer-json/download/buffer-json-2.0.0.tgz" + }, + "_buffer-xor@1.0.3@buffer-xor": { + "version": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz" + }, + "_buffer@4.9.2@buffer": { + "version": "https://registry.nlark.com/buffer/download/buffer-4.9.2.tgz", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + }, + "dependencies": { + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/base64-js/download/base64-js-1.5.1.tgz" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + }, + "_builtin-status-codes@3.0.0@builtin-status-codes": { + "version": "https://registry.npm.taobao.org/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz" + }, + "_bytes@3.0.0@bytes": { + "version": "https://registry.npm.taobao.org/bytes/download/bytes-3.0.0.tgz" + }, + "_bytes@3.1.0@bytes": { + "version": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "_cacache@12.0.4@cacache": { + "version": "https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/mississippi/download/mississippi-3.0.0.tgz", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": {} + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.nlark.com/ssri/download/ssri-6.0.2.tgz", + "requires": { + "figgy-pudding": "^3.5.1" + }, + "dependencies": {} + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": {} + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + } + } + }, + "_cacache@13.0.1@cacache": { + "version": "https://registry.nlark.com/cacache/download/cacache-13.0.1.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-13.0.1.tgz", + "requires": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/fs-minipass/download/fs-minipass-2.1.0.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/minipass-collect/download/minipass-collect-1.0.2.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/minipass-flush/download/minipass-flush-1.0.5.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/minipass-pipeline/download/minipass-pipeline-1.2.4.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": {} + }, + "p-map": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/p-map/download/p-map-3.0.0.tgz", + "requires": { + "aggregate-error": "^3.0.0" + }, + "dependencies": {} + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "ssri": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz", + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "dependencies": {} + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_cache-base@1.0.1@cache-base": { + "version": "https://registry.nlark.com/cache-base/download/cache-base-1.0.1.tgz", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": { + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "dependencies": {} + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-value/download/has-value-1.0.0.tgz", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": {} + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/to-object-path/download/to-object-path-0.3.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/union-value/download/union-value-1.0.1.tgz", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": {} + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/unset-value/download/unset-value-1.0.0.tgz", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_cache-loader@4.1.0@cache-loader": { + "version": "https://registry.nlark.com/cache-loader/download/cache-loader-4.1.0.tgz", + "requires": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "dependencies": { + "buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/buffer-json/download/buffer-json-2.0.0.tgz" + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "_call-bind@1.0.2@call-bind": { + "version": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_call-me-maybe@1.0.1@call-me-maybe": { + "version": "https://registry.nlark.com/call-me-maybe/download/call-me-maybe-1.0.1.tgz" + }, + "_caller-callsite@2.0.0@caller-callsite": { + "version": "https://registry.nlark.com/caller-callsite/download/caller-callsite-2.0.0.tgz", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-2.0.0.tgz" + } + } + }, + "_caller-path@2.0.0@caller-path": { + "version": "https://registry.nlark.com/caller-path/download/caller-path-2.0.0.tgz", + "requires": { + "caller-callsite": "^2.0.0" + }, + "dependencies": { + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/caller-callsite/download/caller-callsite-2.0.0.tgz", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_callsites@2.0.0@callsites": { + "version": "https://registry.nlark.com/callsites/download/callsites-2.0.0.tgz" + }, + "_callsites@3.1.0@callsites": { + "version": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "_camel-case@3.0.0@camel-case": { + "version": "https://registry.nlark.com/camel-case/download/camel-case-3.0.0.tgz", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + }, + "dependencies": { + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": {} + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/upper-case/download/upper-case-1.1.3.tgz" + } + } + }, + "_camelcase@4.1.0@camelcase": { + "version": "https://registry.npm.taobao.org/camelcase/download/camelcase-4.1.0.tgz" + }, + "_camelcase@5.3.1@camelcase": { + "version": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "_camelcase@6.2.0@camelcase": { + "version": "https://registry.npm.taobao.org/camelcase/download/camelcase-6.2.0.tgz" + }, + "_caniuse-api@3.0.0@caniuse-api": { + "version": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz" + } + } + }, + "_caniuse-lite@1.0.30001236@caniuse-lite": { + "version": "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001236.tgz" + }, + "_capture-exit@2.0.0@capture-exit": { + "version": "https://registry.nlark.com/capture-exit/download/capture-exit-2.0.0.tgz", + "requires": { + "rsvp": "^4.8.4" + }, + "dependencies": { + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.nlark.com/rsvp/download/rsvp-4.8.5.tgz" + } + } + }, + "_case-sensitive-paths-webpack-plugin@2.4.0@case-sensitive-paths-webpack-plugin": { + "version": "https://registry.nlark.com/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz" + }, + "_caseless@0.12.0@caseless": { + "version": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "_chalk@1.1.3@chalk": { + "version": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": {} + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-2.0.0.tgz" + } + } + }, + "_chalk@2.3.0@chalk": { + "version": "https://registry.nlark.com/chalk/download/chalk-2.3.0.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.3.0.tgz", + "requires": { + "ansi-styles": "^3.1.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + } + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-4.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-4.5.0.tgz", + "requires": { + "has-flag": "^2.0.0" + }, + "dependencies": { + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-2.0.0.tgz" + } + } + } + } + }, + "_chalk@2.4.2@chalk": { + "version": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_chalk@4.1.1@chalk": { + "version": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": {} + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_chardet@0.7.0@chardet": { + "version": "https://registry.nlark.com/chardet/download/chardet-0.7.0.tgz" + }, + "_check-types@8.0.3@check-types": { + "version": "https://registry.nlark.com/check-types/download/check-types-8.0.3.tgz" + }, + "_chokidar@2.1.8@chokidar": { + "version": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/fsevents/download/fsevents-1.2.13.tgz", + "optional": true + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-1.0.1.tgz", + "requires": { + "binary-extensions": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-2.2.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": {} + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/upath/download/upath-1.2.0.tgz" + } + } + }, + "_chokidar@3.5.1@chokidar": { + "version": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "dependencies": {} + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "requires": { + "fill-range": "^7.0.1" + }, + "dependencies": {} + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": {} + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "requires": { + "binary-extensions": "^2.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-3.5.0.tgz", + "requires": { + "picomatch": "^2.2.1" + }, + "dependencies": {} + } + } + }, + "_chownr@1.1.4@chownr": { + "version": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "_chrome-trace-event@1.0.3@chrome-trace-event": { + "version": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "_ci-info@1.6.0@ci-info": { + "version": "https://registry.nlark.com/ci-info/download/ci-info-1.6.0.tgz" + }, + "_ci-info@2.0.0@ci-info": { + "version": "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz" + }, + "_cipher-base@1.0.4@cipher-base": { + "version": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_class-utils@0.3.6@class-utils": { + "version": "https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/static-extend/download/static-extend-0.1.2.tgz", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": {} + } + } + }, + "_clean-css@4.2.3@clean-css": { + "version": "https://registry.nlark.com/clean-css/download/clean-css-4.2.3.tgz", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_clean-stack@2.2.0@clean-stack": { + "version": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915056089&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz" + }, + "_cli-cursor@2.1.0@cli-cursor": { + "version": "https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz", + "requires": { + "restore-cursor": "^2.0.0" + }, + "dependencies": { + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-2.0.0.tgz", + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "_cli-cursor@3.1.0@cli-cursor": { + "version": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz", + "requires": { + "restore-cursor": "^3.1.0" + }, + "dependencies": { + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "_cli-highlight@2.1.11@cli-highlight": { + "version": "https://registry.nlark.com/cli-highlight/download/cli-highlight-2.1.11.tgz", + "requires": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "dependencies": { + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": {} + }, + "highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.nlark.com/highlight.js/download/highlight.js-10.7.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhighlight.js%2Fdownload%2Fhighlight.js-10.7.3.tgz" + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/mz/download/mz-2.7.0.tgz", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + }, + "dependencies": {} + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-5.1.1.tgz" + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": {} + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "dependencies": {} + } + } + }, + "_cli-spinners@2.6.0@cli-spinners": { + "version": "https://registry.nlark.com/cli-spinners/download/cli-spinners-2.6.0.tgz" + }, + "_cli-width@3.0.0@cli-width": { + "version": "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz" + }, + "_clipboardy@2.3.0@clipboardy": { + "version": "https://registry.nlark.com/clipboardy/download/clipboardy-2.3.0.tgz", + "requires": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + }, + "dependencies": { + "arch": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/arch/download/arch-2.2.0.tgz" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_cliui@5.0.0@cliui": { + "version": "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-5.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_cliui@6.0.0@cliui": { + "version": "https://registry.npm.taobao.org/cliui/download/cliui-6.0.0.tgz", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-6.2.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + } + } + }, + "_cliui@7.0.4@cliui": { + "version": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + } + } + }, + "_clone-deep@4.0.1@clone-deep": { + "version": "https://registry.nlark.com/clone-deep/download/clone-deep-4.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/shallow-clone/download/shallow-clone-3.0.1.tgz", + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + } + } + }, + "_clone@1.0.4@clone": { + "version": "https://registry.npm.taobao.org/clone/download/clone-1.0.4.tgz" + }, + "_clone@2.1.2@clone": { + "version": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "_co@4.6.0@co": { + "version": "https://registry.nlark.com/co/download/co-4.6.0.tgz" + }, + "_coa@2.0.2@coa": { + "version": "https://registry.nlark.com/coa/download/coa-2.0.2.tgz", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.nlark.com/@types/q/download/@types/q-1.5.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fq%2Fdownload%2F%40types%2Fq-1.5.4.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/q/download/q-1.5.1.tgz" + } + } + }, + "_collection-visit@1.0.0@collection-visit": { + "version": "https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "dependencies": { + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/map-visit/download/map-visit-1.0.0.tgz", + "requires": { + "object-visit": "^1.0.0" + }, + "dependencies": {} + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_color-convert@1.9.3@color-convert": { + "version": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz" + } + } + }, + "_color-convert@2.0.1@color-convert": { + "version": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + } + } + }, + "_color-name@1.1.3@color-name": { + "version": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz" + }, + "_color-name@1.1.4@color-name": { + "version": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + }, + "_color-string@1.5.5@color-string": { + "version": "https://registry.nlark.com/color-string/download/color-string-1.5.5.tgz", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": {} + } + } + }, + "_color@3.1.3@color": { + "version": "https://registry.nlark.com/color/download/color-3.1.3.tgz", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + }, + "color-string": { + "version": "1.5.5", + "resolved": "https://registry.nlark.com/color-string/download/color-string-1.5.5.tgz", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + }, + "dependencies": {} + } + } + }, + "_colorette@1.2.2@colorette": { + "version": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "_combined-stream@1.0.8@combined-stream": { + "version": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz" + } + } + }, + "_commander@2.17.1@commander": { + "version": "https://registry.nlark.com/commander/download/commander-2.17.1.tgz" + }, + "_commander@2.19.0@commander": { + "version": "https://registry.nlark.com/commander/download/commander-2.19.0.tgz" + }, + "_commander@2.20.3@commander": { + "version": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "_commander@7.2.0@commander": { + "version": "https://registry.nlark.com/commander/download/commander-7.2.0.tgz" + }, + "_commondir@1.0.1@commondir": { + "version": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "_component-emitter@1.3.0@component-emitter": { + "version": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "_compressible@2.0.18@compressible": { + "version": "https://registry.npm.taobao.org/compressible/download/compressible-2.0.18.tgz", + "requires": { + "mime-db": ">= 1.43.0 < 2" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "_compression@1.7.4@compression": { + "version": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.0.0.tgz" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npm.taobao.org/compressible/download/compressible-2.0.18.tgz", + "requires": { + "mime-db": ">= 1.43.0 < 2" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "_concat-map@0.0.1@concat-map": { + "version": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz" + }, + "_concat-stream@1.6.2@concat-stream": { + "version": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz" + } + } + }, + "_condense-newlines@0.2.1@condense-newlines": { + "version": "https://registry.nlark.com/condense-newlines/download/condense-newlines-0.2.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-whitespace": "^0.3.0", + "kind-of": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "is-whitespace": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/is-whitespace/download/is-whitespace-0.3.0.tgz" + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_config-chain@1.1.13@config-chain": { + "version": "https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz?cache=0&sync_timestamp=1622746031285&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconfig-chain%2Fdownload%2Fconfig-chain-1.1.13.tgz", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.nlark.com/ini/download/ini-1.3.8.tgz" + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/proto-list/download/proto-list-1.2.4.tgz" + } + } + }, + "_connect-history-api-fallback@1.6.0@connect-history-api-fallback": { + "version": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz" + }, + "_connect@3.6.6@connect": { + "version": "https://registry.nlark.com/connect/download/connect-3.6.6.tgz", + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.0", + "parseurl": "~1.3.2", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "finalhandler": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.0.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.1", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.3.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.3.1.tgz" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + } + } + }, + "_console-browserify@1.2.0@console-browserify": { + "version": "https://registry.nlark.com/console-browserify/download/console-browserify-1.2.0.tgz" + }, + "_consolidate@0.15.1@consolidate": { + "version": "https://registry.nlark.com/consolidate/download/consolidate-0.15.1.tgz", + "requires": { + "bluebird": "^3.1.1" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + } + } + }, + "_constants-browserify@1.0.0@constants-browserify": { + "version": "https://registry.nlark.com/constants-browserify/download/constants-browserify-1.0.0.tgz" + }, + "_content-disposition@0.5.3@content-disposition": { + "version": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "_content-type@1.0.4@content-type": { + "version": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "_convert-source-map@1.7.0@convert-source-map": { + "version": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "_cookie-signature@1.0.6@cookie-signature": { + "version": "https://registry.nlark.com/cookie-signature/download/cookie-signature-1.0.6.tgz" + }, + "_cookie@0.4.0@cookie": { + "version": "https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz" + }, + "_copy-concurrently@1.0.5@copy-concurrently": { + "version": "https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": {} + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "_copy-descriptor@0.1.1@copy-descriptor": { + "version": "https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz" + }, + "_copy-webpack-plugin@5.1.2@copy-webpack-plugin": { + "version": "https://registry.nlark.com/copy-webpack-plugin/download/copy-webpack-plugin-5.1.2.tgz", + "requires": { + "cacache": "^12.0.3", + "find-cache-dir": "^2.1.0", + "glob-parent": "^3.1.0", + "globby": "^7.1.1", + "is-glob": "^4.0.1", + "loader-utils": "^1.2.3", + "minimatch": "^3.0.4", + "normalize-path": "^3.0.0", + "p-limit": "^2.2.1", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": {} + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": {} + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": {} + }, + "globby": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/globby/download/globby-7.1.1.tgz", + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": {} + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + } + } + }, + "_core-js-compat@3.14.0@core-js-compat": { + "version": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + } + } + }, + "_core-js@2.6.12@core-js": { + "version": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "_core-js@3.14.0@core-js": { + "version": "https://registry.nlark.com/core-js/download/core-js-3.14.0.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-3.14.0.tgz" + }, + "_core-js@3.6.5@core-js": { + "version": "https://registry.nlark.com/core-js/download/core-js-3.6.5.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-3.6.5.tgz" + }, + "_core-util-is@1.0.2@core-util-is": { + "version": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "_cosmiconfig@5.2.1@cosmiconfig": { + "version": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-fresh/download/import-fresh-2.0.0.tgz", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": {} + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": {} + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_create-ecdh@4.0.4@create-ecdh": { + "version": "https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_create-hash@1.2.0@create-hash": { + "version": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "_create-hmac@1.1.7@create-hmac": { + "version": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "_cross-spawn@5.1.0@cross-spawn": { + "version": "https://registry.nlark.com/cross-spawn/download/cross-spawn-5.1.0.tgz", + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": {} + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz", + "requires": { + "shebang-regex": "^1.0.0" + }, + "dependencies": {} + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_cross-spawn@6.0.5@cross-spawn": { + "version": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/nice-try/download/nice-try-1.0.5.tgz" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz", + "requires": { + "shebang-regex": "^1.0.0" + }, + "dependencies": {} + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_cross-spawn@7.0.3@cross-spawn": { + "version": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz", + "requires": { + "shebang-regex": "^3.0.0" + }, + "dependencies": {} + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_crypto-browserify@3.12.0@crypto-browserify": { + "version": "https://registry.nlark.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "dependencies": { + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + }, + "dependencies": {} + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.nlark.com/diffie-hellman/download/diffie-hellman-5.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/public-encrypt/download/public-encrypt-4.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/randomfill/download/randomfill-1.0.4.tgz", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "_css-color-names@0.0.4@css-color-names": { + "version": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "_css-declaration-sorter@4.0.1@css-declaration-sorter": { + "version": "https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz?cache=0&sync_timestamp=1620754721682&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-declaration-sorter%2Fdownload%2Fcss-declaration-sorter-4.0.1.tgz", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz" + } + } + }, + "_css-loader@3.6.0@css-loader": { + "version": "https://registry.nlark.com/css-loader/download/css-loader-3.6.0.tgz?cache=0&sync_timestamp=1621865270658&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-loader%2Fdownload%2Fcss-loader-3.6.0.tgz", + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.0", + "semver": "^6.3.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-2.0.0.tgz", + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": {} + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-3.0.3.tgz", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": {} + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": {} + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-3.0.0.tgz", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "_css-select-base-adapter@0.1.1@css-select-base-adapter": { + "version": "https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz" + }, + "_css-select@2.1.0@css-select": { + "version": "https://registry.nlark.com/css-select/download/css-select-2.1.0.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-2.1.0.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.nlark.com/css-what/download/css-what-3.4.2.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-3.4.2.tgz" + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": {} + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz", + "requires": { + "boolbase": "~1.0.0" + }, + "dependencies": {} + } + } + }, + "_css-select@4.1.3@css-select": { + "version": "https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-4.1.3.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "css-what": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/css-what/download/css-what-5.0.1.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-5.0.1.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": {} + }, + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-2.0.0.tgz", + "requires": { + "boolbase": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_css-tree@1.0.0-alpha.28@css-tree": { + "version": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.28.tgz", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "dependencies": { + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-1.1.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-1.1.4.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "_css-tree@1.0.0-alpha.29@css-tree": { + "version": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.29.tgz", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "dependencies": { + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-1.1.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-1.1.4.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "_css-tree@1.0.0-alpha.37@css-tree": { + "version": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.37.tgz", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.4.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_css-tree@1.1.3@css-tree": { + "version": "https://registry.nlark.com/css-tree/download/css-tree-1.1.3.tgz", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": { + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.14.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.14.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_css-url-regex@1.1.0@css-url-regex": { + "version": "https://registry.nlark.com/css-url-regex/download/css-url-regex-1.1.0.tgz" + }, + "_css-what@3.4.2@css-what": { + "version": "https://registry.nlark.com/css-what/download/css-what-3.4.2.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-3.4.2.tgz" + }, + "_css-what@5.0.1@css-what": { + "version": "https://registry.nlark.com/css-what/download/css-what-5.0.1.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-5.0.1.tgz" + }, + "_css@2.2.4@css": { + "version": "https://registry.nlark.com/css/download/css-2.2.4.tgz", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + }, + "_cssesc@3.0.0@cssesc": { + "version": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "_cssnano-preset-default@4.0.8@cssnano-preset-default": { + "version": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz?cache=0&sync_timestamp=1620754721682&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-declaration-sorter%2Fdownload%2Fcss-declaration-sorter-4.0.1.tgz", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": {} + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": {} + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz?cache=0&sync_timestamp=1622236593947&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-colormin%2Fdownload%2Fpostcss-colormin-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.nlark.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": {} + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": {} + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": {} + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz?cache=0&sync_timestamp=1622236593132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-svgo%2Fdownload%2Fpostcss-svgo-4.0.3.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": {} + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_cssnano-util-get-arguments@4.0.0@cssnano-util-get-arguments": { + "version": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "_cssnano-util-get-match@4.0.0@cssnano-util-get-match": { + "version": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "_cssnano-util-raw-cache@4.0.1@cssnano-util-raw-cache": { + "version": "https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_cssnano-util-same-parent@4.0.1@cssnano-util-same-parent": { + "version": "https://registry.nlark.com/cssnano-util-same-parent/download/cssnano-util-same-parent-4.0.1.tgz" + }, + "_cssnano@4.1.11@cssnano": { + "version": "https://registry.nlark.com/cssnano/download/cssnano-4.1.11.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": {} + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": {} + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_csso@3.5.1@csso": { + "version": "https://registry.nlark.com/csso/download/csso-3.5.1.tgz", + "requires": { + "css-tree": "1.0.0-alpha.29" + }, + "dependencies": { + "css-tree": { + "version": "1.0.0-alpha.29", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.29.tgz", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "dependencies": { + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-1.1.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-1.1.4.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + } + } + }, + "_csso@4.2.0@csso": { + "version": "https://registry.nlark.com/csso/download/csso-4.2.0.tgz", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.1.3.tgz", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": {} + } + } + }, + "_cssom@0.3.8@cssom": { + "version": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + }, + "_cssom@0.4.4@cssom": { + "version": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz" + }, + "_cssstyle@1.4.0@cssstyle": { + "version": "https://registry.nlark.com/cssstyle/download/cssstyle-1.4.0.tgz", + "requires": { + "cssom": "0.3.x" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + } + } + }, + "_cssstyle@2.3.0@cssstyle": { + "version": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + } + } + }, + "_cyclist@1.0.1@cyclist": { + "version": "https://registry.nlark.com/cyclist/download/cyclist-1.0.1.tgz" + }, + "_dashdash@1.14.1@dashdash": { + "version": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + } + } + }, + "_data-urls@1.1.0@data-urls": { + "version": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + } + } + }, + "_de-indent@1.0.2@de-indent": { + "version": "https://registry.nlark.com/de-indent/download/de-indent-1.0.2.tgz" + }, + "_deasync@0.1.21@deasync": { + "version": "https://registry.nlark.com/deasync/download/deasync-0.1.21.tgz", + "requires": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + }, + "dependencies": { + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz", + "requires": { + "file-uri-to-path": "1.0.0" + }, + "dependencies": {} + }, + "node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/node-addon-api/download/node-addon-api-1.7.2.tgz" + } + } + }, + "_debug@2.6.9@debug": { + "version": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "_debug@3.1.0@debug": { + "version": "https://registry.npm.taobao.org/debug/download/debug-3.1.0.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "_debug@3.2.7@debug": { + "version": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.3.tgz" + } + } + }, + "_debug@4.3.1@debug": { + "version": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "_decamelize@1.2.0@decamelize": { + "version": "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz" + }, + "_decode-uri-component@0.2.0@decode-uri-component": { + "version": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz" + }, + "_deep-equal@1.1.1@deep-equal": { + "version": "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.1.tgz", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "dependencies": { + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.0.tgz", + "requires": { + "call-bind": "^1.0.0" + }, + "dependencies": {} + }, + "is-date-object": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": {} + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + } + } + }, + "_deep-is@0.1.3@deep-is": { + "version": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz" + }, + "_deepmerge@1.3.2@deepmerge": { + "version": "https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz" + }, + "_deepmerge@1.5.2@deepmerge": { + "version": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz" + }, + "_deepmerge@4.2.2@deepmerge": { + "version": "https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz" + }, + "_default-gateway@4.2.0@default-gateway": { + "version": "https://registry.nlark.com/default-gateway/download/default-gateway-4.2.0.tgz", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": { + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + } + } + }, + "_default-gateway@5.0.5@default-gateway": { + "version": "https://registry.nlark.com/default-gateway/download/default-gateway-5.0.5.tgz", + "requires": { + "execa": "^3.3.0" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/execa/download/execa-3.4.0.tgz", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_defaults@1.0.3@defaults": { + "version": "https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz", + "requires": { + "clone": "^1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-1.0.4.tgz" + } + } + }, + "_define-properties@1.1.3@define-properties": { + "version": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "_define-property@0.2.5@define-property": { + "version": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_define-property@1.0.0@define-property": { + "version": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + } + } + }, + "_define-property@2.0.2@define-property": { + "version": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "_del@4.1.1@del": { + "version": "https://registry.nlark.com/del/download/del-4.1.1.tgz", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": {} + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/globby/download/globby-6.1.0.tgz", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-path-in-cwd/download/is-path-in-cwd-2.1.0.tgz?cache=0&sync_timestamp=1620047156679&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-in-cwd%2Fdownload%2Fis-path-in-cwd-2.1.0.tgz", + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": {} + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/p-map/download/p-map-2.1.0.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + } + } + }, + "_delayed-stream@1.0.0@delayed-stream": { + "version": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz" + }, + "_depd@1.1.2@depd": { + "version": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "_des.js@1.0.1@des.js": { + "version": "https://registry.nlark.com/des.js/download/des.js-1.0.1.tgz", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "_destroy@1.0.4@destroy": { + "version": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "_detect-indent@4.0.0@detect-indent": { + "version": "https://registry.nlark.com/detect-indent/download/detect-indent-4.0.0.tgz", + "requires": { + "repeating": "^2.0.0" + }, + "dependencies": { + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/repeating/download/repeating-2.0.1.tgz", + "requires": { + "is-finite": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_detect-newline@2.1.0@detect-newline": { + "version": "https://registry.nlark.com/detect-newline/download/detect-newline-2.1.0.tgz" + }, + "_detect-node@2.1.0@detect-node": { + "version": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz?cache=0&sync_timestamp=1621147029891&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdetect-node%2Fdownload%2Fdetect-node-2.1.0.tgz" + }, + "_diff-sequences@24.9.0@diff-sequences": { + "version": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "_diffie-hellman@5.0.3@diffie-hellman": { + "version": "https://registry.nlark.com/diffie-hellman/download/diffie-hellman-5.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/miller-rabin/download/miller-rabin-4.0.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": {} + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "_dir-glob@2.2.2@dir-glob": { + "version": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_dns-equal@1.0.0@dns-equal": { + "version": "https://registry.nlark.com/dns-equal/download/dns-equal-1.0.0.tgz" + }, + "_dns-packet@1.3.4@dns-packet": { + "version": "https://registry.nlark.com/dns-packet/download/dns-packet-1.3.4.tgz", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_dns-txt@2.0.2@dns-txt": { + "version": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "requires": { + "buffer-indexof": "^1.0.0" + }, + "dependencies": { + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-indexof/download/buffer-indexof-1.1.1.tgz" + } + } + }, + "_doctrine@3.0.0@doctrine": { + "version": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz", + "requires": { + "esutils": "^2.0.2" + }, + "dependencies": { + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + } + } + }, + "_dom-converter@0.2.0@dom-converter": { + "version": "https://registry.nlark.com/dom-converter/download/dom-converter-0.2.0.tgz", + "requires": { + "utila": "~0.4" + }, + "dependencies": { + "utila": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/utila/download/utila-0.4.0.tgz" + } + } + }, + "_dom-event-types@1.0.0@dom-event-types": { + "version": "https://registry.nlark.com/dom-event-types/download/dom-event-types-1.0.0.tgz" + }, + "_dom-serializer@0.2.2@dom-serializer": { + "version": "https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "_dom-serializer@1.3.2@dom-serializer": { + "version": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "_domain-browser@1.2.0@domain-browser": { + "version": "https://registry.nlark.com/domain-browser/download/domain-browser-1.2.0.tgz" + }, + "_domelementtype@1.3.1@domelementtype": { + "version": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + }, + "_domelementtype@2.2.0@domelementtype": { + "version": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "_domexception@1.0.1@domexception": { + "version": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "_domhandler@2.4.2@domhandler": { + "version": "https://registry.nlark.com/domhandler/download/domhandler-2.4.2.tgz", + "requires": { + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + } + } + }, + "_domhandler@4.2.0@domhandler": { + "version": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + } + } + }, + "_domready@1.0.8@domready": { + "version": "https://registry.nlark.com/domready/download/domready-1.0.8.tgz" + }, + "_domutils@1.7.0@domutils": { + "version": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + } + } + }, + "_domutils@2.7.0@domutils": { + "version": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + } + } + }, + "_dot-prop@5.3.0@dot-prop": { + "version": "https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz" + } + } + }, + "_dotenv-expand@5.1.0@dotenv-expand": { + "version": "https://registry.nlark.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz" + }, + "_dotenv@8.6.0@dotenv": { + "version": "https://registry.nlark.com/dotenv/download/dotenv-8.6.0.tgz" + }, + "_duplexer@0.1.2@duplexer": { + "version": "https://registry.nlark.com/duplexer/download/duplexer-0.1.2.tgz" + }, + "_duplexify@3.7.1@duplexify": { + "version": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "_easy-stack@1.0.1@easy-stack": { + "version": "https://registry.nlark.com/easy-stack/download/easy-stack-1.0.1.tgz" + }, + "_ecc-jsbn@0.1.2@ecc-jsbn": { + "version": "https://registry.npm.taobao.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "_editorconfig@0.15.3@editorconfig": { + "version": "https://registry.nlark.com/editorconfig/download/editorconfig-0.15.3.tgz", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/sigmund/download/sigmund-1.0.1.tgz" + } + } + }, + "_ee-first@1.1.1@ee-first": { + "version": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + }, + "_ejs@2.7.4@ejs": { + "version": "https://registry.nlark.com/ejs/download/ejs-2.7.4.tgz" + }, + "_electron-to-chromium@1.3.752@electron-to-chromium": { + "version": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "_element-ui@2.13.2@element-ui": { + "version": "https://registry.nlark.com/element-ui/download/element-ui-2.13.2.tgz", + "requires": { + "async-validator": "~1.8.1", + "babel-helper-vue-jsx-merge-props": "^2.0.0", + "deepmerge": "^1.2.0", + "normalize-wheel": "^1.0.1", + "resize-observer-polyfill": "^1.5.0", + "throttle-debounce": "^1.0.1" + }, + "dependencies": { + "async-validator": { + "version": "1.8.5", + "resolved": "https://registry.nlark.com/async-validator/download/async-validator-1.8.5.tgz", + "requires": { + "babel-runtime": "6.x" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + } + } + }, + "babel-helper-vue-jsx-merge-props": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz" + }, + "deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz" + }, + "normalize-wheel": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/normalize-wheel/download/normalize-wheel-1.0.1.tgz" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz" + }, + "throttle-debounce": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/throttle-debounce/download/throttle-debounce-1.1.0.tgz" + } + } + }, + "_elliptic@6.5.4@elliptic": { + "version": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": {} + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + }, + "_emoji-regex@7.0.3@emoji-regex": { + "version": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz" + }, + "_emoji-regex@8.0.0@emoji-regex": { + "version": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "_emojis-list@2.1.0@emojis-list": { + "version": "https://registry.nlark.com/emojis-list/download/emojis-list-2.1.0.tgz" + }, + "_emojis-list@3.0.0@emojis-list": { + "version": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "_encodeurl@1.0.2@encodeurl": { + "version": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "_end-of-stream@1.4.4@end-of-stream": { + "version": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "_enhanced-resolve@4.5.0@enhanced-resolve": { + "version": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.5.0.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + } + } + }, + "_entities@1.1.2@entities": { + "version": "https://registry.nlark.com/entities/download/entities-1.1.2.tgz" + }, + "_entities@2.2.0@entities": { + "version": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + }, + "_errno@0.1.8@errno": { + "version": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": { + "prr": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + } + } + }, + "_error-ex@1.3.2@error-ex": { + "version": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz" + } + } + }, + "_error-stack-parser@2.0.6@error-stack-parser": { + "version": "https://registry.nlark.com/error-stack-parser/download/error-stack-parser-2.0.6.tgz", + "requires": { + "stackframe": "^1.1.1" + }, + "dependencies": { + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/stackframe/download/stackframe-1.2.0.tgz" + } + } + }, + "_es-abstract@1.18.3@es-abstract": { + "version": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": {} + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": {} + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "object-inspect": { + "version": "1.10.3", + "resolved": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_es-to-primitive@1.2.1@es-to-primitive": { + "version": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": { + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-date-object": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_escalade@3.1.1@escalade": { + "version": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "_escape-html@1.0.3@escape-html": { + "version": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "_escape-string-regexp@1.0.5@escape-string-regexp": { + "version": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "_escape-string-regexp@2.0.0@escape-string-regexp": { + "version": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz" + }, + "_escodegen@1.14.3@escodegen": { + "version": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz", + "optional": true + } + } + }, + "_eslint-loader@2.2.1@eslint-loader": { + "version": "https://registry.nlark.com/eslint-loader/download/eslint-loader-2.2.1.tgz", + "requires": { + "loader-fs-cache": "^1.0.0", + "loader-utils": "^1.0.2", + "object-assign": "^4.0.1", + "object-hash": "^1.1.4", + "rimraf": "^2.6.1" + }, + "dependencies": { + "loader-fs-cache": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/loader-fs-cache/download/loader-fs-cache-1.0.3.tgz", + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "object-hash": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/object-hash/download/object-hash-1.3.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + } + } + }, + "_eslint-plugin-vue@6.2.2@eslint-plugin-vue": { + "version": "https://registry.nlark.com/eslint-plugin-vue/download/eslint-plugin-vue-6.2.2.tgz", + "requires": { + "natural-compare": "^1.4.0", + "semver": "^5.6.0", + "vue-eslint-parser": "^7.0.0" + }, + "dependencies": { + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "vue-eslint-parser": { + "version": "7.6.0", + "resolved": "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.6.0.tgz", + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.15" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + } + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.1.tgz" + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + } + } + }, + "_eslint-scope@4.0.3@eslint-scope": { + "version": "https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": {} + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + } + } + }, + "_eslint-scope@5.1.1@eslint-scope": { + "version": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": {} + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + } + } + }, + "_eslint-utils@1.4.3@eslint-utils": { + "version": "https://registry.nlark.com/eslint-utils/download/eslint-utils-1.4.3.tgz", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "_eslint-visitor-keys@1.3.0@eslint-visitor-keys": { + "version": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "_eslint@6.7.2@eslint": { + "version": "https://registry.nlark.com/eslint/download/eslint-6.7.2.tgz?cache=0&sync_timestamp=1622847809742&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint%2Fdownload%2Feslint-6.7.2.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": { + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/nice-try/download/nice-try-1.0.5.tgz" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz", + "requires": { + "shebang-regex": "^1.0.0" + }, + "dependencies": {} + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz", + "requires": { + "esutils": "^2.0.2" + }, + "dependencies": { + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": {} + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + } + } + }, + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/eslint-utils/download/eslint-utils-1.4.3.tgz", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.1.tgz" + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-5.0.1.tgz", + "requires": { + "flat-cache": "^2.0.1" + }, + "dependencies": { + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/flat-cache/download/flat-cache-2.0.1.tgz", + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": { + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/flatted/download/flatted-2.0.2.tgz" + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.6.3.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.6.3.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + } + } + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/write/download/write-1.0.3.tgz", + "requires": { + "mkdirp": "^0.5.1" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + } + } + } + } + } + } + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz" + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": { + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.nlark.com/globals/download/globals-12.4.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-12.4.0.tgz", + "requires": { + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.8.1.tgz" + } + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/parent-module/download/parent-module-1.0.1.tgz", + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz" + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.nlark.com/inquirer/download/inquirer-7.3.3.tgz?cache=0&sync_timestamp=1621629616998&other_urls=https%3A%2F%2Fregistry.nlark.com%2Finquirer%2Fdownload%2Finquirer-7.3.3.tgz", + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": {} + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz", + "requires": { + "restore-cursor": "^3.1.0" + }, + "dependencies": {} + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz" + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": {} + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz" + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz" + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": {} + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz" + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": {} + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + } + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": {} + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": {} + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": { + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": {} + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": {} + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz" + } + } + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/progress/download/progress-2.0.3.tgz" + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/regexpp/download/regexpp-2.0.1.tgz" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz" + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.nlark.com/table/download/table-5.4.6.tgz", + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/slice-ansi/download/slice-ansi-2.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + } + } + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + } + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz" + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz" + } + } + }, + "_espree@6.2.1@espree": { + "version": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.1.tgz" + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "_esprima@4.0.1@esprima": { + "version": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + }, + "_esquery@1.4.0@esquery": { + "version": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "_esrecurse@4.3.0@esrecurse": { + "version": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "_estraverse@4.3.0@estraverse": { + "version": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + }, + "_estraverse@5.2.0@estraverse": { + "version": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + }, + "_esutils@2.0.3@esutils": { + "version": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "_etag@1.8.1@etag": { + "version": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "_event-pubsub@4.3.0@event-pubsub": { + "version": "https://registry.nlark.com/event-pubsub/download/event-pubsub-4.3.0.tgz" + }, + "_eventemitter3@4.0.7@eventemitter3": { + "version": "https://registry.nlark.com/eventemitter3/download/eventemitter3-4.0.7.tgz" + }, + "_events@3.3.0@events": { + "version": "https://registry.nlark.com/events/download/events-3.3.0.tgz" + }, + "_eventsource@1.1.0@eventsource": { + "version": "https://registry.nlark.com/eventsource/download/eventsource-1.1.0.tgz", + "requires": { + "original": "^1.0.0" + }, + "dependencies": { + "original": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/original/download/original-1.0.2.tgz", + "requires": { + "url-parse": "^1.4.3" + }, + "dependencies": {} + } + } + }, + "_evp_bytestokey@1.0.3@evp_bytestokey": { + "version": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_exec-sh@0.3.6@exec-sh": { + "version": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "_execa@0.8.0@execa": { + "version": "https://registry.nlark.com/execa/download/execa-0.8.0.tgz", + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-5.1.0.tgz", + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-3.0.0.tgz" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "_execa@1.0.0@execa": { + "version": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + } + } + }, + "_execa@3.4.0@execa": { + "version": "https://registry.nlark.com/execa/download/execa-3.4.0.tgz", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": {} + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz" + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-2.0.0.tgz" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-4.0.1.tgz", + "requires": { + "path-key": "^3.0.0" + }, + "dependencies": {} + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-2.0.1.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-final-newline": { + "version": "2.0.0", + "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" + } + } + }, + "_exit@0.1.2@exit": { + "version": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "_expand-brackets@0.1.5@expand-brackets": { + "version": "https://registry.nlark.com/expand-brackets/download/expand-brackets-0.1.5.tgz", + "requires": { + "is-posix-bracket": "^0.1.0" + }, + "dependencies": { + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz" + } + } + }, + "_expand-brackets@2.1.4@expand-brackets": { + "version": "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/posix-character-classes/download/posix-character-classes-0.1.1.tgz" + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "_expand-range@1.8.2@expand-range": { + "version": "https://registry.nlark.com/expand-range/download/expand-range-1.8.2.tgz", + "requires": { + "fill-range": "^2.1.0" + }, + "dependencies": { + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-2.2.4.tgz", + "requires": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, + "dependencies": {} + } + } + }, + "_expect@24.9.0@expect": { + "version": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + } + } + }, + "_express@4.17.1@express": { + "version": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": {} + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": {} + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/cookie-signature/download/cookie-signature-1.0.6.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": {} + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz?cache=0&sync_timestamp=1622509170257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fproxy-addr%2Fdownload%2Fproxy-addr-2.0.7.tgz", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": {} + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": {} + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/serve-static/download/serve-static-1.14.1.tgz", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "dependencies": {} + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": {} + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "_extend-shallow@2.0.1@extend-shallow": { + "version": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "_extend-shallow@3.0.2@extend-shallow": { + "version": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "_extend@3.0.2@extend": { + "version": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "_external-editor@3.1.0@external-editor": { + "version": "https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.nlark.com/chardet/download/chardet-0.7.0.tgz" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz", + "requires": { + "os-tmpdir": "~1.0.2" + }, + "dependencies": {} + } + } + }, + "_extglob@0.3.2@extglob": { + "version": "https://registry.nlark.com/extglob/download/extglob-0.3.2.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + }, + "_extglob@2.0.4@extglob": { + "version": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "_extract-from-css@0.4.4@extract-from-css": { + "version": "https://registry.nlark.com/extract-from-css/download/extract-from-css-0.4.4.tgz", + "requires": { + "css": "^2.1.0" + }, + "dependencies": { + "css": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/css/download/css-2.2.4.tgz", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + }, + "dependencies": {} + } + } + }, + "_extsprintf@1.3.0@extsprintf": { + "version": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.3.0.tgz" + }, + "_extsprintf@1.4.0@extsprintf": { + "version": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz" + }, + "_fast-deep-equal@3.1.3@fast-deep-equal": { + "version": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "_fast-glob@2.2.7@fast-glob": { + "version": "https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": { + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/@mrmlnc/readdir-enhanced/download/@mrmlnc/readdir-enhanced-2.2.1.tgz", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "dependencies": {} + }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-1.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-1.1.3.tgz" + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "_fast-json-stable-stringify@2.1.0@fast-json-stable-stringify": { + "version": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "_fast-levenshtein@2.0.6@fast-levenshtein": { + "version": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz" + }, + "_faye-websocket@0.11.4@faye-websocket": { + "version": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": { + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": {} + } + } + }, + "_fb-watchman@2.0.1@fb-watchman": { + "version": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": { + "bser": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "requires": { + "node-int64": "^0.4.0" + }, + "dependencies": {} + } + } + }, + "_figgy-pudding@3.5.2@figgy-pudding": { + "version": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "_figures@3.2.0@figures": { + "version": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + } + } + }, + "_file-entry-cache@5.0.1@file-entry-cache": { + "version": "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-5.0.1.tgz", + "requires": { + "flat-cache": "^2.0.1" + }, + "dependencies": { + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/flat-cache/download/flat-cache-2.0.1.tgz", + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": {} + } + } + }, + "_file-loader@4.3.0@file-loader": { + "version": "https://registry.nlark.com/file-loader/download/file-loader-4.3.0.tgz", + "requires": { + "loader-utils": "^1.2.3", + "schema-utils": "^2.5.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "_file-uri-to-path@1.0.0@file-uri-to-path": { + "version": "https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz" + }, + "_filename-regex@2.0.1@filename-regex": { + "version": "https://registry.nlark.com/filename-regex/download/filename-regex-2.0.1.tgz" + }, + "_filesize@3.6.1@filesize": { + "version": "https://registry.nlark.com/filesize/download/filesize-3.6.1.tgz" + }, + "_fill-range@2.2.4@fill-range": { + "version": "https://registry.nlark.com/fill-range/download/fill-range-2.2.4.tgz", + "requires": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-2.1.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": {} + }, + "randomatic": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/randomatic/download/randomatic-3.1.1.tgz", + "requires": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "dependencies": {} + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + } + } + }, + "_fill-range@4.0.0@fill-range": { + "version": "https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-2.1.1.tgz", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": {} + } + } + }, + "_fill-range@7.0.1@fill-range": { + "version": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "requires": { + "to-regex-range": "^5.0.1" + }, + "dependencies": { + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "requires": { + "is-number": "^7.0.0" + }, + "dependencies": {} + } + } + }, + "_finalhandler@1.1.0@finalhandler": { + "version": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.0.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.1", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.3.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "statuses": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.3.1.tgz" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "_finalhandler@1.1.2@finalhandler": { + "version": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "_find-babel-config@1.2.0@find-babel-config": { + "version": "https://registry.nlark.com/find-babel-config/download/find-babel-config-1.2.0.tgz", + "requires": { + "json5": "^0.5.1", + "path-exists": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/json5/download/json5-0.5.1.tgz" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + }, + "_find-cache-dir@0.1.1@find-cache-dir": { + "version": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-0.1.1.tgz", + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-1.0.0.tgz", + "requires": { + "find-up": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_find-cache-dir@2.1.0@find-cache-dir": { + "version": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_find-cache-dir@3.3.1@find-cache-dir": { + "version": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_find-up@1.1.2@find-up": { + "version": "https://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-1.1.2.tgz", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-2.1.0.tgz", + "requires": { + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_find-up@2.1.0@find-up": { + "version": "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz", + "requires": { + "locate-path": "^2.0.0" + }, + "dependencies": { + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_find-up@3.0.0@find-up": { + "version": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": { + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_find-up@4.1.0@find-up": { + "version": "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": { + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-5.0.0.tgz", + "requires": { + "p-locate": "^4.1.0" + }, + "dependencies": {} + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-4.0.0.tgz" + } + } + }, + "_flat-cache@2.0.1@flat-cache": { + "version": "https://registry.nlark.com/flat-cache/download/flat-cache-2.0.1.tgz", + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": { + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/flatted/download/flatted-2.0.2.tgz" + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.6.3.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.6.3.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/write/download/write-1.0.3.tgz", + "requires": { + "mkdirp": "^0.5.1" + }, + "dependencies": {} + } + } + }, + "_flatted@2.0.2@flatted": { + "version": "https://registry.nlark.com/flatted/download/flatted-2.0.2.tgz" + }, + "_flush-write-stream@1.1.1@flush-write-stream": { + "version": "https://registry.nlark.com/flush-write-stream/download/flush-write-stream-1.1.1.tgz", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_follow-redirects@1.14.1@follow-redirects": { + "version": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz" + }, + "_follow-redirects@1.5.10@follow-redirects": { + "version": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.5.10.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.5.10.tgz", + "requires": { + "debug": "=3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.1.0.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + } + } + }, + "_for-each@0.3.3@for-each": { + "version": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "requires": { + "is-callable": "^1.1.3" + }, + "dependencies": { + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + } + } + }, + "_for-in@1.0.2@for-in": { + "version": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + }, + "_for-own@0.1.5@for-own": { + "version": "https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz", + "requires": { + "for-in": "^1.0.1" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + } + } + }, + "_forever-agent@0.6.1@forever-agent": { + "version": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "_form-data@2.3.3@form-data": { + "version": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": { + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": {} + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + } + } + }, + "_forwarded@0.2.0@forwarded": { + "version": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz" + }, + "_fragment-cache@0.2.1@fragment-cache": { + "version": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": { + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + } + } + }, + "_fresh@0.5.2@fresh": { + "version": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "_from2@2.3.0@from2": { + "version": "https://registry.nlark.com/from2/download/from2-2.3.0.tgz", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_fs-extra@7.0.1@fs-extra": { + "version": "https://registry.nlark.com/fs-extra/download/fs-extra-7.0.1.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.6" + }, + "dependencies": {} + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz" + } + } + }, + "_fs-minipass@2.1.0@fs-minipass": { + "version": "https://registry.nlark.com/fs-minipass/download/fs-minipass-2.1.0.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_fs-write-stream-atomic@1.0.10@fs-write-stream-atomic": { + "version": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_fs.realpath@1.0.0@fs.realpath": { + "version": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "_fsevents@1.2.13@fsevents": { + "version": "https://registry.nlark.com/fsevents/download/fsevents-1.2.13.tgz", + "requires": { + "bindings": "^1.5.0" + } + }, + "_fsevents@2.3.2@fsevents": { + "version": "https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz" + }, + "_function-bind@1.1.1@function-bind": { + "version": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "_functional-red-black-tree@1.0.1@functional-red-black-tree": { + "version": "https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz" + }, + "_gensync@1.0.0-beta.2@gensync": { + "version": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "_get-caller-file@2.0.5@get-caller-file": { + "version": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "_get-intrinsic@1.1.1@get-intrinsic": { + "version": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "_get-stream@3.0.0@get-stream": { + "version": "https://registry.nlark.com/get-stream/download/get-stream-3.0.0.tgz" + }, + "_get-stream@4.1.0@get-stream": { + "version": "https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + } + } + }, + "_get-stream@5.2.0@get-stream": { + "version": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + } + } + }, + "_get-value@2.0.6@get-value": { + "version": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "_getpass@0.1.7@getpass": { + "version": "https://registry.npm.taobao.org/getpass/download/getpass-0.1.7.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + } + } + }, + "_glob-base@0.3.0@glob-base": { + "version": "https://registry.nlark.com/glob-base/download/glob-base-0.3.0.tgz", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-2.0.0.tgz", + "requires": { + "is-glob": "^2.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_glob-parent@2.0.0@glob-parent": { + "version": "https://registry.nlark.com/glob-parent/download/glob-parent-2.0.0.tgz", + "requires": { + "is-glob": "^2.0.0" + }, + "dependencies": { + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_glob-parent@3.1.0@glob-parent": { + "version": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "requires": { + "is-extglob": "^2.1.0" + }, + "dependencies": {} + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz" + } + } + }, + "_glob-parent@5.1.2@glob-parent": { + "version": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": { + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "_glob-to-regexp@0.3.0@glob-to-regexp": { + "version": "https://registry.nlark.com/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz" + }, + "_glob@7.1.7@glob": { + "version": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "_globals@11.12.0@globals": { + "version": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz" + }, + "_globals@12.4.0@globals": { + "version": "https://registry.nlark.com/globals/download/globals-12.4.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-12.4.0.tgz", + "requires": { + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.8.1.tgz" + } + } + }, + "_globals@9.18.0@globals": { + "version": "https://registry.nlark.com/globals/download/globals-9.18.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-9.18.0.tgz" + }, + "_globby@6.1.0@globby": { + "version": "https://registry.nlark.com/globby/download/globby-6.1.0.tgz", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_globby@7.1.1@globby": { + "version": "https://registry.nlark.com/globby/download/globby-7.1.1.tgz", + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": {} + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.nlark.com/ignore/download/ignore-3.3.10.tgz" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-1.0.0.tgz" + } + } + }, + "_globby@9.2.0@globby": { + "version": "https://registry.nlark.com/globby/download/globby-9.2.0.tgz", + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": {} + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": {} + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": {} + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "_graceful-fs@4.2.6@graceful-fs": { + "version": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "_growly@1.3.0@growly": { + "version": "https://registry.nlark.com/growly/download/growly-1.3.0.tgz" + }, + "_gzip-size@5.1.1@gzip-size": { + "version": "https://registry.nlark.com/gzip-size/download/gzip-size-5.1.1.tgz", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": { + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/duplexer/download/duplexer-0.1.2.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + } + } + }, + "_handle-thing@2.0.1@handle-thing": { + "version": "https://registry.nlark.com/handle-thing/download/handle-thing-2.0.1.tgz" + }, + "_har-schema@2.0.0@har-schema": { + "version": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz" + }, + "_har-validator@5.1.5@har-validator": { + "version": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz" + } + } + }, + "_has-ansi@2.0.0@has-ansi": { + "version": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + } + } + }, + "_has-bigints@1.0.1@has-bigints": { + "version": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz" + }, + "_has-flag@1.0.0@has-flag": { + "version": "https://registry.nlark.com/has-flag/download/has-flag-1.0.0.tgz" + }, + "_has-flag@2.0.0@has-flag": { + "version": "https://registry.nlark.com/has-flag/download/has-flag-2.0.0.tgz" + }, + "_has-flag@3.0.0@has-flag": { + "version": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + }, + "_has-flag@4.0.0@has-flag": { + "version": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz" + }, + "_has-symbols@1.0.2@has-symbols": { + "version": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "_has-value@0.3.1@has-value": { + "version": "https://registry.nlark.com/has-value/download/has-value-0.3.1.tgz", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/has-values/download/has-values-0.1.4.tgz" + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": {} + } + } + }, + "_has-value@1.0.0@has-value": { + "version": "https://registry.nlark.com/has-value/download/has-value-1.0.0.tgz", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-values/download/has-values-1.0.0.tgz", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "_has-values@0.1.4@has-values": { + "version": "https://registry.nlark.com/has-values/download/has-values-0.1.4.tgz" + }, + "_has-values@1.0.0@has-values": { + "version": "https://registry.nlark.com/has-values/download/has-values-1.0.0.tgz", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-4.0.0.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_has@1.0.3@has": { + "version": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "_hash-base@3.1.0@hash-base": { + "version": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_hash-sum@1.0.2@hash-sum": { + "version": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "_hash-sum@2.0.0@hash-sum": { + "version": "https://registry.nlark.com/hash-sum/download/hash-sum-2.0.0.tgz" + }, + "_hash.js@1.1.7@hash.js": { + "version": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "_he@1.2.0@he": { + "version": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "_hex-color-regex@1.1.0@hex-color-regex": { + "version": "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz" + }, + "_highlight.js@10.7.3@highlight.js": { + "version": "https://registry.nlark.com/highlight.js/download/highlight.js-10.7.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhighlight.js%2Fdownload%2Fhighlight.js-10.7.3.tgz" + }, + "_hmac-drbg@1.0.1@hmac-drbg": { + "version": "https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": {} + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + }, + "_hoopy@0.1.4@hoopy": { + "version": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz" + }, + "_hosted-git-info@2.8.9@hosted-git-info": { + "version": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "_hpack.js@2.1.6@hpack.js": { + "version": "https://registry.nlark.com/hpack.js/download/hpack.js-2.1.6.tgz", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_hsl-regex@1.0.0@hsl-regex": { + "version": "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz" + }, + "_hsla-regex@1.0.0@hsla-regex": { + "version": "https://registry.nlark.com/hsla-regex/download/hsla-regex-1.0.0.tgz" + }, + "_html-encoding-sniffer@1.0.2@html-encoding-sniffer": { + "version": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": { + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": {} + } + } + }, + "_html-entities@1.4.0@html-entities": { + "version": "https://registry.nlark.com/html-entities/download/html-entities-1.4.0.tgz" + }, + "_html-escaper@2.0.2@html-escaper": { + "version": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz" + }, + "_html-minifier@3.5.21@html-minifier": { + "version": "https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/camel-case/download/camel-case-3.0.0.tgz", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + }, + "dependencies": {} + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.nlark.com/clean-css/download/clean-css-4.2.3.tgz", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": {} + }, + "commander": { + "version": "2.17.1", + "resolved": "https://registry.nlark.com/commander/download/commander-2.17.1.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/param-case/download/param-case-2.1.1.tgz", + "requires": { + "no-case": "^2.2.0" + }, + "dependencies": {} + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.nlark.com/relateurl/download/relateurl-0.2.7.tgz" + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.nlark.com/uglify-js/download/uglify-js-3.4.10.tgz", + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "_html-tags@2.0.0@html-tags": { + "version": "https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz" + }, + "_html-tags@3.1.0@html-tags": { + "version": "https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz" + }, + "_html-webpack-plugin@3.2.0@html-webpack-plugin": { + "version": "https://registry.nlark.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz", + "requires": { + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "tapable": "^1.0.0", + "toposort": "^1.0.0", + "util.promisify": "1.0.0" + }, + "dependencies": { + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-0.2.17.tgz", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/pretty-error/download/pretty-error-2.1.2.tgz?cache=0&sync_timestamp=1623180529588&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-error%2Fdownload%2Fpretty-error-2.1.2.tgz", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "toposort": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz" + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.0.tgz", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + }, + "dependencies": {} + } + } + }, + "_htmlparser2@3.10.1@htmlparser2": { + "version": "https://registry.nlark.com/htmlparser2/download/htmlparser2-3.10.1.tgz", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-2.4.2.tgz", + "requires": { + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + } + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + } + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/entities/download/entities-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + } + } + }, + "_htmlparser2@6.1.0@htmlparser2": { + "version": "https://registry.nlark.com/htmlparser2/download/htmlparser2-6.1.0.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": {} + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "_http-deceiver@1.2.7@http-deceiver": { + "version": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz" + }, + "_http-errors@1.6.3@http-errors": { + "version": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.0.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + }, + "_http-errors@1.7.2@http-errors": { + "version": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + } + } + }, + "_http-errors@1.7.3@http-errors": { + "version": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + } + } + }, + "_http-parser-js@0.5.3@http-parser-js": { + "version": "https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz" + }, + "_http-proxy-middleware@0.19.1@http-proxy-middleware": { + "version": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-0.19.1.tgz?cache=0&sync_timestamp=1620409562092&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-0.19.1.tgz", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "_http-proxy@1.18.1@http-proxy": { + "version": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.nlark.com/eventemitter3/download/eventemitter3-4.0.7.tgz" + }, + "follow-redirects": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + }, + "_http-signature@1.2.0@http-signature": { + "version": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": {} + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npm.taobao.org/sshpk/download/sshpk-1.16.1.tgz", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": {} + } + } + }, + "_https-browserify@1.0.0@https-browserify": { + "version": "https://registry.nlark.com/https-browserify/download/https-browserify-1.0.0.tgz" + }, + "_human-signals@1.1.1@human-signals": { + "version": "https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz" + }, + "_iconv-lite@0.4.24@iconv-lite": { + "version": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "_icss-utils@4.1.1@icss-utils": { + "version": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_ieee754@1.2.1@ieee754": { + "version": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz" + }, + "_iferr@0.1.5@iferr": { + "version": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "_ignore@3.3.10@ignore": { + "version": "https://registry.nlark.com/ignore/download/ignore-3.3.10.tgz" + }, + "_ignore@4.0.6@ignore": { + "version": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "_image-size@0.5.5@image-size": { + "version": "https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz" + }, + "_import-cwd@2.1.0@import-cwd": { + "version": "https://registry.nlark.com/import-cwd/download/import-cwd-2.1.0.tgz", + "requires": { + "import-from": "^2.1.0" + }, + "dependencies": { + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-from/download/import-from-2.1.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_import-fresh@2.0.0@import-fresh": { + "version": "https://registry.nlark.com/import-fresh/download/import-fresh-2.0.0.tgz", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": { + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/caller-path/download/caller-path-2.0.0.tgz", + "requires": { + "caller-callsite": "^2.0.0" + }, + "dependencies": {} + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + }, + "_import-fresh@3.3.0@import-fresh": { + "version": "https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/parent-module/download/parent-module-1.0.1.tgz", + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": {} + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz" + } + } + }, + "_import-from@2.1.0@import-from": { + "version": "https://registry.nlark.com/import-from/download/import-from-2.1.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + }, + "_import-local@2.0.0@import-local": { + "version": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": {} + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_imurmurhash@0.1.4@imurmurhash": { + "version": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "_indent-string@4.0.0@indent-string": { + "version": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz" + }, + "_indexes-of@1.0.1@indexes-of": { + "version": "https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz" + }, + "_infer-owner@1.0.4@infer-owner": { + "version": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "_inflight@1.0.6@inflight": { + "version": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "_inherits@2.0.1@inherits": { + "version": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.1.tgz" + }, + "_inherits@2.0.3@inherits": { + "version": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "_inherits@2.0.4@inherits": { + "version": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "_ini@1.3.8@ini": { + "version": "https://registry.nlark.com/ini/download/ini-1.3.8.tgz" + }, + "_inquirer@7.3.3@inquirer": { + "version": "https://registry.nlark.com/inquirer/download/inquirer-7.3.3.tgz?cache=0&sync_timestamp=1621629616998&other_urls=https%3A%2F%2Fregistry.nlark.com%2Finquirer%2Fdownload%2Finquirer-7.3.3.tgz", + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": {} + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz", + "requires": { + "restore-cursor": "^3.1.0" + }, + "dependencies": {} + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz" + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": {} + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz" + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz" + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": {} + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz" + } + } + }, + "_internal-ip@4.3.0@internal-ip": { + "version": "https://registry.nlark.com/internal-ip/download/internal-ip-4.3.0.tgz", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "dependencies": { + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/default-gateway/download/default-gateway-4.2.0.tgz", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": {} + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + } + } + }, + "_invariant@2.2.4@invariant": { + "version": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": { + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "dependencies": {} + } + } + }, + "_ip-regex@2.1.0@ip-regex": { + "version": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + }, + "_ip@1.1.5@ip": { + "version": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "_ipaddr.js@1.9.1@ipaddr.js": { + "version": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + }, + "_is-absolute-url@2.1.0@is-absolute-url": { + "version": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-2.1.0.tgz" + }, + "_is-absolute-url@3.0.3@is-absolute-url": { + "version": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-3.0.3.tgz" + }, + "_is-accessor-descriptor@0.1.6@is-accessor-descriptor": { + "version": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_is-accessor-descriptor@1.0.0@is-accessor-descriptor": { + "version": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "_is-arguments@1.1.0@is-arguments": { + "version": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.0.tgz", + "requires": { + "call-bind": "^1.0.0" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_is-arrayish@0.2.1@is-arrayish": { + "version": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz" + }, + "_is-arrayish@0.3.2@is-arrayish": { + "version": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz" + }, + "_is-bigint@1.0.2@is-bigint": { + "version": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.2.tgz?cache=0&sync_timestamp=1620162102171&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.2.tgz" + }, + "_is-binary-path@1.0.1@is-binary-path": { + "version": "https://registry.nlark.com/is-binary-path/download/is-binary-path-1.0.1.tgz", + "requires": { + "binary-extensions": "^1.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-1.13.1.tgz" + } + } + }, + "_is-binary-path@2.1.0@is-binary-path": { + "version": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "requires": { + "binary-extensions": "^2.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz" + } + } + }, + "_is-boolean-object@1.1.1@is-boolean-object": { + "version": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.1.tgz?cache=0&sync_timestamp=1620428460670&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-boolean-object%2Fdownload%2Fis-boolean-object-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_is-buffer@1.1.6@is-buffer": { + "version": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + }, + "_is-buffer@2.0.5@is-buffer": { + "version": "https://registry.nlark.com/is-buffer/download/is-buffer-2.0.5.tgz" + }, + "_is-callable@1.2.3@is-callable": { + "version": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "_is-ci@1.2.1@is-ci": { + "version": "https://registry.nlark.com/is-ci/download/is-ci-1.2.1.tgz", + "requires": { + "ci-info": "^1.5.0" + }, + "dependencies": { + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/ci-info/download/ci-info-1.6.0.tgz" + } + } + }, + "_is-ci@2.0.0@is-ci": { + "version": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz" + } + } + }, + "_is-color-stop@1.1.0@is-color-stop": { + "version": "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz" + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/hsla-regex/download/hsla-regex-1.0.0.tgz" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/rgb-regex/download/rgb-regex-1.0.1.tgz" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/rgba-regex/download/rgba-regex-1.0.0.tgz" + } + } + }, + "_is-core-module@2.4.0@is-core-module": { + "version": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "_is-data-descriptor@0.1.4@is-data-descriptor": { + "version": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_is-data-descriptor@1.0.0@is-data-descriptor": { + "version": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "_is-date-object@1.0.4@is-date-object": { + "version": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "_is-descriptor@0.1.6@is-descriptor": { + "version": "https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-5.1.0.tgz" + } + } + }, + "_is-descriptor@1.0.2@is-descriptor": { + "version": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": {} + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "_is-directory@0.3.1@is-directory": { + "version": "https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz" + }, + "_is-docker@2.2.1@is-docker": { + "version": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz" + }, + "_is-dotfile@1.0.3@is-dotfile": { + "version": "https://registry.nlark.com/is-dotfile/download/is-dotfile-1.0.3.tgz" + }, + "_is-equal-shallow@0.1.3@is-equal-shallow": { + "version": "https://registry.nlark.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz", + "requires": { + "is-primitive": "^2.0.0" + }, + "dependencies": { + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-primitive/download/is-primitive-2.0.0.tgz" + } + } + }, + "_is-extendable@0.1.1@is-extendable": { + "version": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "_is-extendable@1.0.1@is-extendable": { + "version": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + } + } + }, + "_is-extglob@1.0.0@is-extglob": { + "version": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + }, + "_is-extglob@2.1.1@is-extglob": { + "version": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + }, + "_is-finite@1.1.0@is-finite": { + "version": "https://registry.nlark.com/is-finite/download/is-finite-1.1.0.tgz" + }, + "_is-fullwidth-code-point@2.0.0@is-fullwidth-code-point": { + "version": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "_is-fullwidth-code-point@3.0.0@is-fullwidth-code-point": { + "version": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "_is-generator-fn@2.1.0@is-generator-fn": { + "version": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz" + }, + "_is-glob@2.0.1@is-glob": { + "version": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + } + } + }, + "_is-glob@3.1.0@is-glob": { + "version": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "requires": { + "is-extglob": "^2.1.0" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "_is-glob@4.0.1@is-glob": { + "version": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "_is-negative-zero@2.0.1@is-negative-zero": { + "version": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "_is-number-object@1.0.5@is-number-object": { + "version": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.5.tgz?cache=0&sync_timestamp=1620421302435&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-number-object%2Fdownload%2Fis-number-object-1.0.5.tgz" + }, + "_is-number@2.1.0@is-number": { + "version": "https://registry.nlark.com/is-number/download/is-number-2.1.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_is-number@3.0.0@is-number": { + "version": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_is-number@4.0.0@is-number": { + "version": "https://registry.nlark.com/is-number/download/is-number-4.0.0.tgz" + }, + "_is-number@7.0.0@is-number": { + "version": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz" + }, + "_is-obj@2.0.0@is-obj": { + "version": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz" + }, + "_is-path-cwd@2.2.0@is-path-cwd": { + "version": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz" + }, + "_is-path-in-cwd@2.1.0@is-path-in-cwd": { + "version": "https://registry.nlark.com/is-path-in-cwd/download/is-path-in-cwd-2.1.0.tgz?cache=0&sync_timestamp=1620047156679&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-in-cwd%2Fdownload%2Fis-path-in-cwd-2.1.0.tgz", + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": { + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1620046922351&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz", + "requires": { + "path-is-inside": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_is-path-inside@2.1.0@is-path-inside": { + "version": "https://registry.nlark.com/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1620046922351&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz", + "requires": { + "path-is-inside": "^1.0.2" + }, + "dependencies": { + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-is-inside/download/path-is-inside-1.0.2.tgz" + } + } + }, + "_is-plain-obj@1.1.0@is-plain-obj": { + "version": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + }, + "_is-plain-object@2.0.4@is-plain-object": { + "version": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "_is-posix-bracket@0.1.1@is-posix-bracket": { + "version": "https://registry.nlark.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz" + }, + "_is-primitive@2.0.0@is-primitive": { + "version": "https://registry.nlark.com/is-primitive/download/is-primitive-2.0.0.tgz" + }, + "_is-regex@1.1.3@is-regex": { + "version": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "_is-resolvable@1.1.0@is-resolvable": { + "version": "https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz" + }, + "_is-stream@1.1.0@is-stream": { + "version": "https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz" + }, + "_is-stream@2.0.0@is-stream": { + "version": "https://registry.nlark.com/is-stream/download/is-stream-2.0.0.tgz" + }, + "_is-string@1.0.6@is-string": { + "version": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "_is-symbol@1.0.4@is-symbol": { + "version": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": { + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "_is-typedarray@1.0.0@is-typedarray": { + "version": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "_is-utf8@0.2.1@is-utf8": { + "version": "https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz" + }, + "_is-whitespace@0.3.0@is-whitespace": { + "version": "https://registry.nlark.com/is-whitespace/download/is-whitespace-0.3.0.tgz" + }, + "_is-windows@1.0.2@is-windows": { + "version": "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz" + }, + "_is-wsl@1.1.0@is-wsl": { + "version": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + }, + "_is-wsl@2.2.0@is-wsl": { + "version": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": { + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz" + } + } + }, + "_isarray@1.0.0@isarray": { + "version": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "_isexe@2.0.0@isexe": { + "version": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + }, + "_isobject@2.1.0@isobject": { + "version": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + }, + "_isobject@3.0.1@isobject": { + "version": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "_isstream@0.1.2@isstream": { + "version": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "_istanbul-lib-coverage@1.2.1@istanbul-lib-coverage": { + "version": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-1.2.1.tgz" + }, + "_istanbul-lib-coverage@2.0.5@istanbul-lib-coverage": { + "version": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "_istanbul-lib-instrument@1.10.2@istanbul-lib-instrument": { + "version": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-1.10.2.tgz", + "requires": { + "babel-generator": "^6.18.0", + "babel-template": "^6.16.0", + "babel-traverse": "^6.18.0", + "babel-types": "^6.18.0", + "babylon": "^6.18.0", + "istanbul-lib-coverage": "^1.2.1", + "semver": "^5.3.0" + }, + "dependencies": { + "babel-generator": { + "version": "6.26.1", + "resolved": "https://registry.nlark.com/babel-generator/download/babel-generator-6.26.1.tgz", + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + }, + "dependencies": {} + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "istanbul-lib-coverage": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-1.2.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + } + } + }, + "_istanbul-lib-instrument@3.3.0@istanbul-lib-instrument": { + "version": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "_istanbul-lib-report@2.0.8@istanbul-lib-report": { + "version": "https://registry.nlark.com/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz", + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": {} + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_istanbul-lib-source-maps@3.0.6@istanbul-lib-source-maps": { + "version": "https://registry.nlark.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-3.0.6.tgz", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_istanbul-reports@2.2.7@istanbul-reports": { + "version": "https://registry.nlark.com/istanbul-reports/download/istanbul-reports-2.2.7.tgz", + "requires": { + "html-escaper": "^2.0.0" + }, + "dependencies": { + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz" + } + } + }, + "_javascript-stringify@2.1.0@javascript-stringify": { + "version": "https://registry.nlark.com/javascript-stringify/download/javascript-stringify-2.1.0.tgz" + }, + "_jest-changed-files@24.9.0@jest-changed-files": { + "version": "https://registry.nlark.com/jest-changed-files/download/jest-changed-files-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "_jest-cli@24.9.0@jest-cli": { + "version": "https://registry.nlark.com/jest-cli/download/jest-cli-24.9.0.tgz", + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/core/download/@jest/core-24.9.0.tgz?cache=0&sync_timestamp=1622709636473&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "prompts": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/prompts/download/prompts-2.4.1.tgz", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "_jest-config@24.9.0@jest-config": { + "version": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": {} + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-diff@24.9.0@jest-diff": { + "version": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "_jest-docblock@24.9.0@jest-docblock": { + "version": "https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz", + "requires": { + "detect-newline": "^2.1.0" + }, + "dependencies": { + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-newline/download/detect-newline-2.1.0.tgz" + } + } + }, + "_jest-each@24.9.0@jest-each": { + "version": "https://registry.nlark.com/jest-each/download/jest-each-24.9.0.tgz?cache=0&sync_timestamp=1622290388475&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-each%2Fdownload%2Fjest-each-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "_jest-environment-jsdom-fifteen@1.0.2@jest-environment-jsdom-fifteen": { + "version": "https://registry.nlark.com/jest-environment-jsdom-fifteen/download/jest-environment-jsdom-fifteen-1.0.2.tgz", + "requires": { + "@jest/environment": "^24.3.0", + "@jest/fake-timers": "^24.3.0", + "@jest/types": "^24.3.0", + "jest-mock": "^24.0.0", + "jest-util": "^24.0.0", + "jsdom": "^15.2.1" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.nlark.com/jsdom/download/jsdom-15.2.1.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-environment-jsdom@24.9.0@jest-environment-jsdom": { + "version": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/jsdom/download/jsdom-11.12.0.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-environment-node@24.9.0@jest-environment-node": { + "version": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + } + } + }, + "_jest-get-type@24.9.0@jest-get-type": { + "version": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "_jest-haste-map@24.9.0@jest-haste-map": { + "version": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "_jest-jasmine2@24.9.0@jest-jasmine2": { + "version": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/co/download/co-4.6.0.tgz" + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz" + }, + "jest-each": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-each/download/jest-each-24.9.0.tgz?cache=0&sync_timestamp=1622290388475&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-each%2Fdownload%2Fjest-each-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "_jest-leak-detector@24.9.0@jest-leak-detector": { + "version": "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz?cache=0&sync_timestamp=1622290386972&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-24.9.0.tgz", + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "_jest-matcher-utils@24.9.0@jest-matcher-utils": { + "version": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "_jest-message-util@24.9.0@jest-message-util": { + "version": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-mock@24.9.0@jest-mock": { + "version": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-pnp-resolver@1.2.2@jest-pnp-resolver": { + "version": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "_jest-regex-util@24.9.0@jest-regex-util": { + "version": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "_jest-resolve-dependencies@24.9.0@jest-resolve-dependencies": { + "version": "https://registry.nlark.com/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + } + } + }, + "_jest-resolve@24.9.0@jest-resolve": { + "version": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-runner@24.9.0@jest-runner": { + "version": "https://registry.nlark.com/jest-runner/download/jest-runner-24.9.0.tgz?cache=0&sync_timestamp=1622709114586&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz", + "requires": { + "detect-newline": "^2.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz?cache=0&sync_timestamp=1622290386972&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-24.9.0.tgz", + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "_jest-runtime@24.9.0@jest-runtime": { + "version": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "_jest-serializer-vue@2.0.2@jest-serializer-vue": { + "version": "https://registry.nlark.com/jest-serializer-vue/download/jest-serializer-vue-2.0.2.tgz", + "requires": { + "pretty": "2.0.0" + }, + "dependencies": { + "pretty": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/pretty/download/pretty-2.0.0.tgz", + "requires": { + "condense-newlines": "^0.2.1", + "extend-shallow": "^2.0.1", + "js-beautify": "^1.6.12" + }, + "dependencies": {} + } + } + }, + "_jest-serializer@24.9.0@jest-serializer": { + "version": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "_jest-snapshot@24.9.0@jest-snapshot": { + "version": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "_jest-transform-stub@2.0.0@jest-transform-stub": { + "version": "https://registry.nlark.com/jest-transform-stub/download/jest-transform-stub-2.0.0.tgz" + }, + "_jest-util@24.9.0@jest-util": { + "version": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_jest-validate@24.9.0@jest-validate": { + "version": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "_jest-watch-typeahead@0.4.2@jest-watch-typeahead": { + "version": "https://registry.nlark.com/jest-watch-typeahead/download/jest-watch-typeahead-0.4.2.tgz?cache=0&sync_timestamp=1622135809685&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-watch-typeahead%2Fdownload%2Fjest-watch-typeahead-0.4.2.tgz", + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^2.4.1", + "jest-regex-util": "^24.9.0", + "jest-watcher": "^24.3.0", + "slash": "^3.0.0", + "string-length": "^3.1.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-3.0.0.tgz" + }, + "string-length": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-3.1.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "_jest-watcher@24.9.0@jest-watcher": { + "version": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-worker@24.9.0@jest-worker": { + "version": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_jest-worker@25.5.0@jest-worker": { + "version": "https://registry.nlark.com/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_jest@24.9.0@jest": { + "version": "https://registry.nlark.com/jest/download/jest-24.9.0.tgz", + "requires": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "dependencies": { + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-cli/download/jest-cli-24.9.0.tgz", + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + } + } + }, + "_js-base64@2.6.4@js-base64": { + "version": "https://registry.nlark.com/js-base64/download/js-base64-2.6.4.tgz?cache=0&sync_timestamp=1621703300524&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-base64%2Fdownload%2Fjs-base64-2.6.4.tgz" + }, + "_js-beautify@1.13.13@js-beautify": { + "version": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": { + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz?cache=0&sync_timestamp=1622746031285&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconfig-chain%2Fdownload%2Fconfig-chain-1.1.13.tgz", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": {} + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.nlark.com/editorconfig/download/editorconfig-0.15.3.tgz", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz" + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz", + "requires": { + "abbrev": "1" + }, + "dependencies": {} + } + } + }, + "_js-cookie@2.2.0@js-cookie": { + "version": "https://registry.nlark.com/js-cookie/download/js-cookie-2.2.0.tgz" + }, + "_js-message@1.0.7@js-message": { + "version": "https://registry.nlark.com/js-message/download/js-message-1.0.7.tgz" + }, + "_js-queue@2.0.2@js-queue": { + "version": "https://registry.nlark.com/js-queue/download/js-queue-2.0.2.tgz", + "requires": { + "easy-stack": "^1.0.1" + }, + "dependencies": { + "easy-stack": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/easy-stack/download/easy-stack-1.0.1.tgz" + } + } + }, + "_js-tokens@3.0.2@js-tokens": { + "version": "https://registry.nlark.com/js-tokens/download/js-tokens-3.0.2.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-3.0.2.tgz" + }, + "_js-tokens@4.0.0@js-tokens": { + "version": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + }, + "_js-yaml@3.14.1@js-yaml": { + "version": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": {} + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + } + } + }, + "_jsbn@0.1.1@jsbn": { + "version": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "_jsdom@11.12.0@jsdom": { + "version": "https://registry.nlark.com/jsdom/download/jsdom-11.12.0.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.nlark.com/acorn/download/acorn-5.7.4.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-5.7.4.tgz" + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": {} + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + }, + "cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-1.4.0.tgz", + "requires": { + "cssom": "0.3.x" + }, + "dependencies": {} + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": {} + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": {} + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": {} + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/left-pad/download/left-pad-1.3.0.tgz" + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse5/download/parse5-4.0.0.tgz" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": {} + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": {} + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-6.5.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "ws": { + "version": "5.2.3", + "resolved": "https://registry.nlark.com/ws/download/ws-5.2.3.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": {} + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + }, + "_jsdom@15.2.1@jsdom": { + "version": "https://registry.nlark.com/jsdom/download/jsdom-15.2.1.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": {} + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": {} + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": {} + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": {} + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": {} + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "parse5": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/parse5/download/parse5-5.1.0.tgz" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": {} + }, + "saxes": { + "version": "3.1.11", + "resolved": "https://registry.nlark.com/saxes/download/saxes-3.1.11.tgz", + "requires": { + "xmlchars": "^2.1.1" + }, + "dependencies": {} + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-3.0.1.tgz", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": {} + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-1.1.2.tgz", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": {} + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "ws": { + "version": "7.4.6", + "resolved": "https://registry.nlark.com/ws/download/ws-7.4.6.tgz" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + }, + "_jsesc@0.5.0@jsesc": { + "version": "https://registry.nlark.com/jsesc/download/jsesc-0.5.0.tgz" + }, + "_jsesc@1.3.0@jsesc": { + "version": "https://registry.nlark.com/jsesc/download/jsesc-1.3.0.tgz" + }, + "_jsesc@2.5.2@jsesc": { + "version": "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz" + }, + "_json-parse-better-errors@1.0.2@json-parse-better-errors": { + "version": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "_json-parse-even-better-errors@2.3.1@json-parse-even-better-errors": { + "version": "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz" + }, + "_json-schema-traverse@0.4.1@json-schema-traverse": { + "version": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "_json-schema@0.2.3@json-schema": { + "version": "https://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz" + }, + "_json-stable-stringify-without-jsonify@1.0.1@json-stable-stringify-without-jsonify": { + "version": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz" + }, + "_json-stringify-safe@5.0.1@json-stringify-safe": { + "version": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "_json3@3.3.3@json3": { + "version": "https://registry.nlark.com/json3/download/json3-3.3.3.tgz" + }, + "_json5@0.5.1@json5": { + "version": "https://registry.nlark.com/json5/download/json5-0.5.1.tgz" + }, + "_json5@1.0.1@json5": { + "version": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "_json5@2.2.0@json5": { + "version": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "_jsonfile@4.0.0@jsonfile": { + "version": "https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.6" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz", + "optional": true + } + } + }, + "_jsprim@1.4.1@jsprim": { + "version": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.3.0.tgz" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "_killable@1.0.1@killable": { + "version": "https://registry.nlark.com/killable/download/killable-1.0.1.tgz" + }, + "_kind-of@3.2.2@kind-of": { + "version": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + }, + "_kind-of@4.0.0@kind-of": { + "version": "https://registry.nlark.com/kind-of/download/kind-of-4.0.0.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz" + } + } + }, + "_kind-of@5.1.0@kind-of": { + "version": "https://registry.nlark.com/kind-of/download/kind-of-5.1.0.tgz" + }, + "_kind-of@6.0.3@kind-of": { + "version": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "_kleur@3.0.3@kleur": { + "version": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz" + }, + "_launch-editor-middleware@2.2.1@launch-editor-middleware": { + "version": "https://registry.nlark.com/launch-editor-middleware/download/launch-editor-middleware-2.2.1.tgz", + "requires": { + "launch-editor": "^2.2.1" + }, + "dependencies": { + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + } + } + }, + "_launch-editor@2.2.1@launch-editor": { + "version": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/shell-quote/download/shell-quote-1.7.2.tgz" + } + } + }, + "_left-pad@1.3.0@left-pad": { + "version": "https://registry.nlark.com/left-pad/download/left-pad-1.3.0.tgz" + }, + "_leven@3.1.0@leven": { + "version": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "_levn@0.3.0@levn": { + "version": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": {} + } + } + }, + "_lines-and-columns@1.1.6@lines-and-columns": { + "version": "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz" + }, + "_load-json-file@1.1.0@load-json-file": { + "version": "https://registry.nlark.com/load-json-file/download/load-json-file-1.1.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-2.2.0.tgz", + "requires": { + "error-ex": "^1.2.0" + }, + "dependencies": {} + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": {} + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-2.0.0.tgz", + "requires": { + "is-utf8": "^0.2.0" + }, + "dependencies": {} + } + } + }, + "_load-json-file@4.0.0@load-json-file": { + "version": "https://registry.nlark.com/load-json-file/download/load-json-file-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": {} + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + } + } + }, + "_loader-fs-cache@1.0.3@loader-fs-cache": { + "version": "https://registry.nlark.com/loader-fs-cache/download/loader-fs-cache-1.0.3.tgz", + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + }, + "dependencies": { + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-0.1.1.tgz", + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "_loader-runner@2.4.0@loader-runner": { + "version": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "_loader-utils@0.2.17@loader-utils": { + "version": "https://registry.nlark.com/loader-utils/download/loader-utils-0.2.17.tgz", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + }, + "dependencies": { + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/big.js/download/big.js-3.2.0.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-3.2.0.tgz" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-2.1.0.tgz" + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/json5/download/json5-0.5.1.tgz" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + } + } + }, + "_loader-utils@1.4.0@loader-utils": { + "version": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "_locate-path@2.0.0@locate-path": { + "version": "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz", + "requires": { + "p-limit": "^1.1.0" + }, + "dependencies": {} + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + }, + "_locate-path@3.0.0@locate-path": { + "version": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-3.0.0.tgz", + "requires": { + "p-limit": "^2.0.0" + }, + "dependencies": {} + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + }, + "_locate-path@5.0.0@locate-path": { + "version": "https://registry.npm.taobao.org/locate-path/download/locate-path-5.0.0.tgz", + "requires": { + "p-locate": "^4.1.0" + }, + "dependencies": { + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-4.1.0.tgz", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": {} + } + } + }, + "_lodash.debounce@4.0.8@lodash.debounce": { + "version": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz" + }, + "_lodash.defaultsdeep@4.6.1@lodash.defaultsdeep": { + "version": "https://registry.nlark.com/lodash.defaultsdeep/download/lodash.defaultsdeep-4.6.1.tgz" + }, + "_lodash.kebabcase@4.1.1@lodash.kebabcase": { + "version": "https://registry.nlark.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz" + }, + "_lodash.mapvalues@4.6.0@lodash.mapvalues": { + "version": "https://registry.nlark.com/lodash.mapvalues/download/lodash.mapvalues-4.6.0.tgz" + }, + "_lodash.memoize@4.1.2@lodash.memoize": { + "version": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "_lodash.padend@4.6.1@lodash.padend": { + "version": "https://registry.nlark.com/lodash.padend/download/lodash.padend-4.6.1.tgz" + }, + "_lodash.sortby@4.7.0@lodash.sortby": { + "version": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "_lodash.transform@4.6.0@lodash.transform": { + "version": "https://registry.nlark.com/lodash.transform/download/lodash.transform-4.6.0.tgz" + }, + "_lodash.uniq@4.5.0@lodash.uniq": { + "version": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz" + }, + "_lodash@4.17.21@lodash": { + "version": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "_lodash@4.17.4@lodash": { + "version": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.4.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.4.tgz" + }, + "_log-symbols@2.2.0@log-symbols": { + "version": "https://registry.nlark.com/log-symbols/download/log-symbols-2.2.0.tgz", + "requires": { + "chalk": "^2.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + } + } + }, + "_loglevel@1.7.1@loglevel": { + "version": "https://registry.nlark.com/loglevel/download/loglevel-1.7.1.tgz" + }, + "_loose-envify@1.4.0@loose-envify": { + "version": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "dependencies": { + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + } + } + }, + "_lower-case@1.1.4@lower-case": { + "version": "https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz" + }, + "_lru-cache@4.1.5@lru-cache": { + "version": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": { + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz" + } + } + }, + "_lru-cache@5.1.1@lru-cache": { + "version": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": { + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz" + } + } + }, + "_make-dir@2.1.0@make-dir": { + "version": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + } + } + }, + "_make-dir@3.1.0@make-dir": { + "version": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "_make-error@1.3.6@make-error": { + "version": "https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz" + }, + "_makeerror@1.0.11@makeerror": { + "version": "https://registry.nlark.com/makeerror/download/makeerror-1.0.11.tgz", + "requires": { + "tmpl": "1.0.x" + }, + "dependencies": { + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/tmpl/download/tmpl-1.0.4.tgz" + } + } + }, + "_map-cache@0.2.2@map-cache": { + "version": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "_map-visit@1.0.0@map-visit": { + "version": "https://registry.nlark.com/map-visit/download/map-visit-1.0.0.tgz", + "requires": { + "object-visit": "^1.0.0" + }, + "dependencies": { + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_math-random@1.0.4@math-random": { + "version": "https://registry.nlark.com/math-random/download/math-random-1.0.4.tgz" + }, + "_md5.js@1.3.5@md5.js": { + "version": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_mdn-data@1.1.4@mdn-data": { + "version": "https://registry.nlark.com/mdn-data/download/mdn-data-1.1.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-1.1.4.tgz" + }, + "_mdn-data@2.0.14@mdn-data": { + "version": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.14.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.14.tgz" + }, + "_mdn-data@2.0.4@mdn-data": { + "version": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.4.tgz" + }, + "_media-typer@0.3.0@media-typer": { + "version": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz" + }, + "_memory-fs@0.4.1@memory-fs": { + "version": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_memory-fs@0.5.0@memory-fs": { + "version": "https://registry.nlark.com/memory-fs/download/memory-fs-0.5.0.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_merge-descriptors@1.0.1@merge-descriptors": { + "version": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz" + }, + "_merge-options@1.0.1@merge-options": { + "version": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + }, + "_merge-source-map@1.1.0@merge-source-map": { + "version": "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_merge-stream@2.0.0@merge-stream": { + "version": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "_merge2@1.4.1@merge2": { + "version": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz" + }, + "_methods@1.1.2@methods": { + "version": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz" + }, + "_microargs@1.1.0@microargs": { + "version": "https://registry.nlark.com/microargs/download/microargs-1.1.0.tgz" + }, + "_microcli@1.3.1@microcli": { + "version": "https://registry.nlark.com/microcli/download/microcli-1.3.1.tgz", + "requires": { + "lodash": "4.17.4", + "microargs": "1.1.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.4.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.4.tgz" + }, + "microargs": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/microargs/download/microargs-1.1.0.tgz" + } + } + }, + "_micromatch@2.3.11@micromatch": { + "version": "https://registry.nlark.com/micromatch/download/micromatch-2.3.11.tgz", + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + }, + "dependencies": { + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-2.0.0.tgz", + "requires": { + "arr-flatten": "^1.0.1" + }, + "dependencies": {} + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.2.1.tgz" + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.nlark.com/braces/download/braces-1.8.5.tgz", + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + }, + "dependencies": {} + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/expand-brackets/download/expand-brackets-0.1.5.tgz", + "requires": { + "is-posix-bracket": "^0.1.0" + }, + "dependencies": {} + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/extglob/download/extglob-0.3.2.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/filename-regex/download/filename-regex-2.0.1.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": {} + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/object.omit/download/object.omit-2.0.1.tgz", + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + }, + "dependencies": {} + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/parse-glob/download/parse-glob-3.0.4.tgz", + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": {} + }, + "regex-cache": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/regex-cache/download/regex-cache-0.4.4.tgz", + "requires": { + "is-equal-shallow": "^0.1.3" + }, + "dependencies": {} + } + } + }, + "_micromatch@3.1.0@micromatch": { + "version": "https://registry.nlark.com/micromatch/download/micromatch-3.1.0.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": {} + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": { + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + } + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-5.1.0.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + } + } + }, + "_micromatch@3.1.10@micromatch": { + "version": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "_miller-rabin@4.0.1@miller-rabin": { + "version": "https://registry.nlark.com/miller-rabin/download/miller-rabin-4.0.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + } + } + }, + "_mime-db@1.48.0@mime-db": { + "version": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + }, + "_mime-types@2.1.31@mime-types": { + "version": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "_mime@1.4.1@mime": { + "version": "https://registry.npm.taobao.org/mime/download/mime-1.4.1.tgz" + }, + "_mime@1.6.0@mime": { + "version": "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz" + }, + "_mime@2.5.2@mime": { + "version": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "_mimic-fn@1.2.0@mimic-fn": { + "version": "https://registry.nlark.com/mimic-fn/download/mimic-fn-1.2.0.tgz" + }, + "_mimic-fn@2.1.0@mimic-fn": { + "version": "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz" + }, + "_mini-css-extract-plugin@0.9.0@mini-css-extract-plugin": { + "version": "https://registry.nlark.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.9.0.tgz?cache=0&sync_timestamp=1619783444865&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-0.9.0.tgz", + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-1.9.1.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-1.9.1.tgz", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "_minimalistic-assert@1.0.1@minimalistic-assert": { + "version": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "_minimalistic-crypto-utils@1.0.1@minimalistic-crypto-utils": { + "version": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + }, + "_minimatch@3.0.4@minimatch": { + "version": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": {} + } + } + }, + "_minimist@1.2.5@minimist": { + "version": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + }, + "_minipass-collect@1.0.2@minipass-collect": { + "version": "https://registry.nlark.com/minipass-collect/download/minipass-collect-1.0.2.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_minipass-flush@1.0.5@minipass-flush": { + "version": "https://registry.nlark.com/minipass-flush/download/minipass-flush-1.0.5.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_minipass-pipeline@1.2.4@minipass-pipeline": { + "version": "https://registry.nlark.com/minipass-pipeline/download/minipass-pipeline-1.2.4.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_minipass@3.1.3@minipass": { + "version": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + }, + "_mississippi@3.0.0@mississippi": { + "version": "https://registry.nlark.com/mississippi/download/mississippi-3.0.0.tgz", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": {} + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": {} + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/flush-write-stream/download/flush-write-stream-1.1.1.tgz", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": {} + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/from2/download/from2-2.3.0.tgz", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": {} + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/parallel-transform/download/parallel-transform-1.2.0.tgz", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": {} + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/pumpify/download/pumpify-1.5.1.tgz", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": {} + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/stream-each/download/stream-each-1.2.3.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + }, + "dependencies": {} + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/through2/download/through2-2.0.5.tgz", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": {} + } + } + }, + "_mitt@1.1.2@mitt": { + "version": "https://registry.nlark.com/mitt/download/mitt-1.1.2.tgz" + }, + "_mixin-deep@1.3.2@mixin-deep": { + "version": "https://registry.nlark.com/mixin-deep/download/mixin-deep-1.3.2.tgz", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "_mkdirp@0.5.5@mkdirp": { + "version": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "_mkdirp@1.0.4@mkdirp": { + "version": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz" + }, + "_mockjs@1.0.1-beta3@mockjs": { + "version": "https://registry.nlark.com/mockjs/download/mockjs-1.0.1-beta3.tgz", + "requires": { + "commander": "*" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/commander/download/commander-7.2.0.tgz" + } + } + }, + "_move-concurrently@1.0.1@move-concurrently": { + "version": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": {} + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "_ms@2.0.0@ms": { + "version": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + }, + "_ms@2.1.1@ms": { + "version": "https://registry.npm.taobao.org/ms/download/ms-2.1.1.tgz" + }, + "_ms@2.1.2@ms": { + "version": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + }, + "_ms@2.1.3@ms": { + "version": "https://registry.npm.taobao.org/ms/download/ms-2.1.3.tgz" + }, + "_multicast-dns-service-types@1.1.0@multicast-dns-service-types": { + "version": "https://registry.nlark.com/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz" + }, + "_multicast-dns@6.2.3@multicast-dns": { + "version": "https://registry.nlark.com/multicast-dns/download/multicast-dns-6.2.3.tgz", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "dependencies": { + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.nlark.com/dns-packet/download/dns-packet-1.3.4.tgz", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz" + } + } + }, + "_mute-stream@0.0.8@mute-stream": { + "version": "https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz" + }, + "_mz@2.7.0@mz": { + "version": "https://registry.nlark.com/mz/download/mz-2.7.0.tgz", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + }, + "dependencies": { + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/thenify-all/download/thenify-all-1.6.0.tgz", + "requires": { + "thenify": ">= 3.1.0 < 4" + }, + "dependencies": {} + } + } + }, + "_nanomatch@1.2.13@nanomatch": { + "version": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "_natural-compare@1.4.0@natural-compare": { + "version": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "_negotiator@0.6.2@negotiator": { + "version": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + }, + "_neo-async@2.6.2@neo-async": { + "version": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "_nice-try@1.0.5@nice-try": { + "version": "https://registry.nlark.com/nice-try/download/nice-try-1.0.5.tgz" + }, + "_no-case@2.3.2@no-case": { + "version": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": { + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz" + } + } + }, + "_node-addon-api@1.7.2@node-addon-api": { + "version": "https://registry.nlark.com/node-addon-api/download/node-addon-api-1.7.2.tgz" + }, + "_node-cache@4.2.1@node-cache": { + "version": "https://registry.nlark.com/node-cache/download/node-cache-4.2.1.tgz", + "requires": { + "clone": "2.x", + "lodash": "^4.17.15" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_node-forge@0.10.0@node-forge": { + "version": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz" + }, + "_node-int64@0.4.0@node-int64": { + "version": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz" + }, + "_node-ipc@9.1.4@node-ipc": { + "version": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": { + "event-pubsub": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/event-pubsub/download/event-pubsub-4.3.0.tgz" + }, + "js-message": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/js-message/download/js-message-1.0.7.tgz" + }, + "js-queue": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/js-queue/download/js-queue-2.0.2.tgz", + "requires": { + "easy-stack": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_node-libs-browser@2.2.1@node-libs-browser": { + "version": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "assert": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/assert/download/assert-1.5.0.tgz", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": {} + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz", + "requires": { + "pako": "~1.0.5" + }, + "dependencies": {} + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.nlark.com/buffer/download/buffer-4.9.2.tgz", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + }, + "dependencies": {} + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/console-browserify/download/console-browserify-1.2.0.tgz" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/constants-browserify/download/constants-browserify-1.0.0.tgz" + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.nlark.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "dependencies": {} + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/domain-browser/download/domain-browser-1.2.0.tgz" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/events/download/events-3.3.0.tgz" + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/https-browserify/download/https-browserify-1.0.0.tgz" + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/os-browserify/download/os-browserify-0.3.0.tgz" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.nlark.com/path-browserify/download/path-browserify-0.0.1.tgz" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.nlark.com/process/download/process-0.11.10.tgz" + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/querystring-es3/download/querystring-es3-0.2.1.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/stream-browserify/download/stream-browserify-2.0.2.tgz", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": {} + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": {} + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.nlark.com/timers-browserify/download/timers-browserify-2.0.12.tgz", + "requires": { + "setimmediate": "^1.0.4" + }, + "dependencies": {} + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.nlark.com/tty-browserify/download/tty-browserify-0.0.0.tgz" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": {} + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/util/download/util-0.11.1.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.11.1.tgz", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": {} + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/vm-browserify/download/vm-browserify-1.1.2.tgz" + } + } + }, + "_node-modules-regexp@1.0.0@node-modules-regexp": { + "version": "https://registry.nlark.com/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz" + }, + "_node-notifier@5.4.5@node-notifier": { + "version": "https://registry.nlark.com/node-notifier/download/node-notifier-5.4.5.tgz?cache=0&sync_timestamp=1621962354910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-notifier%2Fdownload%2Fnode-notifier-5.4.5.tgz", + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "dependencies": { + "growly": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/growly/download/growly-1.3.0.tgz" + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/shellwords/download/shellwords-0.1.1.tgz" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_node-releases@1.1.73@node-releases": { + "version": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + }, + "_nopt@5.0.0@nopt": { + "version": "https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz", + "requires": { + "abbrev": "1" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/abbrev/download/abbrev-1.1.1.tgz" + } + } + }, + "_normalize-package-data@2.5.0@normalize-package-data": { + "version": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_normalize-path@1.0.0@normalize-path": { + "version": "https://registry.nlark.com/normalize-path/download/normalize-path-1.0.0.tgz" + }, + "_normalize-path@2.1.1@normalize-path": { + "version": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "requires": { + "remove-trailing-separator": "^1.0.1" + }, + "dependencies": { + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz" + } + } + }, + "_normalize-path@3.0.0@normalize-path": { + "version": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "_normalize-range@0.1.2@normalize-range": { + "version": "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz" + }, + "_normalize-url@1.9.1@normalize-url": { + "version": "https://registry.nlark.com/normalize-url/download/normalize-url-1.9.1.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-1.9.1.tgz", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/prepend-http/download/prepend-http-1.0.4.tgz" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": {} + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/sort-keys/download/sort-keys-1.1.2.tgz", + "requires": { + "is-plain-obj": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_normalize-url@3.3.0@normalize-url": { + "version": "https://registry.nlark.com/normalize-url/download/normalize-url-3.3.0.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-3.3.0.tgz" + }, + "_normalize-wheel@1.0.1@normalize-wheel": { + "version": "https://registry.nlark.com/normalize-wheel/download/normalize-wheel-1.0.1.tgz" + }, + "_normalize.css@7.0.0@normalize.css": { + "version": "https://registry.nlark.com/normalize.css/download/normalize.css-7.0.0.tgz" + }, + "_npm-run-path@2.0.2@npm-run-path": { + "version": "https://registry.nlark.com/npm-run-path/download/npm-run-path-2.0.2.tgz", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + } + } + }, + "_npm-run-path@4.0.1@npm-run-path": { + "version": "https://registry.nlark.com/npm-run-path/download/npm-run-path-4.0.1.tgz", + "requires": { + "path-key": "^3.0.0" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + } + } + }, + "_nprogress@0.2.0@nprogress": { + "version": "https://registry.nlark.com/nprogress/download/nprogress-0.2.0.tgz" + }, + "_nth-check@1.0.2@nth-check": { + "version": "https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz", + "requires": { + "boolbase": "~1.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + } + } + }, + "_nth-check@2.0.0@nth-check": { + "version": "https://registry.nlark.com/nth-check/download/nth-check-2.0.0.tgz", + "requires": { + "boolbase": "^1.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + } + } + }, + "_num2fraction@1.2.2@num2fraction": { + "version": "https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz" + }, + "_nwsapi@2.2.0@nwsapi": { + "version": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "_oauth-sign@0.9.0@oauth-sign": { + "version": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "_object-assign@4.1.1@object-assign": { + "version": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "_object-copy@0.1.0@object-copy": { + "version": "https://registry.nlark.com/object-copy/download/object-copy-0.1.0.tgz", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz" + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_object-hash@1.3.1@object-hash": { + "version": "https://registry.nlark.com/object-hash/download/object-hash-1.3.1.tgz" + }, + "_object-inspect@1.10.3@object-inspect": { + "version": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "_object-is@1.1.5@object-is": { + "version": "https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "_object-keys@1.1.1@object-keys": { + "version": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "_object-visit@1.0.1@object-visit": { + "version": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "_object.assign@4.1.2@object.assign": { + "version": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "_object.getownpropertydescriptors@2.1.2@object.getownpropertydescriptors": { + "version": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_object.omit@2.0.1@object.omit": { + "version": "https://registry.nlark.com/object.omit/download/object.omit-2.0.1.tgz", + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz", + "requires": { + "for-in": "^1.0.1" + }, + "dependencies": {} + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "_object.pick@1.3.0@object.pick": { + "version": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "_object.values@1.1.4@object.values": { + "version": "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz?cache=0&sync_timestamp=1622071191450&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject.values%2Fdownload%2Fobject.values-1.1.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_obuf@1.1.2@obuf": { + "version": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "_omelette@0.4.5@omelette": { + "version": "https://registry.nlark.com/omelette/download/omelette-0.4.5.tgz" + }, + "_on-finished@2.3.0@on-finished": { + "version": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "_on-headers@1.0.2@on-headers": { + "version": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz" + }, + "_once@1.4.0@once": { + "version": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "_onetime@2.0.1@onetime": { + "version": "https://registry.nlark.com/onetime/download/onetime-2.0.1.tgz", + "requires": { + "mimic-fn": "^1.0.0" + }, + "dependencies": { + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/mimic-fn/download/mimic-fn-1.2.0.tgz" + } + } + }, + "_onetime@5.1.2@onetime": { + "version": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz" + } + } + }, + "_open@6.4.0@open": { + "version": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + } + } + }, + "_opener@1.5.2@opener": { + "version": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz" + }, + "_opn@5.5.0@opn": { + "version": "https://registry.nlark.com/opn/download/opn-5.5.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + } + } + }, + "_optionator@0.8.3@optionator": { + "version": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": { + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": {} + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": {} + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz" + } + } + }, + "_ora@3.4.0@ora": { + "version": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz", + "requires": { + "restore-cursor": "^2.0.0" + }, + "dependencies": {} + }, + "cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.nlark.com/cli-spinners/download/cli-spinners-2.6.0.tgz" + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/log-symbols/download/log-symbols-2.2.0.tgz", + "requires": { + "chalk": "^2.0.1" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz", + "requires": { + "defaults": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "_original@1.0.2@original": { + "version": "https://registry.nlark.com/original/download/original-1.0.2.tgz", + "requires": { + "url-parse": "^1.4.3" + }, + "dependencies": { + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_os-browserify@0.3.0@os-browserify": { + "version": "https://registry.nlark.com/os-browserify/download/os-browserify-0.3.0.tgz" + }, + "_os-tmpdir@1.0.2@os-tmpdir": { + "version": "https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz" + }, + "_p-each-series@1.0.0@p-each-series": { + "version": "https://registry.nlark.com/p-each-series/download/p-each-series-1.0.0.tgz", + "requires": { + "p-reduce": "^1.0.0" + }, + "dependencies": { + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-reduce/download/p-reduce-1.0.0.tgz" + } + } + }, + "_p-finally@1.0.0@p-finally": { + "version": "https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz" + }, + "_p-finally@2.0.1@p-finally": { + "version": "https://registry.nlark.com/p-finally/download/p-finally-2.0.1.tgz" + }, + "_p-limit@1.3.0@p-limit": { + "version": "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz", + "requires": { + "p-try": "^1.0.0" + }, + "dependencies": { + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz" + } + } + }, + "_p-limit@2.3.0@p-limit": { + "version": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": { + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + } + } + }, + "_p-locate@2.0.0@p-locate": { + "version": "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz", + "requires": { + "p-limit": "^1.1.0" + }, + "dependencies": { + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz", + "requires": { + "p-try": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_p-locate@3.0.0@p-locate": { + "version": "https://registry.npm.taobao.org/p-locate/download/p-locate-3.0.0.tgz", + "requires": { + "p-limit": "^2.0.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_p-locate@4.1.0@p-locate": { + "version": "https://registry.npm.taobao.org/p-locate/download/p-locate-4.1.0.tgz", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_p-map@2.1.0@p-map": { + "version": "https://registry.npm.taobao.org/p-map/download/p-map-2.1.0.tgz" + }, + "_p-map@3.0.0@p-map": { + "version": "https://registry.npm.taobao.org/p-map/download/p-map-3.0.0.tgz", + "requires": { + "aggregate-error": "^3.0.0" + }, + "dependencies": { + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_p-reduce@1.0.0@p-reduce": { + "version": "https://registry.nlark.com/p-reduce/download/p-reduce-1.0.0.tgz" + }, + "_p-retry@3.0.1@p-retry": { + "version": "https://registry.nlark.com/p-retry/download/p-retry-3.0.1.tgz", + "requires": { + "retry": "^0.12.0" + }, + "dependencies": { + "retry": { + "version": "0.12.0", + "resolved": "https://registry.nlark.com/retry/download/retry-0.12.0.tgz" + } + } + }, + "_p-try@1.0.0@p-try": { + "version": "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz" + }, + "_p-try@2.2.0@p-try": { + "version": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + }, + "_pako@1.0.11@pako": { + "version": "https://registry.nlark.com/pako/download/pako-1.0.11.tgz" + }, + "_parallel-transform@1.2.0@parallel-transform": { + "version": "https://registry.nlark.com/parallel-transform/download/parallel-transform-1.2.0.tgz", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/cyclist/download/cyclist-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_param-case@2.1.1@param-case": { + "version": "https://registry.nlark.com/param-case/download/param-case-2.1.1.tgz", + "requires": { + "no-case": "^2.2.0" + }, + "dependencies": { + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "_parent-module@1.0.1@parent-module": { + "version": "https://registry.nlark.com/parent-module/download/parent-module-1.0.1.tgz", + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + } + } + }, + "_parse-asn1@5.1.6@parse-asn1": { + "version": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.nlark.com/asn1.js/download/asn1.js-5.4.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": {} + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_parse-glob@3.0.4@parse-glob": { + "version": "https://registry.nlark.com/parse-glob/download/parse-glob-3.0.4.tgz", + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/glob-base/download/glob-base-0.3.0.tgz", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": {} + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/is-dotfile/download/is-dotfile-1.0.3.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_parse-json@2.2.0@parse-json": { + "version": "https://registry.nlark.com/parse-json/download/parse-json-2.2.0.tgz", + "requires": { + "error-ex": "^1.2.0" + }, + "dependencies": { + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": {} + } + } + }, + "_parse-json@4.0.0@parse-json": { + "version": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": { + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": {} + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + } + } + }, + "_parse-json@5.2.0@parse-json": { + "version": "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": {} + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz" + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz" + } + } + }, + "_parse5-htmlparser2-tree-adapter@6.0.1@parse5-htmlparser2-tree-adapter": { + "version": "https://registry.nlark.com/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz" + } + } + }, + "_parse5@4.0.0@parse5": { + "version": "https://registry.nlark.com/parse5/download/parse5-4.0.0.tgz" + }, + "_parse5@5.1.0@parse5": { + "version": "https://registry.nlark.com/parse5/download/parse5-5.1.0.tgz" + }, + "_parse5@5.1.1@parse5": { + "version": "https://registry.nlark.com/parse5/download/parse5-5.1.1.tgz" + }, + "_parse5@6.0.1@parse5": { + "version": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz" + }, + "_parseurl@1.3.3@parseurl": { + "version": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "_pascalcase@0.1.1@pascalcase": { + "version": "https://registry.nlark.com/pascalcase/download/pascalcase-0.1.1.tgz" + }, + "_path-browserify@0.0.1@path-browserify": { + "version": "https://registry.nlark.com/path-browserify/download/path-browserify-0.0.1.tgz" + }, + "_path-dirname@1.0.2@path-dirname": { + "version": "https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz" + }, + "_path-exists@2.1.0@path-exists": { + "version": "https://registry.npm.taobao.org/path-exists/download/path-exists-2.1.0.tgz", + "requires": { + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_path-exists@3.0.0@path-exists": { + "version": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + }, + "_path-exists@4.0.0@path-exists": { + "version": "https://registry.npm.taobao.org/path-exists/download/path-exists-4.0.0.tgz" + }, + "_path-is-absolute@1.0.1@path-is-absolute": { + "version": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + }, + "_path-is-inside@1.0.2@path-is-inside": { + "version": "https://registry.nlark.com/path-is-inside/download/path-is-inside-1.0.2.tgz" + }, + "_path-key@2.0.1@path-key": { + "version": "https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz" + }, + "_path-key@3.1.1@path-key": { + "version": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + }, + "_path-parse@1.0.7@path-parse": { + "version": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + }, + "_path-to-regexp@0.1.7@path-to-regexp": { + "version": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz" + }, + "_path-to-regexp@2.4.0@path-to-regexp": { + "version": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-2.4.0.tgz" + }, + "_path-type@1.1.0@path-type": { + "version": "https://registry.nlark.com/path-type/download/path-type-1.1.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_path-type@3.0.0@path-type": { + "version": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + } + } + }, + "_pbkdf2@3.1.2@pbkdf2": { + "version": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "_performance-now@2.1.0@performance-now": { + "version": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "_picomatch@2.3.0@picomatch": { + "version": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + }, + "_pify@2.3.0@pify": { + "version": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz" + }, + "_pify@3.0.0@pify": { + "version": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + }, + "_pify@4.0.1@pify": { + "version": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "_pinkie-promise@2.0.1@pinkie-promise": { + "version": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + }, + "_pinkie@2.0.4@pinkie": { + "version": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + }, + "_pirates@4.0.1@pirates": { + "version": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": { + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz" + } + } + }, + "_pkg-dir@1.0.0@pkg-dir": { + "version": "https://registry.nlark.com/pkg-dir/download/pkg-dir-1.0.0.tgz", + "requires": { + "find-up": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-1.1.2.tgz", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_pkg-dir@3.0.0@pkg-dir": { + "version": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_pkg-dir@4.2.0@pkg-dir": { + "version": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_pn@1.1.0@pn": { + "version": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "_pnp-webpack-plugin@1.6.4@pnp-webpack-plugin": { + "version": "https://registry.nlark.com/pnp-webpack-plugin/download/pnp-webpack-plugin-1.6.4.tgz", + "requires": { + "ts-pnp": "^1.1.6" + }, + "dependencies": { + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/ts-pnp/download/ts-pnp-1.2.0.tgz" + } + } + }, + "_portfinder@1.0.28@portfinder": { + "version": "https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "async": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz", + "requires": { + "lodash": "^4.17.14" + }, + "dependencies": {} + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "_posix-character-classes@0.1.1@posix-character-classes": { + "version": "https://registry.nlark.com/posix-character-classes/download/posix-character-classes-0.1.1.tgz" + }, + "_postcss-calc@7.0.5@postcss-calc": { + "version": "https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "_postcss-colormin@4.0.3@postcss-colormin": { + "version": "https://registry.nlark.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz?cache=0&sync_timestamp=1622236593947&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-colormin%2Fdownload%2Fpostcss-colormin-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/color/download/color-3.1.3.tgz", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-convert-values@4.0.1@postcss-convert-values": { + "version": "https://registry.nlark.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-discard-comments@4.0.2@postcss-discard-comments": { + "version": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-discard-duplicates@4.0.2@postcss-discard-duplicates": { + "version": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-discard-empty@4.0.1@postcss-discard-empty": { + "version": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-discard-overridden@4.0.1@postcss-discard-overridden": { + "version": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-load-config@2.1.2@postcss-load-config": { + "version": "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-2.1.2.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": {} + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-cwd/download/import-cwd-2.1.0.tgz", + "requires": { + "import-from": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-loader@3.0.0@postcss-loader": { + "version": "https://registry.nlark.com/postcss-loader/download/postcss-loader-3.0.0.tgz", + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-2.1.2.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-merge-longhand@4.0.11@postcss-merge-longhand": { + "version": "https://registry.nlark.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/stylehacks/download/stylehacks-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_postcss-merge-rules@4.0.3@postcss-merge-rules": { + "version": "https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": {} + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-same-parent/download/cssnano-util-same-parent-4.0.1.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": {} + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/vendors/download/vendors-1.0.4.tgz" + } + } + }, + "_postcss-minify-font-values@4.0.2@postcss-minify-font-values": { + "version": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-minify-gradients@4.0.2@postcss-minify-gradients": { + "version": "https://registry.nlark.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-minify-params@4.0.2@postcss-minify-params": { + "version": "https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + } + } + }, + "_postcss-minify-selectors@4.0.2@postcss-minify-selectors": { + "version": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_postcss-modules-extract-imports@2.0.0@postcss-modules-extract-imports": { + "version": "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-2.0.0.tgz", + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-modules-local-by-default@3.0.3@postcss-modules-local-by-default": { + "version": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-3.0.3.tgz", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "_postcss-modules-scope@2.2.0@postcss-modules-scope": { + "version": "https://registry.nlark.com/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_postcss-modules-values@3.0.0@postcss-modules-values": { + "version": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-3.0.0.tgz", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + }, + "dependencies": { + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-normalize-charset@4.0.1@postcss-normalize-charset": { + "version": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-normalize-display-values@4.0.2@postcss-normalize-display-values": { + "version": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-positions@4.0.2@postcss-normalize-positions": { + "version": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-repeat-style@4.0.2@postcss-normalize-repeat-style": { + "version": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-string@4.0.2@postcss-normalize-string": { + "version": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-timing-functions@4.0.2@postcss-normalize-timing-functions": { + "version": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-unicode@4.0.1@postcss-normalize-unicode": { + "version": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-url@4.0.1@postcss-normalize-url": { + "version": "https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-2.1.0.tgz" + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-3.3.0.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-3.3.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-normalize-whitespace@4.0.2@postcss-normalize-whitespace": { + "version": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-ordered-values@4.1.2@postcss-ordered-values": { + "version": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-prefix-selector@1.9.0@postcss-prefix-selector": { + "version": "https://registry.nlark.com/postcss-prefix-selector/download/postcss-prefix-selector-1.9.0.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + } + } + }, + "_postcss-reduce-initial@4.0.3@postcss-reduce-initial": { + "version": "https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "_postcss-reduce-transforms@4.0.2@postcss-reduce-transforms": { + "version": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "_postcss-selector-parser@3.1.2@postcss-selector-parser": { + "version": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": { + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": {} + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz" + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz" + } + } + }, + "_postcss-selector-parser@6.0.6@postcss-selector-parser": { + "version": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "_postcss-svgo@4.0.3@postcss-svgo": { + "version": "https://registry.nlark.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz?cache=0&sync_timestamp=1622236593132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-svgo%2Fdownload%2Fpostcss-svgo-4.0.3.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/svgo/download/svgo-1.3.2.tgz", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": {} + } + } + }, + "_postcss-unique-selectors@4.0.1@postcss-unique-selectors": { + "version": "https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + } + } + }, + "_postcss-value-parser@3.3.1@postcss-value-parser": { + "version": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "_postcss-value-parser@4.1.0@postcss-value-parser": { + "version": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + }, + "_postcss@5.2.18@postcss": { + "version": "https://registry.nlark.com/postcss/download/postcss-5.2.18.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-5.2.18.tgz", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": {} + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-2.0.0.tgz" + } + } + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://registry.nlark.com/js-base64/download/js-base64-2.6.4.tgz?cache=0&sync_timestamp=1621703300524&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-base64%2Fdownload%2Fjs-base64-2.6.4.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-3.2.3.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-3.2.3.tgz", + "requires": { + "has-flag": "^1.0.0" + }, + "dependencies": { + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-1.0.0.tgz" + } + } + } + } + }, + "_postcss@7.0.35@postcss": { + "version": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_posthtml-parser@0.2.1@posthtml-parser": { + "version": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": { + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-3.10.1.tgz", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz" + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-2.4.2.tgz", + "requires": { + "domelementtype": "1" + }, + "dependencies": {} + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": {} + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/entities/download/entities-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + } + } + }, + "_posthtml-rename-id@1.0.12@posthtml-rename-id": { + "version": "https://registry.nlark.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz", + "requires": { + "escape-string-regexp": "1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + } + } + }, + "_posthtml-render@1.4.0@posthtml-render": { + "version": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + }, + "_posthtml-svg-mode@1.0.3@posthtml-svg-mode": { + "version": "https://registry.nlark.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + }, + "dependencies": { + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + }, + "posthtml": { + "version": "0.9.2", + "resolved": "https://registry.nlark.com/posthtml/download/posthtml-0.9.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fposthtml%2Fdownload%2Fposthtml-0.9.2.tgz", + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + }, + "dependencies": { + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": { + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-3.10.1.tgz", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": {} + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": {} + } + } + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + } + } + }, + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": { + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-3.10.1.tgz", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": {} + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": {} + } + } + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + } + } + }, + "_posthtml@0.9.2@posthtml": { + "version": "https://registry.nlark.com/posthtml/download/posthtml-0.9.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fposthtml%2Fdownload%2Fposthtml-0.9.2.tgz", + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + }, + "dependencies": { + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": {} + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + } + } + }, + "_prelude-ls@1.1.2@prelude-ls": { + "version": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "_prepend-http@1.0.4@prepend-http": { + "version": "https://registry.nlark.com/prepend-http/download/prepend-http-1.0.4.tgz" + }, + "_preserve@0.2.0@preserve": { + "version": "https://registry.nlark.com/preserve/download/preserve-0.2.0.tgz" + }, + "_prettier@1.19.1@prettier": { + "version": "https://registry.nlark.com/prettier/download/prettier-1.19.1.tgz?cache=0&sync_timestamp=1622888592750&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprettier%2Fdownload%2Fprettier-1.19.1.tgz" + }, + "_pretty-error@2.1.2@pretty-error": { + "version": "https://registry.nlark.com/pretty-error/download/pretty-error-2.1.2.tgz?cache=0&sync_timestamp=1623180529588&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-error%2Fdownload%2Fpretty-error-2.1.2.tgz", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "renderkid": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/renderkid/download/renderkid-2.0.6.tgz?cache=0&sync_timestamp=1623180526912&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frenderkid%2Fdownload%2Frenderkid-2.0.6.tgz", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + } + } + }, + "_pretty-format@24.9.0@pretty-format": { + "version": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + }, + "_pretty@2.0.0@pretty": { + "version": "https://registry.nlark.com/pretty/download/pretty-2.0.0.tgz", + "requires": { + "condense-newlines": "^0.2.1", + "extend-shallow": "^2.0.1", + "js-beautify": "^1.6.12" + }, + "dependencies": { + "condense-newlines": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/condense-newlines/download/condense-newlines-0.2.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-whitespace": "^0.3.0", + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "js-beautify": { + "version": "1.13.13", + "resolved": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_process-nextick-args@2.0.1@process-nextick-args": { + "version": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "_process@0.11.10@process": { + "version": "https://registry.nlark.com/process/download/process-0.11.10.tgz" + }, + "_progress@2.0.3@progress": { + "version": "https://registry.nlark.com/progress/download/progress-2.0.3.tgz" + }, + "_promise-inflight@1.0.1@promise-inflight": { + "version": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "_prompts@2.4.1@prompts": { + "version": "https://registry.nlark.com/prompts/download/prompts-2.4.1.tgz", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "dependencies": { + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz" + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz" + } + } + }, + "_proto-list@1.2.4@proto-list": { + "version": "https://registry.nlark.com/proto-list/download/proto-list-1.2.4.tgz" + }, + "_proxy-addr@2.0.7@proxy-addr": { + "version": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz?cache=0&sync_timestamp=1622509170257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fproxy-addr%2Fdownload%2Fproxy-addr-2.0.7.tgz", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + } + } + }, + "_prr@1.0.1@prr": { + "version": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + }, + "_pseudomap@1.0.2@pseudomap": { + "version": "https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz" + }, + "_psl@1.8.0@psl": { + "version": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "_public-encrypt@4.0.3@public-encrypt": { + "version": "https://registry.nlark.com/public-encrypt/download/public-encrypt-4.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_pump@2.0.1@pump": { + "version": "https://registry.npm.taobao.org/pump/download/pump-2.0.1.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "_pump@3.0.0@pump": { + "version": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "_pumpify@1.5.1@pumpify": { + "version": "https://registry.nlark.com/pumpify/download/pumpify-1.5.1.tgz", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-2.0.1.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + } + } + }, + "_punycode@1.3.2@punycode": { + "version": "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz" + }, + "_punycode@1.4.1@punycode": { + "version": "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz" + }, + "_punycode@2.1.1@punycode": { + "version": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + }, + "_q@1.5.1@q": { + "version": "https://registry.nlark.com/q/download/q-1.5.1.tgz" + }, + "_qs@6.5.2@qs": { + "version": "https://registry.npm.taobao.org/qs/download/qs-6.5.2.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.5.2.tgz" + }, + "_qs@6.7.0@qs": { + "version": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "_query-string@4.3.4@query-string": { + "version": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz" + } + } + }, + "_querystring-es3@0.2.1@querystring-es3": { + "version": "https://registry.nlark.com/querystring-es3/download/querystring-es3-0.2.1.tgz" + }, + "_querystring@0.2.0@querystring": { + "version": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz" + }, + "_querystringify@2.2.0@querystringify": { + "version": "https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz" + }, + "_randomatic@3.1.1@randomatic": { + "version": "https://registry.nlark.com/randomatic/download/randomatic-3.1.1.tgz", + "requires": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-4.0.0.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "math-random": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/math-random/download/math-random-1.0.4.tgz" + } + } + }, + "_randombytes@2.1.0@randombytes": { + "version": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_randomfill@1.0.4@randomfill": { + "version": "https://registry.nlark.com/randomfill/download/randomfill-1.0.4.tgz", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_range-parser@1.2.1@range-parser": { + "version": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "_raw-body@2.4.0@raw-body": { + "version": "https://registry.npm.taobao.org/raw-body/download/raw-body-2.4.0.tgz", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "_react-is@16.13.1@react-is": { + "version": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + }, + "_read-pkg-up@1.0.1@read-pkg-up": { + "version": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-1.0.1.tgz", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-1.1.2.tgz", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-1.1.0.tgz", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_read-pkg-up@4.0.0@read-pkg-up": { + "version": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-4.0.0.tgz", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-3.0.0.tgz", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_read-pkg@1.1.0@read-pkg": { + "version": "https://registry.nlark.com/read-pkg/download/read-pkg-1.1.0.tgz", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/load-json-file/download/load-json-file-1.1.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": {} + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": {} + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-1.1.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_read-pkg@3.0.0@read-pkg": { + "version": "https://registry.nlark.com/read-pkg/download/read-pkg-3.0.0.tgz", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/load-json-file/download/load-json-file-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": {} + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": {} + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_read-pkg@5.2.0@read-pkg": { + "version": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz?cache=0&sync_timestamp=1621242064742&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnormalize-package-data%2Fdownload%2F%40types%2Fnormalize-package-data-2.4.0.tgz" + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": {} + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "dependencies": {} + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.6.0.tgz" + } + } + }, + "_readable-stream@2.3.7@readable-stream": { + "version": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "_readable-stream@3.6.0@readable-stream": { + "version": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "_readdirp@2.2.1@readdirp": { + "version": "https://registry.nlark.com/readdirp/download/readdirp-2.2.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_readdirp@3.5.0@readdirp": { + "version": "https://registry.nlark.com/readdirp/download/readdirp-3.5.0.tgz", + "requires": { + "picomatch": "^2.2.1" + }, + "dependencies": { + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + } + } + }, + "_realpath-native@1.1.0@realpath-native": { + "version": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "_regenerate-unicode-properties@8.2.0@regenerate-unicode-properties": { + "version": "https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-8.2.0.tgz", + "requires": { + "regenerate": "^1.4.0" + }, + "dependencies": { + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + } + } + }, + "_regenerate@1.4.2@regenerate": { + "version": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + }, + "_regenerator-runtime@0.11.1@regenerator-runtime": { + "version": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + }, + "_regenerator-runtime@0.13.7@regenerator-runtime": { + "version": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.7.tgz" + }, + "_regenerator-transform@0.14.5@regenerator-transform": { + "version": "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz", + "requires": { + "@babel/runtime": "^7.8.4" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.5.tgz?cache=0&sync_timestamp=1623280325784&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.5.tgz", + "requires": { + "regenerator-runtime": "^0.13.4" + }, + "dependencies": {} + } + } + }, + "_regex-cache@0.4.4@regex-cache": { + "version": "https://registry.nlark.com/regex-cache/download/regex-cache-0.4.4.tgz", + "requires": { + "is-equal-shallow": "^0.1.3" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz", + "requires": { + "is-primitive": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "_regex-not@1.0.2@regex-not": { + "version": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "_regexp.prototype.flags@1.3.1@regexp.prototype.flags": { + "version": "https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "_regexpp@2.0.1@regexpp": { + "version": "https://registry.nlark.com/regexpp/download/regexpp-2.0.1.tgz" + }, + "_regexpu-core@4.7.1@regexpu-core": { + "version": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": { + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-8.2.0.tgz", + "requires": { + "regenerate": "^1.4.0" + }, + "dependencies": {} + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.nlark.com/regjsgen/download/regjsgen-0.5.2.tgz" + }, + "regjsparser": { + "version": "0.6.9", + "resolved": "https://registry.nlark.com/regjsparser/download/regjsparser-0.6.9.tgz", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": {} + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-1.0.4.tgz", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "dependencies": {} + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.2.0.tgz" + } + } + }, + "_regjsgen@0.5.2@regjsgen": { + "version": "https://registry.nlark.com/regjsgen/download/regjsgen-0.5.2.tgz" + }, + "_regjsparser@0.6.9@regjsparser": { + "version": "https://registry.nlark.com/regjsparser/download/regjsparser-0.6.9.tgz", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-0.5.0.tgz" + } + } + }, + "_relateurl@0.2.7@relateurl": { + "version": "https://registry.nlark.com/relateurl/download/relateurl-0.2.7.tgz" + }, + "_remove-trailing-separator@1.1.0@remove-trailing-separator": { + "version": "https://registry.nlark.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz" + }, + "_renderkid@2.0.6@renderkid": { + "version": "https://registry.nlark.com/renderkid/download/renderkid-2.0.6.tgz?cache=0&sync_timestamp=1623180526912&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frenderkid%2Fdownload%2Frenderkid-2.0.6.tgz", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-4.1.3.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": {} + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/dom-converter/download/dom-converter-0.2.0.tgz", + "requires": { + "utila": "~0.4" + }, + "dependencies": {} + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-6.1.0.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_repeat-element@1.1.4@repeat-element": { + "version": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "_repeat-string@1.6.1@repeat-string": { + "version": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + }, + "_repeating@2.0.1@repeating": { + "version": "https://registry.nlark.com/repeating/download/repeating-2.0.1.tgz", + "requires": { + "is-finite": "^1.0.0" + }, + "dependencies": { + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-finite/download/is-finite-1.1.0.tgz" + } + } + }, + "_request-promise-core@1.1.4@request-promise-core": { + "version": "https://registry.nlark.com/request-promise-core/download/request-promise-core-1.1.4.tgz", + "requires": { + "lodash": "^4.17.19" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_request-promise-native@1.0.9@request-promise-native": { + "version": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/request-promise-core/download/request-promise-core-1.1.4.tgz", + "requires": { + "lodash": "^4.17.19" + }, + "dependencies": {} + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "_request@2.88.2@request": { + "version": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": {} + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": {} + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": {} + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": {} + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.5.2.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.5.2.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "_require-directory@2.1.1@require-directory": { + "version": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "_require-main-filename@1.0.1@require-main-filename": { + "version": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-1.0.1.tgz" + }, + "_require-main-filename@2.0.0@require-main-filename": { + "version": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + }, + "_requires-port@1.0.0@requires-port": { + "version": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + }, + "_resize-observer-polyfill@1.5.1@resize-observer-polyfill": { + "version": "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz" + }, + "_resolve-cwd@2.0.0@resolve-cwd": { + "version": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + }, + "_resolve-from@3.0.0@resolve-from": { + "version": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + }, + "_resolve-from@4.0.0@resolve-from": { + "version": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz" + }, + "_resolve-url@0.2.1@resolve-url": { + "version": "https://registry.nlark.com/resolve-url/download/resolve-url-0.2.1.tgz" + }, + "_resolve@1.1.7@resolve": { + "version": "https://registry.nlark.com/resolve/download/resolve-1.1.7.tgz" + }, + "_resolve@1.20.0@resolve": { + "version": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": { + "is-core-module": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": {} + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + } + } + }, + "_restore-cursor@2.0.0@restore-cursor": { + "version": "https://registry.nlark.com/restore-cursor/download/restore-cursor-2.0.0.tgz", + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/onetime/download/onetime-2.0.1.tgz", + "requires": { + "mimic-fn": "^1.0.0" + }, + "dependencies": {} + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + }, + "_restore-cursor@3.1.0@restore-cursor": { + "version": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": {} + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + }, + "_ret@0.1.15@ret": { + "version": "https://registry.nlark.com/ret/download/ret-0.1.15.tgz" + }, + "_retry@0.12.0@retry": { + "version": "https://registry.nlark.com/retry/download/retry-0.12.0.tgz" + }, + "_rgb-regex@1.0.1@rgb-regex": { + "version": "https://registry.nlark.com/rgb-regex/download/rgb-regex-1.0.1.tgz" + }, + "_rgba-regex@1.0.0@rgba-regex": { + "version": "https://registry.nlark.com/rgba-regex/download/rgba-regex-1.0.0.tgz" + }, + "_rimraf@2.6.3@rimraf": { + "version": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.6.3.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.6.3.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_rimraf@2.7.1@rimraf": { + "version": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_ripemd160@2.0.2@ripemd160": { + "version": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + } + } + }, + "_rsvp@4.8.5@rsvp": { + "version": "https://registry.nlark.com/rsvp/download/rsvp-4.8.5.tgz" + }, + "_run-async@2.4.1@run-async": { + "version": "https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz" + }, + "_run-queue@1.0.3@run-queue": { + "version": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + } + } + }, + "_runjs@4.3.2@runjs": { + "version": "https://registry.nlark.com/runjs/download/runjs-4.3.2.tgz", + "requires": { + "chalk": "2.3.0", + "lodash.padend": "4.6.1", + "microcli": "1.3.1", + "omelette": "0.4.5" + }, + "dependencies": { + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.3.0.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.3.0.tgz", + "requires": { + "ansi-styles": "^3.1.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-4.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-4.5.0.tgz", + "requires": { + "has-flag": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "lodash.padend": { + "version": "4.6.1", + "resolved": "https://registry.nlark.com/lodash.padend/download/lodash.padend-4.6.1.tgz" + }, + "microcli": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/microcli/download/microcli-1.3.1.tgz", + "requires": { + "lodash": "4.17.4", + "microargs": "1.1.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.4.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.4.tgz" + }, + "microargs": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/microargs/download/microargs-1.1.0.tgz" + } + } + }, + "omelette": { + "version": "0.4.5", + "resolved": "https://registry.nlark.com/omelette/download/omelette-0.4.5.tgz" + } + } + }, + "_rxjs@6.6.7@rxjs": { + "version": "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npm.taobao.org/tslib/download/tslib-1.14.1.tgz" + } + } + }, + "_safe-buffer@5.1.2@safe-buffer": { + "version": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "_safe-buffer@5.2.1@safe-buffer": { + "version": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "_safe-regex@1.1.0@safe-regex": { + "version": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": { + "ret": { + "version": "0.1.15", + "resolved": "https://registry.nlark.com/ret/download/ret-0.1.15.tgz" + } + } + }, + "_safer-buffer@2.1.2@safer-buffer": { + "version": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + }, + "_sane@4.1.0@sane": { + "version": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/capture-exit/download/capture-exit-2.0.0.tgz", + "requires": { + "rsvp": "^4.8.4" + }, + "dependencies": {} + }, + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "_sass-loader@8.0.2@sass-loader": { + "version": "https://registry.nlark.com/sass-loader/download/sass-loader-8.0.2.tgz?cache=0&sync_timestamp=1622562212227&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsass-loader%2Fdownload%2Fsass-loader-8.0.2.tgz", + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/clone-deep/download/clone-deep-4.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/shallow-clone/download/shallow-clone-3.0.1.tgz", + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": {} + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "_sass@1.26.8@sass": { + "version": "https://registry.nlark.com/sass/download/sass-1.26.8.tgz", + "requires": { + "chokidar": ">=2.0.0 <4.0.0" + }, + "dependencies": { + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "dependencies": {} + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "requires": { + "fill-range": "^7.0.1" + }, + "dependencies": {} + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": {} + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "requires": { + "binary-extensions": "^2.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-3.5.0.tgz", + "requires": { + "picomatch": "^2.2.1" + }, + "dependencies": {} + } + } + } + } + }, + "_sax@1.2.4@sax": { + "version": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "_saxes@3.1.11@saxes": { + "version": "https://registry.nlark.com/saxes/download/saxes-3.1.11.tgz", + "requires": { + "xmlchars": "^2.1.1" + }, + "dependencies": { + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz" + } + } + }, + "_schema-utils@1.0.0@schema-utils": { + "version": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "_schema-utils@2.7.1@schema-utils": { + "version": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "_script-ext-html-webpack-plugin@2.1.3@script-ext-html-webpack-plugin": { + "version": "https://registry.nlark.com/script-ext-html-webpack-plugin/download/script-ext-html-webpack-plugin-2.1.3.tgz", + "requires": { + "debug": "^4.1.0" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + } + } + }, + "_select-hose@2.0.0@select-hose": { + "version": "https://registry.nlark.com/select-hose/download/select-hose-2.0.0.tgz" + }, + "_selfsigned@1.10.11@selfsigned": { + "version": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz", + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": { + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz" + } + } + }, + "_semver@5.7.1@semver": { + "version": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "_semver@6.3.0@semver": { + "version": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "_semver@7.0.0@semver": { + "version": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + }, + "_send@0.16.2@send": { + "version": "https://registry.nlark.com/send/download/send-0.16.2.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.0.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-1.4.1.tgz" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.4.0.tgz" + } + } + }, + "_send@0.17.1@send": { + "version": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz" + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.1.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + }, + "_serialize-javascript@4.0.0@serialize-javascript": { + "version": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "_serve-index@1.9.1@serve-index": { + "version": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/batch/download/batch-0.6.1.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": {} + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + } + } + }, + "_serve-static@1.13.2@serve-static": { + "version": "https://registry.nlark.com/serve-static/download/serve-static-1.13.2.tgz", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.2", + "send": "0.16.2" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "send": { + "version": "0.16.2", + "resolved": "https://registry.nlark.com/send/download/send-0.16.2.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": {} + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-1.4.1.tgz" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.4.0.tgz" + } + } + } + } + }, + "_serve-static@1.14.1@serve-static": { + "version": "https://registry.nlark.com/serve-static/download/serve-static-1.14.1.tgz", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": {} + } + } + }, + "_set-blocking@2.0.0@set-blocking": { + "version": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz" + }, + "_set-value@2.0.1@set-value": { + "version": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_setimmediate@1.0.5@setimmediate": { + "version": "https://registry.nlark.com/setimmediate/download/setimmediate-1.0.5.tgz" + }, + "_setprototypeof@1.1.0@setprototypeof": { + "version": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.0.tgz" + }, + "_setprototypeof@1.1.1@setprototypeof": { + "version": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "_sha.js@2.4.11@sha.js": { + "version": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_shallow-clone@3.0.1@shallow-clone": { + "version": "https://registry.nlark.com/shallow-clone/download/shallow-clone-3.0.1.tgz", + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "_shebang-command@1.2.0@shebang-command": { + "version": "https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz", + "requires": { + "shebang-regex": "^1.0.0" + }, + "dependencies": { + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-1.0.0.tgz" + } + } + }, + "_shebang-command@2.0.0@shebang-command": { + "version": "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz", + "requires": { + "shebang-regex": "^3.0.0" + }, + "dependencies": { + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz" + } + } + }, + "_shebang-regex@1.0.0@shebang-regex": { + "version": "https://registry.nlark.com/shebang-regex/download/shebang-regex-1.0.0.tgz" + }, + "_shebang-regex@3.0.0@shebang-regex": { + "version": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz" + }, + "_shell-quote@1.7.2@shell-quote": { + "version": "https://registry.nlark.com/shell-quote/download/shell-quote-1.7.2.tgz" + }, + "_shellwords@0.1.1@shellwords": { + "version": "https://registry.nlark.com/shellwords/download/shellwords-0.1.1.tgz" + }, + "_sigmund@1.0.1@sigmund": { + "version": "https://registry.nlark.com/sigmund/download/sigmund-1.0.1.tgz" + }, + "_signal-exit@3.0.3@signal-exit": { + "version": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "_simple-swizzle@0.2.2@simple-swizzle": { + "version": "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz" + } + } + }, + "_sisteransi@1.0.5@sisteransi": { + "version": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz" + }, + "_slash@1.0.0@slash": { + "version": "https://registry.nlark.com/slash/download/slash-1.0.0.tgz" + }, + "_slash@2.0.0@slash": { + "version": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "_slash@3.0.0@slash": { + "version": "https://registry.nlark.com/slash/download/slash-3.0.0.tgz" + }, + "_slice-ansi@2.1.0@slice-ansi": { + "version": "https://registry.nlark.com/slice-ansi/download/slice-ansi-2.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + } + } + }, + "_snapdragon-node@2.1.1@snapdragon-node": { + "version": "https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/snapdragon-util/download/snapdragon-util-3.0.1.tgz", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": {} + } + } + }, + "_snapdragon-util@3.0.1@snapdragon-util": { + "version": "https://registry.nlark.com/snapdragon-util/download/snapdragon-util-3.0.1.tgz", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_snapdragon@0.8.2@snapdragon": { + "version": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "_sockjs-client@1.5.1@sockjs-client": { + "version": "https://registry.nlark.com/sockjs-client/download/sockjs-client-1.5.1.tgz", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": {} + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/eventsource/download/eventsource-1.1.0.tgz", + "requires": { + "original": "^1.0.0" + }, + "dependencies": {} + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.nlark.com/json3/download/json3-3.3.3.tgz" + }, + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_sockjs@0.3.21@sockjs": { + "version": "https://registry.nlark.com/sockjs/download/sockjs-0.3.21.tgz", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": {} + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": {} + } + } + }, + "_sort-keys@1.1.2@sort-keys": { + "version": "https://registry.nlark.com/sort-keys/download/sort-keys-1.1.2.tgz", + "requires": { + "is-plain-obj": "^1.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + }, + "_source-list-map@2.0.1@source-list-map": { + "version": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "_source-map-resolve@0.5.3@source-map-resolve": { + "version": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": { + "atob": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/resolve-url/download/resolve-url-0.2.1.tgz" + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz" + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + }, + "_source-map-support@0.5.19@source-map-support": { + "version": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_source-map-url@0.4.1@source-map-url": { + "version": "https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz" + }, + "_source-map@0.5.7@source-map": { + "version": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "_source-map@0.6.1@source-map": { + "version": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "_spdx-correct@3.1.1@spdx-correct": { + "version": "https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": {} + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + }, + "_spdx-exceptions@2.3.0@spdx-exceptions": { + "version": "https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz" + }, + "_spdx-expression-parse@3.0.1@spdx-expression-parse": { + "version": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz" + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + }, + "_spdx-license-ids@3.0.9@spdx-license-ids": { + "version": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + }, + "_spdy-transport@3.0.0@spdy-transport": { + "version": "https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz?cache=0&sync_timestamp=1621147029891&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdetect-node%2Fdownload%2Fdetect-node-2.1.0.tgz" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.nlark.com/hpack.js/download/hpack.js-2.1.6.tgz", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": {} + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_spdy@4.0.2@spdy": { + "version": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/handle-thing/download/handle-thing-2.0.1.tgz" + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz" + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/select-hose/download/select-hose-2.0.0.tgz" + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": {} + } + } + }, + "_split-string@3.1.0@split-string": { + "version": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_sprintf-js@1.0.3@sprintf-js": { + "version": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz" + }, + "_sshpk@1.16.1@sshpk": { + "version": "https://registry.npm.taobao.org/sshpk/download/sshpk-1.16.1.tgz", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": { + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npm.taobao.org/asn1/download/asn1-0.2.4.tgz", + "requires": { + "safer-buffer": "~2.1.0" + }, + "dependencies": {} + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "requires": { + "tweetnacl": "^0.14.3" + }, + "dependencies": {} + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": {} + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": {} + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/getpass/download/getpass-0.1.7.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": {} + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + } + } + }, + "_ssri@6.0.2@ssri": { + "version": "https://registry.nlark.com/ssri/download/ssri-6.0.2.tgz", + "requires": { + "figgy-pudding": "^3.5.1" + }, + "dependencies": { + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + } + } + }, + "_ssri@7.1.1@ssri": { + "version": "https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz", + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "dependencies": { + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "_stable@0.1.8@stable": { + "version": "https://registry.nlark.com/stable/download/stable-0.1.8.tgz" + }, + "_stack-utils@1.0.5@stack-utils": { + "version": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz" + } + } + }, + "_stackframe@1.2.0@stackframe": { + "version": "https://registry.nlark.com/stackframe/download/stackframe-1.2.0.tgz" + }, + "_static-extend@0.1.2@static-extend": { + "version": "https://registry.nlark.com/static-extend/download/static-extend-0.1.2.tgz", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/object-copy/download/object-copy-0.1.0.tgz", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": {} + } + } + }, + "_statuses@1.3.1@statuses": { + "version": "https://registry.npm.taobao.org/statuses/download/statuses-1.3.1.tgz" + }, + "_statuses@1.4.0@statuses": { + "version": "https://registry.npm.taobao.org/statuses/download/statuses-1.4.0.tgz" + }, + "_statuses@1.5.0@statuses": { + "version": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "_stealthy-require@1.1.1@stealthy-require": { + "version": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz" + }, + "_stream-browserify@2.0.2@stream-browserify": { + "version": "https://registry.nlark.com/stream-browserify/download/stream-browserify-2.0.2.tgz", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_stream-each@1.2.3@stream-each": { + "version": "https://registry.nlark.com/stream-each/download/stream-each-1.2.3.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "_stream-http@2.8.3@stream-http": { + "version": "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + } + } + }, + "_stream-shift@1.0.1@stream-shift": { + "version": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + }, + "_strict-uri-encode@1.1.0@strict-uri-encode": { + "version": "https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz" + }, + "_string-length@2.0.0@string-length": { + "version": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_string-length@3.1.0@string-length": { + "version": "https://registry.nlark.com/string-length/download/string-length-3.1.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": { + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "_string-width@2.1.1@string-width": { + "version": "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_string-width@3.1.0@string-width": { + "version": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "_string-width@4.2.2@string-width": { + "version": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_string.prototype.trimend@1.0.4@string.prototype.trimend": { + "version": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "_string.prototype.trimstart@1.0.4@string.prototype.trimstart": { + "version": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "_string_decoder@1.1.1@string_decoder": { + "version": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "_string_decoder@1.3.0@string_decoder": { + "version": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_strip-ansi@3.0.1@strip-ansi": { + "version": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + } + } + }, + "_strip-ansi@4.0.0@strip-ansi": { + "version": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz" + } + } + }, + "_strip-ansi@5.2.0@strip-ansi": { + "version": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + } + } + }, + "_strip-ansi@6.0.0@strip-ansi": { + "version": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + }, + "_strip-bom@2.0.0@strip-bom": { + "version": "https://registry.nlark.com/strip-bom/download/strip-bom-2.0.0.tgz", + "requires": { + "is-utf8": "^0.2.0" + }, + "dependencies": { + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz" + } + } + }, + "_strip-bom@3.0.0@strip-bom": { + "version": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "_strip-eof@1.0.0@strip-eof": { + "version": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + }, + "_strip-final-newline@2.0.0@strip-final-newline": { + "version": "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" + }, + "_strip-indent@2.0.0@strip-indent": { + "version": "https://registry.nlark.com/strip-indent/download/strip-indent-2.0.0.tgz?cache=0&sync_timestamp=1620053263051&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-indent%2Fdownload%2Fstrip-indent-2.0.0.tgz" + }, + "_strip-json-comments@2.0.1@strip-json-comments": { + "version": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz" + }, + "_strip-json-comments@3.1.1@strip-json-comments": { + "version": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz" + }, + "_stylehacks@4.0.3@stylehacks": { + "version": "https://registry.nlark.com/stylehacks/download/stylehacks-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_supports-color@2.0.0@supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-2.0.0.tgz" + }, + "_supports-color@3.2.3@supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-3.2.3.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-3.2.3.tgz", + "requires": { + "has-flag": "^1.0.0" + }, + "dependencies": { + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-1.0.0.tgz" + } + } + }, + "_supports-color@4.5.0@supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-4.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-4.5.0.tgz", + "requires": { + "has-flag": "^2.0.0" + }, + "dependencies": { + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-2.0.0.tgz" + } + } + }, + "_supports-color@5.5.0@supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + }, + "_supports-color@6.1.0@supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz" + } + } + }, + "_supports-color@7.2.0@supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz" + } + } + }, + "_svg-baker-runtime@1.4.7@svg-baker-runtime": { + "version": "https://registry.nlark.com/svg-baker-runtime/download/svg-baker-runtime-1.4.7.tgz", + "requires": { + "deepmerge": "1.3.2", + "mitt": "1.1.2", + "svg-baker": "^1.7.0" + }, + "dependencies": { + "deepmerge": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz" + }, + "mitt": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/mitt/download/mitt-1.1.2.tgz" + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.0.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-5.1.0.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.nlark.com/postcss/download/postcss-5.2.18.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-5.2.18.tgz", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": {} + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://registry.nlark.com/js-base64/download/js-base64-2.6.4.tgz?cache=0&sync_timestamp=1621703300524&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-base64%2Fdownload%2Fjs-base64-2.6.4.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-3.2.3.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-3.2.3.tgz", + "requires": { + "has-flag": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-prefix-selector": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/postcss-prefix-selector/download/postcss-prefix-selector-1.9.0.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://registry.nlark.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz", + "requires": { + "escape-string-regexp": "1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + } + } + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + }, + "dependencies": { + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": {} + }, + "posthtml": { + "version": "0.9.2", + "resolved": "https://registry.nlark.com/posthtml/download/posthtml-0.9.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fposthtml%2Fdownload%2Fposthtml-0.9.2.tgz", + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + }, + "dependencies": {} + }, + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": {} + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + } + } + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz" + } + } + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz" + } + } + } + } + }, + "_svg-baker@1.7.0@svg-baker": { + "version": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.0.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.nlark.com/postcss/download/postcss-5.2.18.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-5.2.18.tgz", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": {} + }, + "postcss-prefix-selector": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/postcss-prefix-selector/download/postcss-prefix-selector-1.9.0.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://registry.nlark.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz", + "requires": { + "escape-string-regexp": "1.0.5" + }, + "dependencies": {} + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + }, + "dependencies": {} + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": {} + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz" + } + } + }, + "_svg-sprite-loader@4.1.3@svg-sprite-loader": { + "version": "https://registry.nlark.com/svg-sprite-loader/download/svg-sprite-loader-4.1.3.tgz?cache=0&sync_timestamp=1622202565808&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsvg-sprite-loader%2Fdownload%2Fsvg-sprite-loader-4.1.3.tgz", + "requires": { + "bluebird": "^3.5.0", + "deepmerge": "1.3.2", + "domready": "1.0.8", + "escape-string-regexp": "1.0.5", + "html-webpack-plugin": "^3.2.0", + "loader-utils": "^1.1.0", + "svg-baker": "^1.4.0", + "svg-baker-runtime": "^1.4.0", + "url-slug": "2.0.0" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "deepmerge": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz" + }, + "domready": { + "version": "1.0.8", + "resolved": "https://registry.nlark.com/domready/download/domready-1.0.8.tgz" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "html-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz", + "requires": { + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "tapable": "^1.0.0", + "toposort": "^1.0.0", + "util.promisify": "1.0.0" + }, + "dependencies": { + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-0.2.17.tgz", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/pretty-error/download/pretty-error-2.1.2.tgz?cache=0&sync_timestamp=1623180529588&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-error%2Fdownload%2Fpretty-error-2.1.2.tgz", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "toposort": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz" + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.0.tgz", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + }, + "dependencies": {} + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.0.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.nlark.com/postcss/download/postcss-5.2.18.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-5.2.18.tgz", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": {} + }, + "postcss-prefix-selector": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/postcss-prefix-selector/download/postcss-prefix-selector-1.9.0.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://registry.nlark.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz", + "requires": { + "escape-string-regexp": "1.0.5" + }, + "dependencies": {} + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + }, + "dependencies": {} + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": {} + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz" + } + } + }, + "svg-baker-runtime": { + "version": "1.4.7", + "resolved": "https://registry.nlark.com/svg-baker-runtime/download/svg-baker-runtime-1.4.7.tgz", + "requires": { + "deepmerge": "1.3.2", + "mitt": "1.1.2", + "svg-baker": "^1.7.0" + }, + "dependencies": { + "deepmerge": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz" + }, + "mitt": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/mitt/download/mitt-1.1.2.tgz" + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": {} + } + } + }, + "url-slug": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/url-slug/download/url-slug-2.0.0.tgz?cache=0&sync_timestamp=1620876645815&other_urls=https%3A%2F%2Fregistry.nlark.com%2Furl-slug%2Fdownload%2Furl-slug-2.0.0.tgz", + "requires": { + "unidecode": "0.1.8" + }, + "dependencies": { + "unidecode": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/unidecode/download/unidecode-0.1.8.tgz" + } + } + } + } + }, + "_svg-tags@1.0.0@svg-tags": { + "version": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + }, + "_svgo@1.2.2@svgo": { + "version": "https://registry.nlark.com/svgo/download/svgo-1.2.2.tgz", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.28", + "css-url-regex": "^1.1.0", + "csso": "^3.5.1", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/coa/download/coa-2.0.2.tgz", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.nlark.com/@types/q/download/@types/q-1.5.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fq%2Fdownload%2F%40types%2Fq-1.5.4.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/q/download/q-1.5.1.tgz" + } + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/css-select/download/css-select-2.1.0.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-2.1.0.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.nlark.com/css-what/download/css-what-3.4.2.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-3.4.2.tgz" + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": {} + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz", + "requires": { + "boolbase": "~1.0.0" + }, + "dependencies": {} + } + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz" + }, + "css-tree": { + "version": "1.0.0-alpha.28", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.28.tgz", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "dependencies": { + "mdn-data": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-1.1.4.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-1.1.4.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + } + } + }, + "css-url-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/css-url-regex/download/css-url-regex-1.1.0.tgz" + }, + "csso": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/csso/download/csso-3.5.1.tgz", + "requires": { + "css-tree": "1.0.0-alpha.29" + }, + "dependencies": { + "css-tree": { + "version": "1.0.0-alpha.29", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.29.tgz", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "dependencies": {} + } + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": {} + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "object.values": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz?cache=0&sync_timestamp=1622071191450&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject.values%2Fdownload%2Fobject.values-1.1.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/stable/download/stable-0.1.8.tgz" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": {} + } + } + } + } + }, + "_svgo@1.3.2@svgo": { + "version": "https://registry.nlark.com/svgo/download/svgo-1.3.2.tgz", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/coa/download/coa-2.0.2.tgz", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": {} + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/css-select/download/css-select-2.1.0.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-2.1.0.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + }, + "dependencies": {} + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.37.tgz", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": {} + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/csso/download/csso-4.2.0.tgz", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": {} + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "object.values": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz?cache=0&sync_timestamp=1622071191450&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject.values%2Fdownload%2Fobject.values-1.1.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.2" + }, + "dependencies": {} + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/stable/download/stable-0.1.8.tgz" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "_symbol-tree@3.2.4@symbol-tree": { + "version": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "_table@5.4.6@table": { + "version": "https://registry.nlark.com/table/download/table-5.4.6.tgz", + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/slice-ansi/download/slice-ansi-2.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "dependencies": {} + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "_tapable@1.1.3@tapable": { + "version": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "_terser-webpack-plugin@1.4.5@terser-webpack-plugin": { + "version": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": {} + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": {} + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/worker-farm/download/worker-farm-1.7.0.tgz", + "requires": { + "errno": "~0.1.7" + }, + "dependencies": {} + } + } + }, + "_terser-webpack-plugin@2.3.8@terser-webpack-plugin": { + "version": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-2.3.8.tgz", + "requires": { + "cacache": "^13.0.1", + "find-cache-dir": "^3.3.1", + "jest-worker": "^25.4.0", + "p-limit": "^2.3.0", + "schema-utils": "^2.6.6", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "cacache": { + "version": "13.0.1", + "resolved": "https://registry.nlark.com/cacache/download/cacache-13.0.1.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-13.0.1.tgz", + "requires": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "dependencies": {} + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": {} + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "_terser@4.8.0@terser": { + "version": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + } + } + }, + "_test-exclude@4.2.3@test-exclude": { + "version": "https://registry.nlark.com/test-exclude/download/test-exclude-4.2.3.tgz", + "requires": { + "arrify": "^1.0.1", + "micromatch": "^2.3.11", + "object-assign": "^4.1.0", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1" + }, + "dependencies": { + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz" + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-2.3.11.tgz", + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + }, + "dependencies": {} + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-1.0.1.tgz", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": {} + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-1.0.1.tgz" + } + } + }, + "_test-exclude@5.2.3@test-exclude": { + "version": "https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-4.0.0.tgz", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": {} + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + } + } + }, + "_text-table@0.2.0@text-table": { + "version": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz" + }, + "_thenify-all@1.6.0@thenify-all": { + "version": "https://registry.nlark.com/thenify-all/download/thenify-all-1.6.0.tgz", + "requires": { + "thenify": ">= 3.1.0 < 4" + }, + "dependencies": { + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/thenify/download/thenify-3.3.1.tgz", + "requires": { + "any-promise": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "_thenify@3.3.1@thenify": { + "version": "https://registry.nlark.com/thenify/download/thenify-3.3.1.tgz", + "requires": { + "any-promise": "^1.0.0" + }, + "dependencies": { + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + } + } + }, + "_thread-loader@2.1.3@thread-loader": { + "version": "https://registry.nlark.com/thread-loader/download/thread-loader-2.1.3.tgz", + "requires": { + "loader-runner": "^2.3.1", + "loader-utils": "^1.1.0", + "neo-async": "^2.6.0" + }, + "dependencies": { + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + } + } + }, + "_throat@4.1.0@throat": { + "version": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + }, + "_throttle-debounce@1.1.0@throttle-debounce": { + "version": "https://registry.nlark.com/throttle-debounce/download/throttle-debounce-1.1.0.tgz" + }, + "_through2@2.0.5@through2": { + "version": "https://registry.nlark.com/through2/download/through2-2.0.5.tgz", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + } + } + }, + "_through@2.3.8@through": { + "version": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz" + }, + "_thunky@1.1.0@thunky": { + "version": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz" + }, + "_timers-browserify@2.0.12@timers-browserify": { + "version": "https://registry.nlark.com/timers-browserify/download/timers-browserify-2.0.12.tgz", + "requires": { + "setimmediate": "^1.0.4" + }, + "dependencies": { + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/setimmediate/download/setimmediate-1.0.5.tgz" + } + } + }, + "_timsort@0.3.0@timsort": { + "version": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz" + }, + "_tmp@0.0.33@tmp": { + "version": "https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz", + "requires": { + "os-tmpdir": "~1.0.2" + }, + "dependencies": { + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz" + } + } + }, + "_tmpl@1.0.4@tmpl": { + "version": "https://registry.nlark.com/tmpl/download/tmpl-1.0.4.tgz" + }, + "_to-arraybuffer@1.0.1@to-arraybuffer": { + "version": "https://registry.npm.taobao.org/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz" + }, + "_to-fast-properties@1.0.3@to-fast-properties": { + "version": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + }, + "_to-fast-properties@2.0.0@to-fast-properties": { + "version": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + }, + "_to-object-path@0.3.0@to-object-path": { + "version": "https://registry.nlark.com/to-object-path/download/to-object-path-0.3.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "_to-regex-range@2.1.1@to-regex-range": { + "version": "https://registry.nlark.com/to-regex-range/download/to-regex-range-2.1.1.tgz", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + } + } + }, + "_to-regex-range@5.0.1@to-regex-range": { + "version": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "requires": { + "is-number": "^7.0.0" + }, + "dependencies": { + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz" + } + } + }, + "_to-regex@3.0.2@to-regex": { + "version": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "_toidentifier@1.0.0@toidentifier": { + "version": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + }, + "_toposort@1.0.7@toposort": { + "version": "https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz" + }, + "_tough-cookie@2.5.0@tough-cookie": { + "version": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "_tough-cookie@3.0.1@tough-cookie": { + "version": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-3.0.1.tgz", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "_tr46@1.0.1@tr46": { + "version": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "_traverse@0.6.6@traverse": { + "version": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz" + }, + "_trim-right@1.0.1@trim-right": { + "version": "https://registry.nlark.com/trim-right/download/trim-right-1.0.1.tgz?cache=0&sync_timestamp=1619002842644&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftrim-right%2Fdownload%2Ftrim-right-1.0.1.tgz" + }, + "_tryer@1.0.1@tryer": { + "version": "https://registry.nlark.com/tryer/download/tryer-1.0.1.tgz" + }, + "_ts-jest@24.3.0@ts-jest": { + "version": "https://registry.nlark.com/ts-jest/download/ts-jest-24.3.0.tgz?cache=0&sync_timestamp=1622995664837&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fts-jest%2Fdownload%2Fts-jest-24.3.0.tgz", + "requires": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "dependencies": { + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.nlark.com/bs-logger/download/bs-logger-0.2.6.tgz", + "requires": { + "fast-json-stable-stringify": "2.x" + }, + "dependencies": {} + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-10.1.0.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-10.1.0.tgz", + "requires": { + "camelcase": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "_ts-pnp@1.2.0@ts-pnp": { + "version": "https://registry.nlark.com/ts-pnp/download/ts-pnp-1.2.0.tgz" + }, + "_tsconfig@7.0.0@tsconfig": { + "version": "https://registry.nlark.com/tsconfig/download/tsconfig-7.0.0.tgz", + "requires": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + }, + "dependencies": { + "@types/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/@types/strip-bom/download/@types/strip-bom-3.0.0.tgz" + }, + "@types/strip-json-comments": { + "version": "0.0.30", + "resolved": "https://registry.nlark.com/@types/strip-json-comments/download/@types/strip-json-comments-0.0.30.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz" + } + } + }, + "_tslib@1.14.1@tslib": { + "version": "https://registry.npm.taobao.org/tslib/download/tslib-1.14.1.tgz" + }, + "_tty-browserify@0.0.0@tty-browserify": { + "version": "https://registry.nlark.com/tty-browserify/download/tty-browserify-0.0.0.tgz" + }, + "_tunnel-agent@0.6.0@tunnel-agent": { + "version": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "_tweetnacl@0.14.5@tweetnacl": { + "version": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + }, + "_type-check@0.3.2@type-check": { + "version": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + } + } + }, + "_type-fest@0.21.3@type-fest": { + "version": "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz" + }, + "_type-fest@0.6.0@type-fest": { + "version": "https://registry.nlark.com/type-fest/download/type-fest-0.6.0.tgz" + }, + "_type-fest@0.8.1@type-fest": { + "version": "https://registry.nlark.com/type-fest/download/type-fest-0.8.1.tgz" + }, + "_type-is@1.6.18@type-is": { + "version": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": { + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + } + } + }, + "_typedarray@0.0.6@typedarray": { + "version": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz" + }, + "_uglify-js@3.4.10@uglify-js": { + "version": "https://registry.nlark.com/uglify-js/download/uglify-js-3.4.10.tgz", + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.nlark.com/commander/download/commander-2.19.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_unbox-primitive@1.0.1@unbox-primitive": { + "version": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "_unicode-canonical-property-names-ecmascript@1.0.4@unicode-canonical-property-names-ecmascript": { + "version": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + }, + "_unicode-match-property-ecmascript@1.0.4@unicode-match-property-ecmascript": { + "version": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-1.0.4.tgz", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "dependencies": { + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.1.0.tgz" + } + } + }, + "_unicode-match-property-value-ecmascript@1.2.0@unicode-match-property-value-ecmascript": { + "version": "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.2.0.tgz" + }, + "_unicode-property-aliases-ecmascript@1.1.0@unicode-property-aliases-ecmascript": { + "version": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.1.0.tgz" + }, + "_unidecode@0.1.8@unidecode": { + "version": "https://registry.nlark.com/unidecode/download/unidecode-0.1.8.tgz" + }, + "_union-value@1.0.1@union-value": { + "version": "https://registry.nlark.com/union-value/download/union-value-1.0.1.tgz", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": {} + } + } + }, + "_uniq@1.0.1@uniq": { + "version": "https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz" + }, + "_uniqs@2.0.0@uniqs": { + "version": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + }, + "_unique-filename@1.1.1@unique-filename": { + "version": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": { + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz", + "requires": { + "imurmurhash": "^0.1.4" + }, + "dependencies": {} + } + } + }, + "_unique-slug@2.0.2@unique-slug": { + "version": "https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz", + "requires": { + "imurmurhash": "^0.1.4" + }, + "dependencies": { + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + } + } + }, + "_universalify@0.1.2@universalify": { + "version": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz" + }, + "_unpipe@1.0.0@unpipe": { + "version": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + }, + "_unquote@1.1.1@unquote": { + "version": "https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz" + }, + "_unset-value@1.0.0@unset-value": { + "version": "https://registry.nlark.com/unset-value/download/unset-value-1.0.0.tgz", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/has-value/download/has-value-0.3.1.tgz", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "_upath@1.2.0@upath": { + "version": "https://registry.nlark.com/upath/download/upath-1.2.0.tgz" + }, + "_upper-case@1.1.3@upper-case": { + "version": "https://registry.nlark.com/upper-case/download/upper-case-1.1.3.tgz" + }, + "_uri-js@4.4.1@uri-js": { + "version": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "_urix@0.1.0@urix": { + "version": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + }, + "_url-loader@2.3.0@url-loader": { + "version": "https://registry.nlark.com/url-loader/download/url-loader-2.3.0.tgz", + "requires": { + "loader-utils": "^1.2.3", + "mime": "^2.4.4", + "schema-utils": "^2.5.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "_url-parse@1.5.1@url-parse": { + "version": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": { + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + }, + "_url-slug@2.0.0@url-slug": { + "version": "https://registry.nlark.com/url-slug/download/url-slug-2.0.0.tgz?cache=0&sync_timestamp=1620876645815&other_urls=https%3A%2F%2Fregistry.nlark.com%2Furl-slug%2Fdownload%2Furl-slug-2.0.0.tgz", + "requires": { + "unidecode": "0.1.8" + }, + "dependencies": { + "unidecode": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/unidecode/download/unidecode-0.1.8.tgz" + } + } + }, + "_url@0.11.0@url": { + "version": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz" + } + } + }, + "_use@3.1.1@use": { + "version": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + }, + "_util-deprecate@1.0.2@util-deprecate": { + "version": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + }, + "_util.promisify@1.0.0@util.promisify": { + "version": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.0.tgz", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": {} + } + } + }, + "_util.promisify@1.0.1@util.promisify": { + "version": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": {} + } + } + }, + "_util.promisify@1.1.1@util.promisify": { + "version": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "requires": { + "is-callable": "^1.1.3" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": {} + } + } + }, + "_util@0.10.3@util": { + "version": "https://registry.nlark.com/util/download/util-0.10.3.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.10.3.tgz", + "requires": { + "inherits": "2.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.1.tgz" + } + } + }, + "_util@0.11.1@util": { + "version": "https://registry.nlark.com/util/download/util-0.11.1.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.11.1.tgz", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + } + } + }, + "_utila@0.4.0@utila": { + "version": "https://registry.nlark.com/utila/download/utila-0.4.0.tgz" + }, + "_utils-merge@1.0.1@utils-merge": { + "version": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + }, + "_uuid@3.4.0@uuid": { + "version": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + }, + "_v8-compile-cache@2.3.0@v8-compile-cache": { + "version": "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz" + }, + "_validate-npm-package-license@3.0.4@validate-npm-package-license": { + "version": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": { + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": {} + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "_vary@1.1.2@vary": { + "version": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + }, + "_vendors@1.0.4@vendors": { + "version": "https://registry.nlark.com/vendors/download/vendors-1.0.4.tgz" + }, + "_verror@1.10.0@verror": { + "version": "https://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "extsprintf": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz" + } + } + }, + "_vm-browserify@1.1.2@vm-browserify": { + "version": "https://registry.nlark.com/vm-browserify/download/vm-browserify-1.1.2.tgz" + }, + "_vue-eslint-parser@7.6.0@vue-eslint-parser": { + "version": "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.6.0.tgz", + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.15" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": {} + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_vue-hot-reload-api@2.3.4@vue-hot-reload-api": { + "version": "https://registry.nlark.com/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz" + }, + "_vue-jest@3.0.7@vue-jest": { + "version": "https://registry.nlark.com/vue-jest/download/vue-jest-3.0.7.tgz?cache=0&sync_timestamp=1622444650910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-jest%2Fdownload%2Fvue-jest-3.0.7.tgz", + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", + "chalk": "^2.1.0", + "deasync": "^0.1.15", + "extract-from-css": "^0.4.4", + "find-babel-config": "^1.1.0", + "js-beautify": "^1.6.14", + "node-cache": "^4.1.1", + "object-assign": "^4.1.1", + "source-map": "^0.5.6", + "tsconfig": "^7.0.0", + "vue-template-es2015-compiler": "^1.6.0" + }, + "dependencies": { + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.2", + "resolved": "https://registry.nlark.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "deasync": { + "version": "0.1.21", + "resolved": "https://registry.nlark.com/deasync/download/deasync-0.1.21.tgz", + "requires": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + }, + "dependencies": {} + }, + "extract-from-css": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/extract-from-css/download/extract-from-css-0.4.4.tgz", + "requires": { + "css": "^2.1.0" + }, + "dependencies": {} + }, + "find-babel-config": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/find-babel-config/download/find-babel-config-1.2.0.tgz", + "requires": { + "json5": "^0.5.1", + "path-exists": "^3.0.0" + }, + "dependencies": {} + }, + "js-beautify": { + "version": "1.13.13", + "resolved": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": {} + }, + "node-cache": { + "version": "4.2.1", + "resolved": "https://registry.nlark.com/node-cache/download/node-cache-4.2.1.tgz", + "requires": { + "clone": "2.x", + "lodash": "^4.17.15" + }, + "dependencies": {} + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "tsconfig": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/tsconfig/download/tsconfig-7.0.0.tgz", + "requires": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + }, + "dependencies": {} + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + } + } + }, + "_vue-loader@15.9.7@vue-loader": { + "version": "https://registry.nlark.com/vue-loader/download/vue-loader-15.9.7.tgz?cache=0&sync_timestamp=1620717814924&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-loader%2Fdownload%2Fvue-loader-15.9.7.tgz", + "requires": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "dependencies": { + "@vue/component-compiler-utils": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.2.1.tgz", + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": {} + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.nlark.com/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz" + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz", + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_vue-router@3.0.6@vue-router": { + "version": "https://registry.nlark.com/vue-router/download/vue-router-3.0.6.tgz" + }, + "_vue-style-loader@4.1.3@vue-style-loader": { + "version": "https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz", + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "_vue-template-compiler@2.6.10@vue-template-compiler": { + "version": "https://registry.nlark.com/vue-template-compiler/download/vue-template-compiler-2.6.10.tgz", + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + }, + "dependencies": { + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/de-indent/download/de-indent-1.0.2.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + } + } + }, + "_vue-template-es2015-compiler@1.9.1@vue-template-es2015-compiler": { + "version": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + }, + "_vue@2.6.10@vue": { + "version": "https://registry.nlark.com/vue/download/vue-2.6.10.tgz" + }, + "_vuex@3.1.0@vuex": { + "version": "https://registry.nlark.com/vuex/download/vuex-3.1.0.tgz?cache=0&sync_timestamp=1621869174862&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvuex%2Fdownload%2Fvuex-3.1.0.tgz" + }, + "_w3c-hr-time@1.0.2@w3c-hr-time": { + "version": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": { + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz" + } + } + }, + "_w3c-xmlserializer@1.1.2@w3c-xmlserializer": { + "version": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-1.1.2.tgz", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + }, + "_walker@1.0.7@walker": { + "version": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": { + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/makeerror/download/makeerror-1.0.11.tgz", + "requires": { + "tmpl": "1.0.x" + }, + "dependencies": {} + } + } + }, + "_watchpack-chokidar2@2.0.1@watchpack-chokidar2": { + "version": "https://registry.nlark.com/watchpack-chokidar2/download/watchpack-chokidar2-2.0.1.tgz", + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "_watchpack@1.7.5@watchpack": { + "version": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": { + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/watchpack-chokidar2/download/watchpack-chokidar2-2.0.1.tgz", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": {} + } + } + }, + "_wbuf@1.7.3@wbuf": { + "version": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "_wcwidth@1.0.1@wcwidth": { + "version": "https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz", + "requires": { + "defaults": "^1.0.3" + }, + "dependencies": { + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz", + "requires": { + "clone": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_webidl-conversions@4.0.2@webidl-conversions": { + "version": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "_webpack-bundle-analyzer@3.9.0@webpack-bundle-analyzer": { + "version": "https://registry.nlark.com/webpack-bundle-analyzer/download/webpack-bundle-analyzer-3.9.0.tgz?cache=0&sync_timestamp=1621259036556&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-bundle-analyzer%2Fdownload%2Fwebpack-bundle-analyzer-3.9.0.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.19", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz" + }, + "bfj": { + "version": "6.1.2", + "resolved": "https://registry.nlark.com/bfj/download/bfj-6.1.2.tgz", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.nlark.com/ejs/download/ejs-2.7.4.tgz" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": {} + }, + "filesize": { + "version": "3.6.1", + "resolved": "https://registry.nlark.com/filesize/download/filesize-3.6.1.tgz" + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/gzip-size/download/gzip-size-5.1.1.tgz", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz" + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": {} + } + } + }, + "_webpack-chain@6.5.1@webpack-chain": { + "version": "https://registry.nlark.com/webpack-chain/download/webpack-chain-6.5.1.tgz", + "requires": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + }, + "dependencies": { + "deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz" + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/javascript-stringify/download/javascript-stringify-2.1.0.tgz" + } + } + }, + "_webpack-dev-middleware@3.7.3@webpack-dev-middleware": { + "version": "https://registry.nlark.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + } + } + }, + "_webpack-dev-server@3.11.2@webpack-dev-server": { + "version": "https://registry.nlark.com/webpack-dev-server/download/webpack-dev-server-3.11.2.tgz?cache=0&sync_timestamp=1620307433525&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-dev-server%2Fdownload%2Fwebpack-dev-server-3.11.2.tgz", + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.nlark.com/ansi-html/download/ansi-html-0.0.7.tgz" + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": {} + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": {} + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": {} + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz" + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/del/download/del-4.1.1.tgz", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": {} + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": {} + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/html-entities/download/html-entities-1.4.0.tgz" + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-0.19.1.tgz?cache=0&sync_timestamp=1620409562092&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-0.19.1.tgz", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": {} + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/internal-ip/download/internal-ip-4.3.0.tgz", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "dependencies": {} + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-3.0.3.tgz" + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/killable/download/killable-1.0.1.tgz" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.nlark.com/loglevel/download/loglevel-1.7.1.tgz" + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/opn/download/opn-5.5.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/p-retry/download/p-retry-3.0.1.tgz", + "requires": { + "retry": "^0.12.0" + }, + "dependencies": {} + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz", + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": {} + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.nlark.com/sockjs/download/sockjs-0.3.21.tgz", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": {} + }, + "sockjs-client": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/sockjs-client/download/sockjs-client-1.5.1.tgz", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.1" + }, + "dependencies": {} + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": {} + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": {} + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.nlark.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": {} + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": {} + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "_webpack-log@2.0.0@webpack-log": { + "version": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "_webpack-merge@4.2.2@webpack-merge": { + "version": "https://registry.nlark.com/webpack-merge/download/webpack-merge-4.2.2.tgz", + "requires": { + "lodash": "^4.17.15" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "_webpack-sources@1.4.3@webpack-sources": { + "version": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "_webpack@4.46.0@webpack": { + "version": "https://registry.nlark.com/webpack/download/webpack-4.46.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": {} + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "_websocket-driver@0.7.4@websocket-driver": { + "version": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": { + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz" + } + } + }, + "_websocket-extensions@0.1.4@websocket-extensions": { + "version": "https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz" + }, + "_whatwg-encoding@1.0.5@whatwg-encoding": { + "version": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + } + } + }, + "_whatwg-mimetype@2.3.0@whatwg-mimetype": { + "version": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "_whatwg-url@6.5.0@whatwg-url": { + "version": "https://registry.nlark.com/whatwg-url/download/whatwg-url-6.5.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "_whatwg-url@7.1.0@whatwg-url": { + "version": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "_which-boxed-primitive@1.0.2@which-boxed-primitive": { + "version": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "dependencies": { + "is-bigint": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.2.tgz?cache=0&sync_timestamp=1620162102171&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.2.tgz" + }, + "is-boolean-object": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.1.tgz?cache=0&sync_timestamp=1620428460670&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-boolean-object%2Fdownload%2Fis-boolean-object-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.2" + }, + "dependencies": {} + }, + "is-number-object": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.5.tgz?cache=0&sync_timestamp=1620421302435&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-number-object%2Fdownload%2Fis-number-object-1.0.5.tgz" + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "_which-module@2.0.0@which-module": { + "version": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz" + }, + "_which@1.3.1@which": { + "version": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + }, + "_which@2.0.2@which": { + "version": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + }, + "_word-wrap@1.2.3@word-wrap": { + "version": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz" + }, + "_worker-farm@1.7.0@worker-farm": { + "version": "https://registry.nlark.com/worker-farm/download/worker-farm-1.7.0.tgz", + "requires": { + "errno": "~0.1.7" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "_wrap-ansi@5.1.0@wrap-ansi": { + "version": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-5.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "_wrap-ansi@6.2.0@wrap-ansi": { + "version": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-6.2.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": {} + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_wrap-ansi@7.0.0@wrap-ansi": { + "version": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": {} + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "_wrappy@1.0.2@wrappy": { + "version": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + }, + "_write-file-atomic@2.4.1@write-file-atomic": { + "version": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + }, + "_write@1.0.3@write": { + "version": "https://registry.nlark.com/write/download/write-1.0.3.tgz", + "requires": { + "mkdirp": "^0.5.1" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "_ws@5.2.3@ws": { + "version": "https://registry.nlark.com/ws/download/ws-5.2.3.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": { + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + } + } + }, + "_ws@6.2.2@ws": { + "version": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": { + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + } + } + }, + "_ws@7.4.6@ws": { + "version": "https://registry.nlark.com/ws/download/ws-7.4.6.tgz" + }, + "_xml-name-validator@3.0.0@xml-name-validator": { + "version": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + }, + "_xmlchars@2.2.0@xmlchars": { + "version": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz" + }, + "_xtend@4.0.2@xtend": { + "version": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + }, + "_y18n@4.0.3@y18n": { + "version": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + }, + "_y18n@5.0.8@y18n": { + "version": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz" + }, + "_yallist@2.1.2@yallist": { + "version": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz" + }, + "_yallist@3.1.1@yallist": { + "version": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz" + }, + "_yallist@4.0.0@yallist": { + "version": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + }, + "_yargs-parser@10.1.0@yargs-parser": { + "version": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-10.1.0.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-10.1.0.tgz", + "requires": { + "camelcase": "^4.1.0" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-4.1.0.tgz" + } + } + }, + "_yargs-parser@13.1.2@yargs-parser": { + "version": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz" + } + } + }, + "_yargs-parser@20.2.7@yargs-parser": { + "version": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.7.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.7.tgz" + }, + "_yargs@13.3.2@yargs": { + "version": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.3.tgz" + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "_yargs@16.2.0@yargs": { + "version": "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": {} + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz" + }, + "yargs-parser": { + "version": "20.2.7", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.7.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.7.tgz" + } + } + }, + "_yorkie@2.0.0@yorkie": { + "version": "https://registry.nlark.com/yorkie/download/yorkie-2.0.0.tgz", + "requires": { + "execa": "^0.8.0", + "is-ci": "^1.0.10", + "normalize-path": "^1.0.0", + "strip-indent": "^2.0.0" + }, + "dependencies": { + "execa": { + "version": "0.8.0", + "resolved": "https://registry.nlark.com/execa/download/execa-0.8.0.tgz", + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-1.2.1.tgz", + "requires": { + "ci-info": "^1.5.0" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-1.0.0.tgz" + }, + "strip-indent": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-indent/download/strip-indent-2.0.0.tgz?cache=0&sync_timestamp=1620053263051&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-indent%2Fdownload%2Fstrip-indent-2.0.0.tgz" + } + } + }, + "abab": { + "version": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "abbrev": { + "version": "https://registry.nlark.com/abbrev/download/abbrev-1.1.1.tgz" + }, + "accepts": { + "version": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": { + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + } + } + }, + "acorn": { + "version": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-globals": { + "version": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-6.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-6.2.0.tgz" + } + } + }, + "acorn-jsx": { + "version": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.1.tgz" + }, + "acorn-walk": { + "version": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz" + }, + "address": { + "version": "https://registry.nlark.com/address/download/address-1.1.2.tgz" + }, + "aggregate-error": { + "version": "https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915056089&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz" + } + } + }, + "ajv": { + "version": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "ajv-errors": { + "version": "https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz" + }, + "ajv-keywords": { + "version": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "alphanum-sort": { + "version": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "ansi-colors": { + "version": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "ansi-escapes": { + "version": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz" + } + } + }, + "ansi-html": { + "version": "https://registry.nlark.com/ansi-html/download/ansi-html-0.0.7.tgz" + }, + "ansi-regex": { + "version": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + }, + "ansi-styles": { + "version": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": {} + } + } + }, + "any-promise": { + "version": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + }, + "anymatch": { + "version": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "dependencies": { + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + } + } + }, + "aproba": { + "version": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "arch": { + "version": "https://registry.nlark.com/arch/download/arch-2.2.0.tgz" + }, + "argparse": { + "version": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz" + } + } + }, + "arr-diff": { + "version": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "arr-flatten": { + "version": "https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz" + }, + "arr-union": { + "version": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "array-equal": { + "version": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "array-flatten": { + "version": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz" + }, + "array-union": { + "version": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": { + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + } + } + }, + "array-uniq": { + "version": "https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz?cache=0&sync_timestamp=1620042045402&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farray-uniq%2Fdownload%2Farray-uniq-1.0.3.tgz" + }, + "array-unique": { + "version": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "arrify": { + "version": "https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz" + }, + "asn1": { + "version": "https://registry.npm.taobao.org/asn1/download/asn1-0.2.4.tgz", + "requires": { + "safer-buffer": "~2.1.0" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "asn1.js": { + "version": "https://registry.nlark.com/asn1.js/download/asn1.js-5.4.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "assert": { + "version": "https://registry.nlark.com/assert/download/assert-1.5.0.tgz", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.nlark.com/util/download/util-0.10.3.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.10.3.tgz", + "requires": { + "inherits": "2.0.1" + }, + "dependencies": {} + } + } + }, + "assert-plus": { + "version": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "assign-symbols": { + "version": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "astral-regex": { + "version": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "async": { + "version": "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz", + "requires": { + "lodash": "^4.17.14" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "async-each": { + "version": "https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz" + }, + "async-limiter": { + "version": "https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz" + }, + "async-validator": { + "version": "https://registry.nlark.com/async-validator/download/async-validator-1.8.5.tgz", + "requires": { + "babel-runtime": "6.x" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + } + } + }, + "asynckit": { + "version": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz" + }, + "atob": { + "version": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz" + }, + "autoprefixer": { + "version": "9.5.1", + "resolved": "https://registry.nlark.com/autoprefixer/download/autoprefixer-9.5.1.tgz", + "dev": true, + "requires": { + "browserslist": "^4.5.4", + "caniuse-lite": "^1.0.30000957", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.14", + "postcss-value-parser": "^3.3.1" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz" + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "aws-sign2": { + "version": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "aws4": { + "version": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "axios": { + "version": "0.18.1", + "resolved": "https://registry.nlark.com/axios/download/axios-0.18.1.tgz", + "requires": { + "follow-redirects": "1.5.10", + "is-buffer": "^2.0.2" + }, + "dependencies": { + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.5.10.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.5.10.tgz", + "requires": { + "debug": "=3.1.0" + }, + "dependencies": {} + }, + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/is-buffer/download/is-buffer-2.0.5.tgz" + } + } + }, + "babel-code-frame": { + "version": "https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": { + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-3.0.2.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-3.0.2.tgz" + } + } + }, + "babel-core": { + "version": "https://registry.nlark.com/babel-core/download/babel-core-7.0.0-bridge.0.tgz" + }, + "babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.nlark.com/babel-eslint/download/babel-eslint-10.1.0.tgz", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + } + } + }, + "babel-generator": { + "version": "https://registry.nlark.com/babel-generator/download/babel-generator-6.26.1.tgz", + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + }, + "dependencies": { + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/detect-indent/download/detect-indent-4.0.0.tgz", + "requires": { + "repeating": "^2.0.0" + }, + "dependencies": {} + }, + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-1.3.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/trim-right/download/trim-right-1.0.1.tgz?cache=0&sync_timestamp=1619002842644&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftrim-right%2Fdownload%2Ftrim-right-1.0.1.tgz" + } + } + }, + "babel-helper-vue-jsx-merge-props": { + "version": "https://registry.nlark.com/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz" + }, + "babel-jest": { + "version": "23.6.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-23.6.0.tgz", + "dev": true, + "requires": { + "babel-plugin-istanbul": "^4.1.6", + "babel-preset-jest": "^23.2.0" + }, + "dependencies": { + "babel-plugin-istanbul": { + "version": "4.1.6", + "resolved": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-4.1.6.tgz", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.13.0", + "find-up": "^2.1.0", + "istanbul-lib-instrument": "^1.10.1", + "test-exclude": "^4.2.1" + }, + "dependencies": {} + }, + "babel-preset-jest": { + "version": "23.2.0", + "resolved": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-23.2.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-23.2.0.tgz", + "requires": { + "babel-plugin-jest-hoist": "^23.2.0", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" + }, + "dependencies": {} + } + } + }, + "babel-loader": { + "version": "https://registry.nlark.com/babel-loader/download/babel-loader-8.2.2.tgz", + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "babel-messages": { + "version": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "babel-plugin-istanbul": { + "version": "https://registry.nlark.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623281049469&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "babel-plugin-jest-hoist": { + "version": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-24.9.0.tgz", + "requires": { + "@types/babel__traverse": "^7.0.6" + }, + "dependencies": { + "@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240677670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz", + "requires": { + "@babel/types": "^7.3.0" + }, + "dependencies": {} + } + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "https://registry.nlark.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "@babel/compat-data": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz" + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "https://registry.nlark.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.9.1" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + }, + "core-js-compat": { + "version": "3.14.0", + "resolved": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": {} + } + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "https://registry.nlark.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.nlark.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.3.tgz?cache=0&sync_timestamp=1622025400731&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", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": {} + } + } + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + }, + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "https://registry.nlark.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + }, + "dependencies": { + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.nlark.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "babel-plugin-transform-strict-mode": { + "version": "https://registry.nlark.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "babel-preset-jest": { + "version": "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-24.9.0.tgz?cache=0&sync_timestamp=1621937311522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-24.9.0.tgz", + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "dependencies": {} + }, + "babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz?cache=0&sync_timestamp=1621937309340&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-24.9.0.tgz", + "requires": { + "@types/babel__traverse": "^7.0.6" + }, + "dependencies": {} + } + } + }, + "babel-runtime": { + "version": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz" + } + } + }, + "babel-template": { + "version": "https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "babel-traverse": { + "version": "https://registry.nlark.com/babel-traverse/download/babel-traverse-6.26.0.tgz", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": { + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": {} + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.nlark.com/babel-messages/download/babel-messages-6.23.0.tgz", + "requires": { + "babel-runtime": "^6.22.0" + }, + "dependencies": {} + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": {} + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.nlark.com/globals/download/globals-9.18.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-9.18.0.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "babel-types": { + "version": "https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz" + } + } + }, + "babylon": { + "version": "https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz" + }, + "balanced-match": { + "version": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz" + }, + "base": { + "version": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/cache-base/download/cache-base-1.0.1.tgz", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": {} + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": {} + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/mixin-deep/download/mixin-deep-1.3.2.tgz", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/pascalcase/download/pascalcase-0.1.1.tgz" + } + } + }, + "base64-js": { + "version": "https://registry.nlark.com/base64-js/download/base64-js-1.5.1.tgz" + }, + "batch": { + "version": "https://registry.nlark.com/batch/download/batch-0.6.1.tgz" + }, + "bcrypt-pbkdf": { + "version": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "requires": { + "tweetnacl": "^0.14.3" + }, + "dependencies": { + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + } + } + }, + "bfj": { + "version": "https://registry.nlark.com/bfj/download/bfj-6.1.2.tgz", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "check-types": { + "version": "8.0.3", + "resolved": "https://registry.nlark.com/check-types/download/check-types-8.0.3.tgz" + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz" + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tryer/download/tryer-1.0.1.tgz" + } + } + }, + "big.js": { + "version": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "binary-extensions": { + "version": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz" + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz", + "requires": { + "file-uri-to-path": "1.0.0" + }, + "dependencies": { + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz" + } + } + }, + "bluebird": { + "version": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "bn.js": { + "version": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "body-parser": { + "version": "https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/raw-body/download/raw-body-2.4.0.tgz", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": {} + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": {} + } + } + }, + "bonjour": { + "version": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.1.tgz", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "dependencies": {} + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/dns-equal/download/dns-equal-1.0.0.tgz" + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "requires": { + "buffer-indexof": "^1.0.0" + }, + "dependencies": {} + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.nlark.com/multicast-dns/download/multicast-dns-6.2.3.tgz", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "dependencies": {} + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz" + } + } + }, + "boolbase": { + "version": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "brace-expansion": { + "version": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz" + } + } + }, + "braces": { + "version": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "requires": { + "fill-range": "^7.0.1" + }, + "dependencies": { + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "requires": { + "to-regex-range": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "brorand": { + "version": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + }, + "browser-process-hrtime": { + "version": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz" + }, + "browser-resolve": { + "version": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.1.7.tgz" + } + } + }, + "browserify-aes": { + "version": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "browserify-cipher": { + "version": "https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + }, + "dependencies": { + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + } + } + }, + "browserify-des": { + "version": "https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/des.js/download/des.js-1.0.1.tgz", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "browserify-rsa": { + "version": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "browserify-sign": { + "version": "https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "browserify-zlib": { + "version": "https://registry.nlark.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz", + "requires": { + "pako": "~1.0.5" + }, + "dependencies": { + "pako": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/pako/download/pako-1.0.11.tgz" + } + } + }, + "browserslist": { + "version": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": { + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "electron-to-chromium": { + "version": "1.3.752", + "resolved": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "node-releases": { + "version": "1.1.73", + "resolved": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + } + } + }, + "bs-logger": { + "version": "https://registry.nlark.com/bs-logger/download/bs-logger-0.2.6.tgz", + "requires": { + "fast-json-stable-stringify": "2.x" + }, + "dependencies": { + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + } + } + }, + "bser": { + "version": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "requires": { + "node-int64": "^0.4.0" + }, + "dependencies": { + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz" + } + } + }, + "buffer": { + "version": "https://registry.nlark.com/buffer/download/buffer-4.9.2.tgz", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + }, + "dependencies": { + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/base64-js/download/base64-js-1.5.1.tgz" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + } + } + }, + "buffer-from": { + "version": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "buffer-indexof": { + "version": "https://registry.nlark.com/buffer-indexof/download/buffer-indexof-1.1.1.tgz" + }, + "buffer-json": { + "version": "https://registry.nlark.com/buffer-json/download/buffer-json-2.0.0.tgz" + }, + "buffer-xor": { + "version": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz" + }, + "builtin-status-codes": { + "version": "https://registry.npm.taobao.org/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz" + }, + "bytes": { + "version": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "cacache": { + "version": "https://registry.nlark.com/cacache/download/cacache-13.0.1.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-13.0.1.tgz", + "requires": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/fs-minipass/download/fs-minipass-2.1.0.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": {} + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/minipass-collect/download/minipass-collect-1.0.2.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/minipass-flush/download/minipass-flush-1.0.5.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/minipass-pipeline/download/minipass-pipeline-1.2.4.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": {} + }, + "p-map": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/p-map/download/p-map-3.0.0.tgz", + "requires": { + "aggregate-error": "^3.0.0" + }, + "dependencies": {} + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "ssri": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz", + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "dependencies": {} + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "cache-base": { + "version": "https://registry.nlark.com/cache-base/download/cache-base-1.0.1.tgz", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": { + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "dependencies": {} + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-value/download/has-value-1.0.0.tgz", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": {} + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/to-object-path/download/to-object-path-0.3.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/union-value/download/union-value-1.0.1.tgz", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": {} + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/unset-value/download/unset-value-1.0.0.tgz", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "cache-loader": { + "version": "https://registry.nlark.com/cache-loader/download/cache-loader-4.1.0.tgz", + "requires": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "dependencies": { + "buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/buffer-json/download/buffer-json-2.0.0.tgz" + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "call-bind": { + "version": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "call-me-maybe": { + "version": "https://registry.nlark.com/call-me-maybe/download/call-me-maybe-1.0.1.tgz" + }, + "caller-callsite": { + "version": "https://registry.nlark.com/caller-callsite/download/caller-callsite-2.0.0.tgz", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-2.0.0.tgz" + } + } + }, + "caller-path": { + "version": "https://registry.nlark.com/caller-path/download/caller-path-2.0.0.tgz", + "requires": { + "caller-callsite": "^2.0.0" + }, + "dependencies": { + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/caller-callsite/download/caller-callsite-2.0.0.tgz", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "callsites": { + "version": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "camel-case": { + "version": "https://registry.nlark.com/camel-case/download/camel-case-3.0.0.tgz", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + }, + "dependencies": { + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": {} + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/upper-case/download/upper-case-1.1.3.tgz" + } + } + }, + "camelcase": { + "version": "https://registry.npm.taobao.org/camelcase/download/camelcase-6.2.0.tgz" + }, + "caniuse-api": { + "version": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz" + } + } + }, + "capture-exit": { + "version": "https://registry.nlark.com/capture-exit/download/capture-exit-2.0.0.tgz", + "requires": { + "rsvp": "^4.8.4" + }, + "dependencies": { + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.nlark.com/rsvp/download/rsvp-4.8.5.tgz" + } + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "https://registry.nlark.com/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz" + }, + "caseless": { + "version": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "chardet": { + "version": "https://registry.nlark.com/chardet/download/chardet-0.7.0.tgz" + }, + "check-types": { + "version": "https://registry.nlark.com/check-types/download/check-types-8.0.3.tgz" + }, + "chokidar": { + "version": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "dependencies": {} + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/braces/download/braces-3.0.2.tgz", + "requires": { + "fill-range": "^7.0.1" + }, + "dependencies": {} + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": {} + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "requires": { + "binary-extensions": "^2.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/readdirp/download/readdirp-3.5.0.tgz", + "requires": { + "picomatch": "^2.2.1" + }, + "dependencies": {} + } + } + }, + "chownr": { + "version": "https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz" + }, + "chrome-trace-event": { + "version": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "ci-info": { + "version": "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz" + }, + "cipher-base": { + "version": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "class-utils": { + "version": "https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/static-extend/download/static-extend-0.1.2.tgz", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": {} + } + } + }, + "clean-css": { + "version": "https://registry.nlark.com/clean-css/download/clean-css-4.2.3.tgz", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "clean-stack": { + "version": "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915056089&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz" + }, + "cli-cursor": { + "version": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz", + "requires": { + "restore-cursor": "^3.1.0" + }, + "dependencies": { + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "cli-highlight": { + "version": "https://registry.nlark.com/cli-highlight/download/cli-highlight-2.1.11.tgz", + "requires": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "dependencies": { + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": {} + }, + "highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.nlark.com/highlight.js/download/highlight.js-10.7.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhighlight.js%2Fdownload%2Fhighlight.js-10.7.3.tgz" + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/mz/download/mz-2.7.0.tgz", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + }, + "dependencies": {} + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-5.1.1.tgz" + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": {} + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "dependencies": {} + } + } + }, + "cli-spinners": { + "version": "https://registry.nlark.com/cli-spinners/download/cli-spinners-2.6.0.tgz" + }, + "cli-width": { + "version": "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz" + }, + "clipboardy": { + "version": "https://registry.nlark.com/clipboardy/download/clipboardy-2.3.0.tgz", + "requires": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + }, + "dependencies": { + "arch": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/arch/download/arch-2.2.0.tgz" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "cliui": { + "version": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + } + } + }, + "clone": { + "version": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "clone-deep": { + "version": "https://registry.nlark.com/clone-deep/download/clone-deep-4.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/shallow-clone/download/shallow-clone-3.0.1.tgz", + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": {} + } + } + }, + "co": { + "version": "https://registry.nlark.com/co/download/co-4.6.0.tgz" + }, + "coa": { + "version": "https://registry.nlark.com/coa/download/coa-2.0.2.tgz", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.nlark.com/@types/q/download/@types/q-1.5.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fq%2Fdownload%2F%40types%2Fq-1.5.4.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/q/download/q-1.5.1.tgz" + } + } + }, + "collection-visit": { + "version": "https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "dependencies": { + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/map-visit/download/map-visit-1.0.0.tgz", + "requires": { + "object-visit": "^1.0.0" + }, + "dependencies": {} + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "color": { + "version": "https://registry.nlark.com/color/download/color-3.1.3.tgz", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-1.9.3.tgz", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": {} + }, + "color-string": { + "version": "1.5.5", + "resolved": "https://registry.nlark.com/color-string/download/color-string-1.5.5.tgz", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + }, + "dependencies": {} + } + } + }, + "color-convert": { + "version": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz?cache=0&sync_timestamp=1618752806777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolor-convert%2Fdownload%2Fcolor-convert-2.0.1.tgz", + "requires": { + "color-name": "~1.1.4" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + } + } + }, + "color-name": { + "version": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + }, + "color-string": { + "version": "https://registry.nlark.com/color-string/download/color-string-1.5.5.tgz", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": {} + } + } + }, + "colorette": { + "version": "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz" + }, + "combined-stream": { + "version": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz" + } + } + }, + "commander": { + "version": "https://registry.nlark.com/commander/download/commander-7.2.0.tgz" + }, + "commondir": { + "version": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "component-emitter": { + "version": "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz" + }, + "compressible": { + "version": "https://registry.npm.taobao.org/compressible/download/compressible-2.0.18.tgz", + "requires": { + "mime-db": ">= 1.43.0 < 2" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "compression": { + "version": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.0.0.tgz" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npm.taobao.org/compressible/download/compressible-2.0.18.tgz", + "requires": { + "mime-db": ">= 1.43.0 < 2" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "concat-map": { + "version": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz" + }, + "concat-stream": { + "version": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz" + } + } + }, + "condense-newlines": { + "version": "https://registry.nlark.com/condense-newlines/download/condense-newlines-0.2.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-whitespace": "^0.3.0", + "kind-of": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "is-whitespace": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/is-whitespace/download/is-whitespace-0.3.0.tgz" + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "config-chain": { + "version": "https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz?cache=0&sync_timestamp=1622746031285&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconfig-chain%2Fdownload%2Fconfig-chain-1.1.13.tgz", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.nlark.com/ini/download/ini-1.3.8.tgz" + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.nlark.com/proto-list/download/proto-list-1.2.4.tgz" + } + } + }, + "connect": { + "version": "3.6.6", + "resolved": "https://registry.nlark.com/connect/download/connect-3.6.6.tgz", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.0", + "parseurl": "~1.3.2", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "finalhandler": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.0.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.1", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.3.1", + "unpipe": "~1.0.0" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + } + } + }, + "connect-history-api-fallback": { + "version": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz" + }, + "console-browserify": { + "version": "https://registry.nlark.com/console-browserify/download/console-browserify-1.2.0.tgz" + }, + "consolidate": { + "version": "https://registry.nlark.com/consolidate/download/consolidate-0.15.1.tgz", + "requires": { + "bluebird": "^3.1.1" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + } + } + }, + "constants-browserify": { + "version": "https://registry.nlark.com/constants-browserify/download/constants-browserify-1.0.0.tgz" + }, + "content-disposition": { + "version": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "content-type": { + "version": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "convert-source-map": { + "version": "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.7.0.tgz", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + } + } + }, + "cookie": { + "version": "https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz" + }, + "cookie-signature": { + "version": "https://registry.nlark.com/cookie-signature/download/cookie-signature-1.0.6.tgz" + }, + "copy-concurrently": { + "version": "https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": {} + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "copy-descriptor": { + "version": "https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz" + }, + "copy-webpack-plugin": { + "version": "https://registry.nlark.com/copy-webpack-plugin/download/copy-webpack-plugin-5.1.2.tgz", + "requires": { + "cacache": "^12.0.3", + "find-cache-dir": "^2.1.0", + "glob-parent": "^3.1.0", + "globby": "^7.1.1", + "is-glob": "^4.0.1", + "loader-utils": "^1.2.3", + "minimatch": "^3.0.4", + "normalize-path": "^3.0.0", + "p-limit": "^2.2.1", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-12.0.4.tgz", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": {} + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": {} + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": {} + }, + "globby": { + "version": "7.1.1", + "resolved": "https://registry.nlark.com/globby/download/globby-7.1.1.tgz", + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": {} + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + } + } + }, + "core-js": { + "version": "3.6.5", + "resolved": "https://registry.nlark.com/core-js/download/core-js-3.6.5.tgz?cache=0&sync_timestamp=1622879591736&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-3.6.5.tgz" + }, + "core-js-compat": { + "version": "https://registry.nlark.com/core-js-compat/download/core-js-compat-3.14.0.tgz?cache=0&sync_timestamp=1622879615938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.14.0.tgz", + "requires": { + "browserslist": "^4.16.6", + "semver": "7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + } + } + }, + "core-util-is": { + "version": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "cosmiconfig": { + "version": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-fresh/download/import-fresh-2.0.0.tgz", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": {} + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": {} + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "create-ecdh": { + "version": "https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "create-hash": { + "version": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "create-hmac": { + "version": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "cross-spawn": { + "version": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz", + "requires": { + "shebang-regex": "^3.0.0" + }, + "dependencies": {} + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "crypto-browserify": { + "version": "https://registry.nlark.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "dependencies": { + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + }, + "dependencies": {} + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.nlark.com/diffie-hellman/download/diffie-hellman-5.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/public-encrypt/download/public-encrypt-4.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/randomfill/download/randomfill-1.0.4.tgz", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "css": { + "version": "https://registry.nlark.com/css/download/css-2.2.4.tgz", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + }, + "css-color-names": { + "version": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "css-declaration-sorter": { + "version": "https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz?cache=0&sync_timestamp=1620754721682&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-declaration-sorter%2Fdownload%2Fcss-declaration-sorter-4.0.1.tgz", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz" + } + } + }, + "css-loader": { + "version": "https://registry.nlark.com/css-loader/download/css-loader-3.6.0.tgz?cache=0&sync_timestamp=1621865270658&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-loader%2Fdownload%2Fcss-loader-3.6.0.tgz", + "requires": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.0", + "semver": "^6.3.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-2.0.0.tgz", + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": {} + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-3.0.3.tgz", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": {} + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": {} + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-3.0.0.tgz", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "css-select": { + "version": "https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-4.1.3.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + }, + "css-what": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/css-what/download/css-what-5.0.1.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-5.0.1.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": {} + }, + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/nth-check/download/nth-check-2.0.0.tgz", + "requires": { + "boolbase": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "css-select-base-adapter": { + "version": "https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz" + }, + "css-tree": { + "version": "https://registry.nlark.com/css-tree/download/css-tree-1.1.3.tgz", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": { + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.14.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.14.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "css-url-regex": { + "version": "https://registry.nlark.com/css-url-regex/download/css-url-regex-1.1.0.tgz" + }, + "css-what": { + "version": "https://registry.nlark.com/css-what/download/css-what-5.0.1.tgz?cache=0&sync_timestamp=1622227191786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-what%2Fdownload%2Fcss-what-5.0.1.tgz" + }, + "cssesc": { + "version": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "cssnano": { + "version": "https://registry.nlark.com/cssnano/download/cssnano-4.1.11.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": {} + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": {} + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "cssnano-preset-default": { + "version": "https://registry.nlark.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz?cache=0&sync_timestamp=1620754721682&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-declaration-sorter%2Fdownload%2Fcss-declaration-sorter-4.0.1.tgz", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": {} + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": {} + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz?cache=0&sync_timestamp=1622236593947&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-colormin%2Fdownload%2Fpostcss-colormin-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.nlark.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": {} + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": {} + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": {} + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": {} + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz?cache=0&sync_timestamp=1622236593132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-svgo%2Fdownload%2Fpostcss-svgo-4.0.3.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": {} + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "cssnano-util-get-arguments": { + "version": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "cssnano-util-get-match": { + "version": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "cssnano-util-raw-cache": { + "version": "https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "cssnano-util-same-parent": { + "version": "https://registry.nlark.com/cssnano-util-same-parent/download/cssnano-util-same-parent-4.0.1.tgz" + }, + "csso": { + "version": "https://registry.nlark.com/csso/download/csso-4.2.0.tgz", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.1.3.tgz", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": {} + } + } + }, + "cssom": { + "version": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz" + }, + "cssstyle": { + "version": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz" + } + } + }, + "cyclist": { + "version": "https://registry.nlark.com/cyclist/download/cyclist-1.0.1.tgz" + }, + "dashdash": { + "version": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + } + } + }, + "data-urls": { + "version": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + } + } + }, + "de-indent": { + "version": "https://registry.nlark.com/de-indent/download/de-indent-1.0.2.tgz" + }, + "deasync": { + "version": "https://registry.nlark.com/deasync/download/deasync-0.1.21.tgz", + "requires": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + }, + "dependencies": { + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz", + "requires": { + "file-uri-to-path": "1.0.0" + }, + "dependencies": {} + }, + "node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/node-addon-api/download/node-addon-api-1.7.2.tgz" + } + } + }, + "debug": { + "version": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz" + } + } + }, + "decamelize": { + "version": "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz" + }, + "decode-uri-component": { + "version": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz" + }, + "deep-equal": { + "version": "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.1.1.tgz", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "dependencies": { + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.0.tgz", + "requires": { + "call-bind": "^1.0.0" + }, + "dependencies": {} + }, + "is-date-object": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": {} + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + } + } + }, + "deep-is": { + "version": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz" + }, + "deepmerge": { + "version": "https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz" + }, + "default-gateway": { + "version": "https://registry.nlark.com/default-gateway/download/default-gateway-5.0.5.tgz", + "requires": { + "execa": "^3.3.0" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/execa/download/execa-3.4.0.tgz", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "defaults": { + "version": "https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz", + "requires": { + "clone": "^1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-1.0.4.tgz" + } + } + }, + "define-properties": { + "version": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "define-property": { + "version": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "del": { + "version": "https://registry.nlark.com/del/download/del-4.1.1.tgz", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": {} + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/globby/download/globby-6.1.0.tgz", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": {} + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-path-in-cwd/download/is-path-in-cwd-2.1.0.tgz?cache=0&sync_timestamp=1620047156679&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-in-cwd%2Fdownload%2Fis-path-in-cwd-2.1.0.tgz", + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": {} + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/p-map/download/p-map-2.1.0.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + } + } + }, + "delayed-stream": { + "version": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz" + }, + "depd": { + "version": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "des.js": { + "version": "https://registry.nlark.com/des.js/download/des.js-1.0.1.tgz", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "destroy": { + "version": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "detect-indent": { + "version": "https://registry.nlark.com/detect-indent/download/detect-indent-4.0.0.tgz", + "requires": { + "repeating": "^2.0.0" + }, + "dependencies": { + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/repeating/download/repeating-2.0.1.tgz", + "requires": { + "is-finite": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "detect-newline": { + "version": "https://registry.nlark.com/detect-newline/download/detect-newline-2.1.0.tgz" + }, + "detect-node": { + "version": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz?cache=0&sync_timestamp=1621147029891&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdetect-node%2Fdownload%2Fdetect-node-2.1.0.tgz" + }, + "diff-sequences": { + "version": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "diffie-hellman": { + "version": "https://registry.nlark.com/diffie-hellman/download/diffie-hellman-5.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/miller-rabin/download/miller-rabin-4.0.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": {} + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "dir-glob": { + "version": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "dns-equal": { + "version": "https://registry.nlark.com/dns-equal/download/dns-equal-1.0.0.tgz" + }, + "dns-packet": { + "version": "https://registry.nlark.com/dns-packet/download/dns-packet-1.3.4.tgz", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "dns-txt": { + "version": "https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz", + "requires": { + "buffer-indexof": "^1.0.0" + }, + "dependencies": { + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-indexof/download/buffer-indexof-1.1.1.tgz" + } + } + }, + "doctrine": { + "version": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz", + "requires": { + "esutils": "^2.0.2" + }, + "dependencies": { + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + } + } + }, + "dom-converter": { + "version": "https://registry.nlark.com/dom-converter/download/dom-converter-0.2.0.tgz", + "requires": { + "utila": "~0.4" + }, + "dependencies": { + "utila": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/utila/download/utila-0.4.0.tgz" + } + } + }, + "dom-event-types": { + "version": "https://registry.nlark.com/dom-event-types/download/dom-event-types-1.0.0.tgz" + }, + "dom-serializer": { + "version": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "domain-browser": { + "version": "https://registry.nlark.com/domain-browser/download/domain-browser-1.2.0.tgz" + }, + "domelementtype": { + "version": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domexception": { + "version": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "domhandler": { + "version": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + } + } + }, + "domready": { + "version": "https://registry.nlark.com/domready/download/domready-1.0.8.tgz" + }, + "domutils": { + "version": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + } + } + }, + "dot-prop": { + "version": "https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz" + } + } + }, + "dotenv": { + "version": "https://registry.nlark.com/dotenv/download/dotenv-8.6.0.tgz" + }, + "dotenv-expand": { + "version": "https://registry.nlark.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz" + }, + "duplexer": { + "version": "https://registry.nlark.com/duplexer/download/duplexer-0.1.2.tgz" + }, + "duplexify": { + "version": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "easy-stack": { + "version": "https://registry.nlark.com/easy-stack/download/easy-stack-1.0.1.tgz" + }, + "ecc-jsbn": { + "version": "https://registry.npm.taobao.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "editorconfig": { + "version": "https://registry.nlark.com/editorconfig/download/editorconfig-0.15.3.tgz", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/sigmund/download/sigmund-1.0.1.tgz" + } + } + }, + "ee-first": { + "version": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + }, + "ejs": { + "version": "https://registry.nlark.com/ejs/download/ejs-2.7.4.tgz" + }, + "electron-to-chromium": { + "version": "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290577288&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz" + }, + "element-ui": { + "version": "2.13.2", + "resolved": "https://registry.nlark.com/element-ui/download/element-ui-2.13.2.tgz", + "requires": { + "async-validator": "~1.8.1", + "babel-helper-vue-jsx-merge-props": "^2.0.0", + "deepmerge": "^1.2.0", + "normalize-wheel": "^1.0.1", + "resize-observer-polyfill": "^1.5.0", + "throttle-debounce": "^1.0.1" + }, + "dependencies": { + "async-validator": { + "version": "1.8.5", + "resolved": "https://registry.nlark.com/async-validator/download/async-validator-1.8.5.tgz", + "requires": { + "babel-runtime": "6.x" + }, + "dependencies": {} + }, + "babel-helper-vue-jsx-merge-props": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz" + }, + "deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz" + }, + "normalize-wheel": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/normalize-wheel/download/normalize-wheel-1.0.1.tgz" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz" + }, + "throttle-debounce": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/throttle-debounce/download/throttle-debounce-1.1.0.tgz" + } + } + }, + "elliptic": { + "version": "https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": {} + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + }, + "emoji-regex": { + "version": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "emojis-list": { + "version": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "encodeurl": { + "version": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "end-of-stream": { + "version": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "enhanced-resolve": { + "version": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.5.0.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + } + } + }, + "entities": { + "version": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + }, + "errno": { + "version": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": { + "prr": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + } + } + }, + "error-ex": { + "version": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz" + } + } + }, + "error-stack-parser": { + "version": "https://registry.nlark.com/error-stack-parser/download/error-stack-parser-2.0.6.tgz", + "requires": { + "stackframe": "^1.1.1" + }, + "dependencies": { + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/stackframe/download/stackframe-1.2.0.tgz" + } + } + }, + "es-abstract": { + "version": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": {} + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "is-regex": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": {} + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "object-inspect": { + "version": "1.10.3", + "resolved": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": {} + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": {} + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "es-to-primitive": { + "version": "https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "dependencies": { + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-date-object": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "escalade": { + "version": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "escape-html": { + "version": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "escape-string-regexp": { + "version": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz" + }, + "escodegen": { + "version": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz", + "optional": true + } + } + }, + "eslint": { + "version": "6.7.2", + "resolved": "https://registry.nlark.com/eslint/download/eslint-6.7.2.tgz?cache=0&sync_timestamp=1622847809742&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint%2Fdownload%2Feslint-6.7.2.tgz", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": {} + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz", + "requires": { + "esutils": "^2.0.2" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/eslint-utils/download/eslint-utils-1.4.3.tgz", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": {} + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": {} + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": {} + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-5.0.1.tgz", + "requires": { + "flat-cache": "^2.0.1" + }, + "dependencies": {} + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz" + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": {} + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.nlark.com/globals/download/globals-12.4.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-12.4.0.tgz", + "requires": { + "type-fest": "^0.8.1" + }, + "dependencies": {} + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": {} + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.nlark.com/inquirer/download/inquirer-7.3.3.tgz?cache=0&sync_timestamp=1621629616998&other_urls=https%3A%2F%2Fregistry.nlark.com%2Finquirer%2Fdownload%2Finquirer-7.3.3.tgz", + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": {} + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": {} + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.nlark.com/progress/download/progress-2.0.3.tgz" + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/regexpp/download/regexpp-2.0.1.tgz" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz" + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.nlark.com/table/download/table-5.4.6.tgz", + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": {} + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz" + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz" + } + } + }, + "eslint-loader": { + "version": "https://registry.nlark.com/eslint-loader/download/eslint-loader-2.2.1.tgz", + "requires": { + "loader-fs-cache": "^1.0.0", + "loader-utils": "^1.0.2", + "object-assign": "^4.0.1", + "object-hash": "^1.1.4", + "rimraf": "^2.6.1" + }, + "dependencies": { + "loader-fs-cache": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/loader-fs-cache/download/loader-fs-cache-1.0.3.tgz", + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "object-hash": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/object-hash/download/object-hash-1.3.1.tgz" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + } + } + }, + "eslint-plugin-vue": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/eslint-plugin-vue/download/eslint-plugin-vue-6.2.2.tgz", + "dev": true, + "requires": { + "natural-compare": "^1.4.0", + "semver": "^5.6.0", + "vue-eslint-parser": "^7.0.0" + }, + "dependencies": { + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "vue-eslint-parser": { + "version": "7.6.0", + "resolved": "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.6.0.tgz", + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.15" + }, + "dependencies": {} + } + } + }, + "eslint-scope": { + "version": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": {} + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz" + } + } + }, + "eslint-utils": { + "version": "https://registry.nlark.com/eslint-utils/download/eslint-utils-1.4.3.tgz", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "eslint-visitor-keys": { + "version": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "espree": { + "version": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.1.tgz" + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + } + } + }, + "esprima": { + "version": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + }, + "esquery": { + "version": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "esrecurse": { + "version": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + } + } + }, + "estraverse": { + "version": "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz" + }, + "esutils": { + "version": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz" + }, + "etag": { + "version": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "event-pubsub": { + "version": "https://registry.nlark.com/event-pubsub/download/event-pubsub-4.3.0.tgz" + }, + "eventemitter3": { + "version": "https://registry.nlark.com/eventemitter3/download/eventemitter3-4.0.7.tgz" + }, + "events": { + "version": "https://registry.nlark.com/events/download/events-3.3.0.tgz" + }, + "eventsource": { + "version": "https://registry.nlark.com/eventsource/download/eventsource-1.1.0.tgz", + "requires": { + "original": "^1.0.0" + }, + "dependencies": { + "original": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/original/download/original-1.0.2.tgz", + "requires": { + "url-parse": "^1.4.3" + }, + "dependencies": {} + } + } + }, + "evp_bytestokey": { + "version": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "exec-sh": { + "version": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "execa": { + "version": "https://registry.nlark.com/execa/download/execa-3.4.0.tgz", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": {} + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": {} + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz" + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-stream/download/is-stream-2.0.0.tgz" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/npm-run-path/download/npm-run-path-4.0.1.tgz", + "requires": { + "path-key": "^3.0.0" + }, + "dependencies": {} + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": {} + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/p-finally/download/p-finally-2.0.1.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "strip-final-newline": { + "version": "2.0.0", + "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" + } + } + }, + "exit": { + "version": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "expand-brackets": { + "version": "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/posix-character-classes/download/posix-character-classes-0.1.1.tgz" + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "expand-range": { + "version": "https://registry.nlark.com/expand-range/download/expand-range-1.8.2.tgz", + "requires": { + "fill-range": "^2.1.0" + }, + "dependencies": { + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/fill-range/download/fill-range-2.2.4.tgz", + "requires": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, + "dependencies": {} + } + } + }, + "expect": { + "version": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + } + } + }, + "express": { + "version": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": {} + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": {} + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/cookie-signature/download/cookie-signature-1.0.6.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": {} + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz?cache=0&sync_timestamp=1622509170257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fproxy-addr%2Fdownload%2Fproxy-addr-2.0.7.tgz", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": {} + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": {} + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/serve-static/download/serve-static-1.14.1.tgz", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "dependencies": {} + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": {} + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + } + } + }, + "extend": { + "version": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "extend-shallow": { + "version": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "external-editor": { + "version": "https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.nlark.com/chardet/download/chardet-0.7.0.tgz" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz", + "requires": { + "os-tmpdir": "~1.0.2" + }, + "dependencies": {} + } + } + }, + "extglob": { + "version": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "extract-from-css": { + "version": "https://registry.nlark.com/extract-from-css/download/extract-from-css-0.4.4.tgz", + "requires": { + "css": "^2.1.0" + }, + "dependencies": { + "css": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/css/download/css-2.2.4.tgz", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + }, + "dependencies": {} + } + } + }, + "extsprintf": { + "version": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz" + }, + "fast-deep-equal": { + "version": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz" + }, + "fast-glob": { + "version": "https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": { + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/@mrmlnc/readdir-enhanced/download/@mrmlnc/readdir-enhanced-2.2.1.tgz", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "dependencies": {} + }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-1.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-1.1.3.tgz" + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "fast-json-stable-stringify": { + "version": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "fast-levenshtein": { + "version": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz" + }, + "faye-websocket": { + "version": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": { + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": {} + } + } + }, + "fb-watchman": { + "version": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": { + "bser": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/bser/download/bser-2.1.1.tgz", + "requires": { + "node-int64": "^0.4.0" + }, + "dependencies": {} + } + } + }, + "figgy-pudding": { + "version": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "figures": { + "version": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + } + } + }, + "file-entry-cache": { + "version": "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-5.0.1.tgz", + "requires": { + "flat-cache": "^2.0.1" + }, + "dependencies": { + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/flat-cache/download/flat-cache-2.0.1.tgz", + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": {} + } + } + }, + "file-loader": { + "version": "https://registry.nlark.com/file-loader/download/file-loader-4.3.0.tgz", + "requires": { + "loader-utils": "^1.2.3", + "schema-utils": "^2.5.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "file-uri-to-path": { + "version": "https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz" + }, + "filename-regex": { + "version": "https://registry.nlark.com/filename-regex/download/filename-regex-2.0.1.tgz" + }, + "filesize": { + "version": "https://registry.nlark.com/filesize/download/filesize-3.6.1.tgz" + }, + "fill-range": { + "version": "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz", + "requires": { + "to-regex-range": "^5.0.1" + }, + "dependencies": { + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "requires": { + "is-number": "^7.0.0" + }, + "dependencies": {} + } + } + }, + "finalhandler": { + "version": "https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "find-babel-config": { + "version": "https://registry.nlark.com/find-babel-config/download/find-babel-config-1.2.0.tgz", + "requires": { + "json5": "^0.5.1", + "path-exists": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "0.5.1", + "resolved": "https://registry.nlark.com/json5/download/json5-0.5.1.tgz" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz" + } + } + }, + "find-cache-dir": { + "version": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz" + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": {} + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "find-up": { + "version": "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": { + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-5.0.0.tgz", + "requires": { + "p-locate": "^4.1.0" + }, + "dependencies": {} + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-4.0.0.tgz" + } + } + }, + "flat-cache": { + "version": "https://registry.nlark.com/flat-cache/download/flat-cache-2.0.1.tgz", + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": { + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/flatted/download/flatted-2.0.2.tgz" + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.6.3.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.6.3.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/write/download/write-1.0.3.tgz", + "requires": { + "mkdirp": "^0.5.1" + }, + "dependencies": {} + } + } + }, + "flatted": { + "version": "https://registry.nlark.com/flatted/download/flatted-2.0.2.tgz" + }, + "flush-write-stream": { + "version": "https://registry.nlark.com/flush-write-stream/download/flush-write-stream-1.1.1.tgz", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "follow-redirects": { + "version": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz" + }, + "for-each": { + "version": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "requires": { + "is-callable": "^1.1.3" + }, + "dependencies": { + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + } + } + }, + "for-in": { + "version": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + }, + "for-own": { + "version": "https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz", + "requires": { + "for-in": "^1.0.1" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + } + } + }, + "forever-agent": { + "version": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": { + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": {} + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + } + } + }, + "forwarded": { + "version": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz" + }, + "fragment-cache": { + "version": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": { + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + } + } + }, + "fresh": { + "version": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "from2": { + "version": "https://registry.nlark.com/from2/download/from2-2.3.0.tgz", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "fs-extra": { + "version": "https://registry.nlark.com/fs-extra/download/fs-extra-7.0.1.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.6" + }, + "dependencies": {} + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz" + } + } + }, + "fs-minipass": { + "version": "https://registry.nlark.com/fs-minipass/download/fs-minipass-2.1.0.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "fs-write-stream-atomic": { + "version": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "fs.realpath": { + "version": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz", + "optional": true + }, + "function-bind": { + "version": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "functional-red-black-tree": { + "version": "https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz" + }, + "gensync": { + "version": "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz" + }, + "get-caller-file": { + "version": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "get-intrinsic": { + "version": "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "get-stream": { + "version": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz", + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + } + } + }, + "get-value": { + "version": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "getpass": { + "version": "https://registry.npm.taobao.org/getpass/download/getpass-0.1.7.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + } + } + }, + "glob": { + "version": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + } + } + }, + "glob-base": { + "version": "https://registry.nlark.com/glob-base/download/glob-base-0.3.0.tgz", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-2.0.0.tgz", + "requires": { + "is-glob": "^2.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "glob-parent": { + "version": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz", + "requires": { + "is-glob": "^4.0.1" + }, + "dependencies": { + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "glob-to-regexp": { + "version": "https://registry.nlark.com/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz" + }, + "globals": { + "version": "https://registry.nlark.com/globals/download/globals-12.4.0.tgz?cache=0&sync_timestamp=1622088036473&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-12.4.0.tgz", + "requires": { + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.8.1.tgz" + } + } + }, + "globby": { + "version": "https://registry.nlark.com/globby/download/globby-9.2.0.tgz", + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.3.tgz?cache=0&sync_timestamp=1621241332675&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fglob%2Fdownload%2F%40types%2Fglob-7.1.3.tgz", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": {} + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz", + "requires": { + "array-uniq": "^1.0.1" + }, + "dependencies": {} + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz", + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": {} + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + } + } + }, + "graceful-fs": { + "version": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "growly": { + "version": "https://registry.nlark.com/growly/download/growly-1.3.0.tgz" + }, + "gzip-size": { + "version": "https://registry.nlark.com/gzip-size/download/gzip-size-5.1.1.tgz", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": { + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/duplexer/download/duplexer-0.1.2.tgz" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + } + } + }, + "handle-thing": { + "version": "https://registry.nlark.com/handle-thing/download/handle-thing-2.0.1.tgz" + }, + "har-schema": { + "version": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz" + }, + "har-validator": { + "version": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz" + } + } + }, + "has": { + "version": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + } + } + }, + "has-ansi": { + "version": "https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz" + } + } + }, + "has-bigints": { + "version": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz" + }, + "has-flag": { + "version": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz" + }, + "has-symbols": { + "version": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "has-value": { + "version": "https://registry.nlark.com/has-value/download/has-value-1.0.0.tgz", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/has-values/download/has-values-1.0.0.tgz", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "has-values": { + "version": "https://registry.nlark.com/has-values/download/has-values-1.0.0.tgz", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-4.0.0.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "hash-base": { + "version": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "hash-sum": { + "version": "https://registry.nlark.com/hash-sum/download/hash-sum-2.0.0.tgz" + }, + "hash.js": { + "version": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "he": { + "version": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "hex-color-regex": { + "version": "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz" + }, + "highlight.js": { + "version": "https://registry.nlark.com/highlight.js/download/highlight.js-10.7.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhighlight.js%2Fdownload%2Fhighlight.js-10.7.3.tgz" + }, + "hmac-drbg": { + "version": "https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": {} + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + } + } + }, + "hoopy": { + "version": "https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz" + }, + "hosted-git-info": { + "version": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "hpack.js": { + "version": "https://registry.nlark.com/hpack.js/download/hpack.js-2.1.6.tgz", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "hsl-regex": { + "version": "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz" + }, + "hsla-regex": { + "version": "https://registry.nlark.com/hsla-regex/download/hsla-regex-1.0.0.tgz" + }, + "html-encoding-sniffer": { + "version": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": { + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": {} + } + } + }, + "html-entities": { + "version": "https://registry.nlark.com/html-entities/download/html-entities-1.4.0.tgz" + }, + "html-escaper": { + "version": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz" + }, + "html-minifier": { + "version": "https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/camel-case/download/camel-case-3.0.0.tgz", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + }, + "dependencies": {} + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.nlark.com/clean-css/download/clean-css-4.2.3.tgz", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": {} + }, + "commander": { + "version": "2.17.1", + "resolved": "https://registry.nlark.com/commander/download/commander-2.17.1.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/param-case/download/param-case-2.1.1.tgz", + "requires": { + "no-case": "^2.2.0" + }, + "dependencies": {} + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.nlark.com/relateurl/download/relateurl-0.2.7.tgz" + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.nlark.com/uglify-js/download/uglify-js-3.4.10.tgz", + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "html-tags": { + "version": "https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz" + }, + "html-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz", + "dev": true, + "requires": { + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "tapable": "^1.0.0", + "toposort": "^1.0.0", + "util.promisify": "1.0.0" + }, + "dependencies": { + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-0.2.17.tgz", + "requires": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/pretty-error/download/pretty-error-2.1.2.tgz?cache=0&sync_timestamp=1623180529588&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-error%2Fdownload%2Fpretty-error-2.1.2.tgz", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "toposort": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz" + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.0.tgz", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + }, + "dependencies": {} + } + } + }, + "htmlparser2": { + "version": "https://registry.nlark.com/htmlparser2/download/htmlparser2-6.1.0.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz" + }, + "domhandler": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/domhandler/download/domhandler-4.2.0.tgz", + "requires": { + "domelementtype": "^2.2.0" + }, + "dependencies": {} + }, + "domutils": { + "version": "2.7.0", + "resolved": "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": {} + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/entities/download/entities-2.2.0.tgz" + } + } + }, + "http-deceiver": { + "version": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz" + }, + "http-errors": { + "version": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + } + } + }, + "http-parser-js": { + "version": "https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz" + }, + "http-proxy": { + "version": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.nlark.com/eventemitter3/download/eventemitter3-4.0.7.tgz" + }, + "follow-redirects": { + "version": "1.14.1", + "resolved": "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555429589&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + }, + "http-proxy-middleware": { + "version": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-0.19.1.tgz?cache=0&sync_timestamp=1620409562092&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-0.19.1.tgz", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": {} + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + } + } + }, + "http-signature": { + "version": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": {} + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npm.taobao.org/sshpk/download/sshpk-1.16.1.tgz", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": {} + } + } + }, + "https-browserify": { + "version": "https://registry.nlark.com/https-browserify/download/https-browserify-1.0.0.tgz" + }, + "human-signals": { + "version": "https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz" + }, + "iconv-lite": { + "version": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + } + } + }, + "icss-utils": { + "version": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "ieee754": { + "version": "https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz" + }, + "iferr": { + "version": "https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz" + }, + "ignore": { + "version": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz" + }, + "image-size": { + "version": "https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz" + }, + "import-cwd": { + "version": "https://registry.nlark.com/import-cwd/download/import-cwd-2.1.0.tgz", + "requires": { + "import-from": "^2.1.0" + }, + "dependencies": { + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-from/download/import-from-2.1.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "import-fresh": { + "version": "https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/parent-module/download/parent-module-1.0.1.tgz", + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": {} + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz" + } + } + }, + "import-from": { + "version": "https://registry.nlark.com/import-from/download/import-from-2.1.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + }, + "import-local": { + "version": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pkg-dir/download/pkg-dir-3.0.0.tgz", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": {} + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "imurmurhash": { + "version": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "indent-string": { + "version": "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz" + }, + "indexes-of": { + "version": "https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz" + }, + "infer-owner": { + "version": "https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz" + }, + "inflight": { + "version": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + }, + "dependencies": { + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "inherits": { + "version": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "ini": { + "version": "https://registry.nlark.com/ini/download/ini-1.3.8.tgz" + }, + "inquirer": { + "version": "https://registry.nlark.com/inquirer/download/inquirer-7.3.3.tgz?cache=0&sync_timestamp=1621629616998&other_urls=https%3A%2F%2Fregistry.nlark.com%2Finquirer%2Fdownload%2Finquirer-7.3.3.tgz", + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": {} + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz", + "requires": { + "restore-cursor": "^3.1.0" + }, + "dependencies": {} + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz" + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": {} + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/figures/download/figures-3.2.0.tgz", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz" + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz" + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": {} + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz" + } + } + }, + "internal-ip": { + "version": "https://registry.nlark.com/internal-ip/download/internal-ip-4.3.0.tgz", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "dependencies": { + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.nlark.com/default-gateway/download/default-gateway-4.2.0.tgz", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": {} + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + } + } + }, + "invariant": { + "version": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": { + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "dependencies": {} + } + } + }, + "ip": { + "version": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "ip-regex": { + "version": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + }, + "ipaddr.js": { + "version": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + }, + "is-absolute-url": { + "version": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-3.0.3.tgz" + }, + "is-accessor-descriptor": { + "version": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "is-arguments": { + "version": "https://registry.nlark.com/is-arguments/download/is-arguments-1.1.0.tgz", + "requires": { + "call-bind": "^1.0.0" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "is-arrayish": { + "version": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz" + }, + "is-bigint": { + "version": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.2.tgz?cache=0&sync_timestamp=1620162102171&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.2.tgz" + }, + "is-binary-path": { + "version": "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz", + "requires": { + "binary-extensions": "^2.0.0" + }, + "dependencies": { + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz" + } + } + }, + "is-boolean-object": { + "version": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.1.tgz?cache=0&sync_timestamp=1620428460670&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-boolean-object%2Fdownload%2Fis-boolean-object-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "is-buffer": { + "version": "https://registry.nlark.com/is-buffer/download/is-buffer-2.0.5.tgz" + }, + "is-callable": { + "version": "https://registry.nlark.com/is-callable/download/is-callable-1.2.3.tgz" + }, + "is-ci": { + "version": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz" + } + } + }, + "is-color-stop": { + "version": "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz" + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/hsla-regex/download/hsla-regex-1.0.0.tgz" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/rgb-regex/download/rgb-regex-1.0.1.tgz" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/rgba-regex/download/rgba-regex-1.0.0.tgz" + } + } + }, + "is-core-module": { + "version": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "is-data-descriptor": { + "version": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "is-date-object": { + "version": "https://registry.nlark.com/is-date-object/download/is-date-object-1.0.4.tgz" + }, + "is-descriptor": { + "version": "https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": {} + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "is-directory": { + "version": "https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz" + }, + "is-docker": { + "version": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz" + }, + "is-dotfile": { + "version": "https://registry.nlark.com/is-dotfile/download/is-dotfile-1.0.3.tgz" + }, + "is-equal-shallow": { + "version": "https://registry.nlark.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz", + "requires": { + "is-primitive": "^2.0.0" + }, + "dependencies": { + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-primitive/download/is-primitive-2.0.0.tgz" + } + } + }, + "is-extendable": { + "version": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + } + } + }, + "is-extglob": { + "version": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + }, + "is-finite": { + "version": "https://registry.nlark.com/is-finite/download/is-finite-1.1.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "is-generator-fn": { + "version": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz" + }, + "is-glob": { + "version": "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz", + "requires": { + "is-extglob": "^2.1.1" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz" + } + } + }, + "is-negative-zero": { + "version": "https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz" + }, + "is-number": { + "version": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz" + }, + "is-number-object": { + "version": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.5.tgz?cache=0&sync_timestamp=1620421302435&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-number-object%2Fdownload%2Fis-number-object-1.0.5.tgz" + }, + "is-obj": { + "version": "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz" + }, + "is-path-cwd": { + "version": "https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz" + }, + "is-path-in-cwd": { + "version": "https://registry.nlark.com/is-path-in-cwd/download/is-path-in-cwd-2.1.0.tgz?cache=0&sync_timestamp=1620047156679&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-in-cwd%2Fdownload%2Fis-path-in-cwd-2.1.0.tgz", + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": { + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1620046922351&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz", + "requires": { + "path-is-inside": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "is-path-inside": { + "version": "https://registry.nlark.com/is-path-inside/download/is-path-inside-2.1.0.tgz?cache=0&sync_timestamp=1620046922351&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-2.1.0.tgz", + "requires": { + "path-is-inside": "^1.0.2" + }, + "dependencies": { + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/path-is-inside/download/path-is-inside-1.0.2.tgz" + } + } + }, + "is-plain-obj": { + "version": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + }, + "is-plain-object": { + "version": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "is-posix-bracket": { + "version": "https://registry.nlark.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz" + }, + "is-primitive": { + "version": "https://registry.nlark.com/is-primitive/download/is-primitive-2.0.0.tgz" + }, + "is-regex": { + "version": "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452320445&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "is-resolvable": { + "version": "https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz" + }, + "is-stream": { + "version": "https://registry.nlark.com/is-stream/download/is-stream-2.0.0.tgz" + }, + "is-string": { + "version": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "is-symbol": { + "version": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": { + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + } + } + }, + "is-typedarray": { + "version": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "is-utf8": { + "version": "https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz" + }, + "is-whitespace": { + "version": "https://registry.nlark.com/is-whitespace/download/is-whitespace-0.3.0.tgz" + }, + "is-windows": { + "version": "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz" + }, + "is-wsl": { + "version": "https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": { + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz" + } + } + }, + "isarray": { + "version": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz" + }, + "isexe": { + "version": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + }, + "isobject": { + "version": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "isstream": { + "version": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "istanbul-lib-coverage": { + "version": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "istanbul-lib-instrument": { + "version": "https://registry.nlark.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "@babel/generator": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623281025477&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz", + "requires": { + "@babel/types": "^7.14.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@babel/parser": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280317644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz" + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623281030820&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + }, + "dependencies": {} + }, + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "istanbul-lib-report": { + "version": "https://registry.nlark.com/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz", + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": {} + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "istanbul-lib-source-maps": { + "version": "https://registry.nlark.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-3.0.6.tgz", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "istanbul-reports": { + "version": "https://registry.nlark.com/istanbul-reports/download/istanbul-reports-2.2.7.tgz", + "requires": { + "html-escaper": "^2.0.0" + }, + "dependencies": { + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz" + } + } + }, + "javascript-stringify": { + "version": "https://registry.nlark.com/javascript-stringify/download/javascript-stringify-2.1.0.tgz" + }, + "jest": { + "version": "https://registry.nlark.com/jest/download/jest-24.9.0.tgz", + "requires": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "dependencies": { + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "jest-cli": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-cli/download/jest-cli-24.9.0.tgz", + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + } + } + }, + "jest-changed-files": { + "version": "https://registry.nlark.com/jest-changed-files/download/jest-changed-files-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-cli": { + "version": "https://registry.nlark.com/jest-cli/download/jest-cli-24.9.0.tgz", + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/core": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/core/download/@jest/core-24.9.0.tgz?cache=0&sync_timestamp=1622709636473&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "prompts": { + "version": "2.4.1", + "resolved": "https://registry.nlark.com/prompts/download/prompts-2.4.1.tgz", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "jest-config": { + "version": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623281036431&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": {} + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz?cache=0&sync_timestamp=1622709637660&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/babel-jest/download/babel-jest-24.9.0.tgz", + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": {} + }, + "jest-environment-node": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-diff": { + "version": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "diff-sequences": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz" + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-docblock": { + "version": "https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz", + "requires": { + "detect-newline": "^2.1.0" + }, + "dependencies": { + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-newline/download/detect-newline-2.1.0.tgz" + } + } + }, + "jest-each": { + "version": "https://registry.nlark.com/jest-each/download/jest-each-24.9.0.tgz?cache=0&sync_timestamp=1622290388475&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-each%2Fdownload%2Fjest-each-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-environment-jsdom": { + "version": "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz?cache=0&sync_timestamp=1622311468692&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.nlark.com/jsdom/download/jsdom-11.12.0.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-environment-jsdom-fifteen": { + "version": "https://registry.nlark.com/jest-environment-jsdom-fifteen/download/jest-environment-jsdom-fifteen-1.0.2.tgz", + "requires": { + "@jest/environment": "^24.3.0", + "@jest/fake-timers": "^24.3.0", + "@jest/types": "^24.3.0", + "jest-mock": "^24.0.0", + "jest-util": "^24.0.0", + "jsdom": "^15.2.1" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jsdom": { + "version": "15.2.1", + "resolved": "https://registry.nlark.com/jsdom/download/jsdom-15.2.1.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "jest-environment-node": { + "version": "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz?cache=0&sync_timestamp=1622311471066&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-24.9.0.tgz", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "dependencies": { + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + } + } + }, + "jest-get-type": { + "version": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-haste-map": { + "version": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz", + "requires": { + "loose-envify": "^1.0.0" + }, + "dependencies": {} + }, + "jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": {} + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "jest-jasmine2": { + "version": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": { + "@babel/traverse": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623281033144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.nlark.com/co/download/co-4.6.0.tgz" + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz" + }, + "jest-each": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-each/download/jest-each-24.9.0.tgz?cache=0&sync_timestamp=1622290388475&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-each%2Fdownload%2Fjest-each-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-leak-detector": { + "version": "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz?cache=0&sync_timestamp=1622290386972&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-24.9.0.tgz", + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-matcher-utils": { + "version": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-message-util": { + "version": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz?cache=0&sync_timestamp=1621243902596&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fstack-utils%2Fdownload%2F%40types%2Fstack-utils-1.0.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "jest-mock": { + "version": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + } + } + }, + "jest-pnp-resolver": { + "version": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "jest-regex-util": { + "version": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz" + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "jest-resolve-dependencies": { + "version": "https://registry.nlark.com/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + } + } + }, + "jest-runner": { + "version": "https://registry.nlark.com/jest-runner/download/jest-runner-24.9.0.tgz?cache=0&sync_timestamp=1622709114586&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runner%2Fdownload%2Fjest-runner-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-docblock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz", + "requires": { + "detect-newline": "^2.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-jasmine2": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1622709106594&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "dependencies": {} + }, + "jest-leak-detector": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz?cache=0&sync_timestamp=1622290386972&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-24.9.0.tgz", + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-runtime": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-24.9.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-24.9.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + } + } + }, + "jest-runtime": { + "version": "https://registry.nlark.com/jest-runtime/download/jest-runtime-24.9.0.tgz?cache=0&sync_timestamp=1622709106205&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-runtime%2Fdownload%2Fjest-runtime-24.9.0.tgz", + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/environment": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/environment/download/@jest/environment-24.9.0.tgz", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/transform/download/@jest/transform-24.9.0.tgz?cache=0&sync_timestamp=1622290386875&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.nlark.com/exit/download/exit-0.1.2.tgz" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "jest-config": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-config/download/jest-config-24.9.0.tgz?cache=0&sync_timestamp=1622709637203&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-24.9.0.tgz", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz?cache=0&sync_timestamp=1622290388980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-mock/download/jest-mock-24.9.0.tgz?cache=0&sync_timestamp=1622311497874&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-mock%2Fdownload%2Fjest-mock-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "jest-snapshot": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "jest-validate": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "jest-serializer": { + "version": "https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz" + }, + "jest-serializer-vue": { + "version": "https://registry.nlark.com/jest-serializer-vue/download/jest-serializer-vue-2.0.2.tgz", + "requires": { + "pretty": "2.0.0" + }, + "dependencies": { + "pretty": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/pretty/download/pretty-2.0.0.tgz", + "requires": { + "condense-newlines": "^0.2.1", + "extend-shallow": "^2.0.1", + "js-beautify": "^1.6.12" + }, + "dependencies": {} + } + } + }, + "jest-snapshot": { + "version": "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz?cache=0&sync_timestamp=1622709107388&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-snapshot%2Fdownload%2Fjest-snapshot-24.9.0.tgz", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623281024706&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "to-fast-properties": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "expect": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/expect/download/expect-24.9.0.tgz?cache=0&sync_timestamp=1622290387675&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "dependencies": {} + }, + "jest-diff": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-diff/download/jest-diff-24.9.0.tgz?cache=0&sync_timestamp=1622290389094&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "jest-matcher-utils": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz?cache=0&sync_timestamp=1622290387383&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-24.9.0.tgz", + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "dependencies": {} + }, + "jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-message-util/download/jest-message-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-message-util%2Fdownload%2Fjest-message-util-24.9.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": {} + }, + "jest-resolve": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-resolve/download/jest-resolve-24.9.0.tgz?cache=0&sync_timestamp=1622709107700&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve%2Fdownload%2Fjest-resolve-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "jest-transform-stub": { + "version": "https://registry.nlark.com/jest-transform-stub/download/jest-transform-stub-2.0.0.tgz" + }, + "jest-util": { + "version": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1622290836187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "dependencies": {} + }, + "@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-24.9.0.tgz", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-2.0.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "jest-validate": { + "version": "https://registry.nlark.com/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1622290391729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-get-type": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-get-type/download/jest-get-type-24.9.0.tgz?cache=0&sync_timestamp=1621937209389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-24.9.0.tgz" + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": {} + } + } + }, + "jest-watch-typeahead": { + "version": "https://registry.nlark.com/jest-watch-typeahead/download/jest-watch-typeahead-0.4.2.tgz?cache=0&sync_timestamp=1622135809685&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-watch-typeahead%2Fdownload%2Fjest-watch-typeahead-0.4.2.tgz", + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^2.4.1", + "jest-regex-util": "^24.9.0", + "jest-watcher": "^24.3.0", + "slash": "^3.0.0", + "string-length": "^3.1.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz?cache=0&sync_timestamp=1621937328238&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-24.9.0.tgz" + }, + "jest-watcher": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": {} + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/slash/download/slash-3.0.0.tgz" + }, + "string-length": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-3.1.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "jest-watcher": { + "version": "https://registry.nlark.com/jest-watcher/download/jest-watcher-24.9.0.tgz", + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz?cache=0&sync_timestamp=1622290836990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "dependencies": {} + }, + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "@types/yargs": { + "version": "13.0.11", + "resolved": "https://registry.nlark.com/@types/yargs/download/@types/yargs-13.0.11.tgz?cache=0&sync_timestamp=1621593485987&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs%2Fdownload%2F%40types%2Fyargs-13.0.11.tgz", + "requires": { + "@types/yargs-parser": "*" + }, + "dependencies": {} + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "jest-util": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/jest-util/download/jest-util-24.9.0.tgz?cache=0&sync_timestamp=1622290387004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-util%2Fdownload%2Fjest-util-24.9.0.tgz", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "jest-worker": { + "version": "https://registry.nlark.com/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "js-base64": { + "version": "https://registry.nlark.com/js-base64/download/js-base64-2.6.4.tgz?cache=0&sync_timestamp=1621703300524&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-base64%2Fdownload%2Fjs-base64-2.6.4.tgz" + }, + "js-beautify": { + "version": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": { + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz?cache=0&sync_timestamp=1622746031285&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fconfig-chain%2Fdownload%2Fconfig-chain-1.1.13.tgz", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": {} + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.nlark.com/editorconfig/download/editorconfig-0.15.3.tgz", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": {} + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz" + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz", + "requires": { + "abbrev": "1" + }, + "dependencies": {} + } + } + }, + "js-cookie": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/js-cookie/download/js-cookie-2.2.0.tgz" + }, + "js-message": { + "version": "https://registry.nlark.com/js-message/download/js-message-1.0.7.tgz" + }, + "js-queue": { + "version": "https://registry.nlark.com/js-queue/download/js-queue-2.0.2.tgz", + "requires": { + "easy-stack": "^1.0.1" + }, + "dependencies": { + "easy-stack": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/easy-stack/download/easy-stack-1.0.1.tgz" + } + } + }, + "js-tokens": { + "version": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + }, + "js-yaml": { + "version": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": {} + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz" + } + } + }, + "jsbn": { + "version": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "jsdom": { + "version": "https://registry.nlark.com/jsdom/download/jsdom-15.2.1.tgz", + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/abab/download/abab-2.0.5.tgz" + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": {} + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz" + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": {} + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/data-urls/download/data-urls-1.1.0.tgz", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": {} + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": {} + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz", + "requires": { + "whatwg-encoding": "^1.0.1" + }, + "dependencies": {} + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "parse5": { + "version": "5.1.0", + "resolved": "https://registry.nlark.com/parse5/download/parse5-5.1.0.tgz" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": {} + }, + "saxes": { + "version": "3.1.11", + "resolved": "https://registry.nlark.com/saxes/download/saxes-3.1.11.tgz", + "requires": { + "xmlchars": "^2.1.1" + }, + "dependencies": {} + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-3.0.1.tgz", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": {} + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-1.1.2.tgz", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": {} + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "ws": { + "version": "7.4.6", + "resolved": "https://registry.nlark.com/ws/download/ws-7.4.6.tgz" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + }, + "jsesc": { + "version": "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz" + }, + "json-parse-better-errors": { + "version": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "json-parse-even-better-errors": { + "version": "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz" + }, + "json-schema": { + "version": "https://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz" + }, + "json-schema-traverse": { + "version": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz" + }, + "json-stable-stringify-without-jsonify": { + "version": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz" + }, + "json-stringify-safe": { + "version": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "json3": { + "version": "https://registry.nlark.com/json3/download/json3-3.3.3.tgz" + }, + "json5": { + "version": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + } + } + }, + "jsonfile": { + "version": "https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.6" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz", + "optional": true + } + } + }, + "jsprim": { + "version": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.3.0.tgz" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "killable": { + "version": "https://registry.nlark.com/killable/download/killable-1.0.1.tgz" + }, + "kind-of": { + "version": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "kleur": { + "version": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz" + }, + "launch-editor": { + "version": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.nlark.com/shell-quote/download/shell-quote-1.7.2.tgz" + } + } + }, + "launch-editor-middleware": { + "version": "https://registry.nlark.com/launch-editor-middleware/download/launch-editor-middleware-2.2.1.tgz", + "requires": { + "launch-editor": "^2.2.1" + }, + "dependencies": { + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz", + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + }, + "dependencies": {} + } + } + }, + "left-pad": { + "version": "https://registry.nlark.com/left-pad/download/left-pad-1.3.0.tgz" + }, + "leven": { + "version": "https://registry.nlark.com/leven/download/leven-3.1.0.tgz" + }, + "levn": { + "version": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": {} + } + } + }, + "lines-and-columns": { + "version": "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz" + }, + "load-json-file": { + "version": "https://registry.nlark.com/load-json-file/download/load-json-file-4.0.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-4.0.0.tgz", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "dependencies": {} + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + } + } + }, + "loader-fs-cache": { + "version": "https://registry.nlark.com/loader-fs-cache/download/loader-fs-cache-1.0.3.tgz", + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + }, + "dependencies": { + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-0.1.1.tgz", + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "loader-runner": { + "version": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz?cache=0&sync_timestamp=1620069179500&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbig.js%2Fdownload%2Fbig.js-5.2.2.tgz" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/json5/download/json5-1.0.1.tgz", + "requires": { + "minimist": "^1.2.0" + }, + "dependencies": {} + } + } + }, + "locate-path": { + "version": "https://registry.npm.taobao.org/locate-path/download/locate-path-5.0.0.tgz", + "requires": { + "p-locate": "^4.1.0" + }, + "dependencies": { + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-4.1.0.tgz", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": {} + } + } + }, + "lodash": { + "version": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "lodash.debounce": { + "version": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz" + }, + "lodash.defaultsdeep": { + "version": "https://registry.nlark.com/lodash.defaultsdeep/download/lodash.defaultsdeep-4.6.1.tgz" + }, + "lodash.kebabcase": { + "version": "https://registry.nlark.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz" + }, + "lodash.mapvalues": { + "version": "https://registry.nlark.com/lodash.mapvalues/download/lodash.mapvalues-4.6.0.tgz" + }, + "lodash.memoize": { + "version": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "lodash.padend": { + "version": "https://registry.nlark.com/lodash.padend/download/lodash.padend-4.6.1.tgz" + }, + "lodash.sortby": { + "version": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "lodash.transform": { + "version": "https://registry.nlark.com/lodash.transform/download/lodash.transform-4.6.0.tgz" + }, + "lodash.uniq": { + "version": "https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz" + }, + "log-symbols": { + "version": "https://registry.nlark.com/log-symbols/download/log-symbols-2.2.0.tgz", + "requires": { + "chalk": "^2.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + } + } + }, + "loglevel": { + "version": "https://registry.nlark.com/loglevel/download/loglevel-1.7.1.tgz" + }, + "loose-envify": { + "version": "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "dependencies": { + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345016391&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz" + } + } + }, + "lower-case": { + "version": "https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz" + }, + "lru-cache": { + "version": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": { + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz" + } + } + }, + "make-dir": { + "version": "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "make-error": { + "version": "https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz" + }, + "makeerror": { + "version": "https://registry.nlark.com/makeerror/download/makeerror-1.0.11.tgz", + "requires": { + "tmpl": "1.0.x" + }, + "dependencies": { + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/tmpl/download/tmpl-1.0.4.tgz" + } + } + }, + "map-cache": { + "version": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "map-visit": { + "version": "https://registry.nlark.com/map-visit/download/map-visit-1.0.0.tgz", + "requires": { + "object-visit": "^1.0.0" + }, + "dependencies": { + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "math-random": { + "version": "https://registry.nlark.com/math-random/download/math-random-1.0.4.tgz" + }, + "md5.js": { + "version": "https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "mdn-data": { + "version": "https://registry.nlark.com/mdn-data/download/mdn-data-2.0.14.tgz?cache=0&sync_timestamp=1622679216009&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmdn-data%2Fdownload%2Fmdn-data-2.0.14.tgz" + }, + "media-typer": { + "version": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz" + }, + "memory-fs": { + "version": "https://registry.nlark.com/memory-fs/download/memory-fs-0.5.0.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": {} + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "merge-descriptors": { + "version": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz" + }, + "merge-options": { + "version": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + }, + "merge-source-map": { + "version": "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "merge-stream": { + "version": "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz" + }, + "merge2": { + "version": "https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz" + }, + "methods": { + "version": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz" + }, + "microargs": { + "version": "https://registry.nlark.com/microargs/download/microargs-1.1.0.tgz" + }, + "microcli": { + "version": "https://registry.nlark.com/microcli/download/microcli-1.3.1.tgz", + "requires": { + "lodash": "4.17.4", + "microargs": "1.1.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.4.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.4.tgz" + }, + "microargs": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/microargs/download/microargs-1.1.0.tgz" + } + } + }, + "micromatch": { + "version": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/braces/download/braces-2.3.2.tgz", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "miller-rabin": { + "version": "https://registry.nlark.com/miller-rabin/download/miller-rabin-4.0.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz" + } + } + }, + "mime": { + "version": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "mime-db": { + "version": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + }, + "mime-types": { + "version": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": { + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433567590&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz" + } + } + }, + "mimic-fn": { + "version": "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz" + }, + "mini-css-extract-plugin": { + "version": "https://registry.nlark.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.9.0.tgz?cache=0&sync_timestamp=1619783444865&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-0.9.0.tgz", + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-1.9.1.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-1.9.1.tgz", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "minimalistic-assert": { + "version": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + }, + "minimalistic-crypto-utils": { + "version": "https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz" + }, + "minimatch": { + "version": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": {} + } + } + }, + "minimist": { + "version": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + }, + "minipass": { + "version": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + } + } + }, + "minipass-collect": { + "version": "https://registry.nlark.com/minipass-collect/download/minipass-collect-1.0.2.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "minipass-flush": { + "version": "https://registry.nlark.com/minipass-flush/download/minipass-flush-1.0.5.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "minipass-pipeline": { + "version": "https://registry.nlark.com/minipass-pipeline/download/minipass-pipeline-1.2.4.tgz", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "mississippi": { + "version": "https://registry.nlark.com/mississippi/download/mississippi-3.0.0.tgz", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": {} + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": {} + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/flush-write-stream/download/flush-write-stream-1.1.1.tgz", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": {} + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/from2/download/from2-2.3.0.tgz", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": {} + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/parallel-transform/download/parallel-transform-1.2.0.tgz", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": {} + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/pumpify/download/pumpify-1.5.1.tgz", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": {} + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.nlark.com/stream-each/download/stream-each-1.2.3.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + }, + "dependencies": {} + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.nlark.com/through2/download/through2-2.0.5.tgz", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": {} + } + } + }, + "mitt": { + "version": "https://registry.nlark.com/mitt/download/mitt-1.1.2.tgz" + }, + "mixin-deep": { + "version": "https://registry.nlark.com/mixin-deep/download/mixin-deep-1.3.2.tgz", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": {} + } + } + }, + "mkdirp": { + "version": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz" + }, + "mockjs": { + "version": "1.0.1-beta3", + "resolved": "https://registry.nlark.com/mockjs/download/mockjs-1.0.1-beta3.tgz", + "dev": true, + "requires": { + "commander": "*" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/commander/download/commander-7.2.0.tgz" + } + } + }, + "move-concurrently": { + "version": "https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": {} + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.nlark.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": {} + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "ms": { + "version": "https://registry.npm.taobao.org/ms/download/ms-2.1.3.tgz" + }, + "multicast-dns": { + "version": "https://registry.nlark.com/multicast-dns/download/multicast-dns-6.2.3.tgz", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "dependencies": { + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.nlark.com/dns-packet/download/dns-packet-1.3.4.tgz", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz" + } + } + }, + "multicast-dns-service-types": { + "version": "https://registry.nlark.com/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz" + }, + "mute-stream": { + "version": "https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz" + }, + "mz": { + "version": "https://registry.nlark.com/mz/download/mz-2.7.0.tgz", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + }, + "dependencies": { + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/thenify-all/download/thenify-all-1.6.0.tgz", + "requires": { + "thenify": ">= 3.1.0 < 4" + }, + "dependencies": {} + } + } + }, + "nanomatch": { + "version": "https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz" + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz", + "requires": { + "map-cache": "^0.2.2" + }, + "dependencies": {} + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": {} + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + } + } + }, + "natural-compare": { + "version": "https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz" + }, + "negotiator": { + "version": "https://registry.npm.taobao.org/negotiator/download/negotiator-0.6.2.tgz" + }, + "neo-async": { + "version": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "nice-try": { + "version": "https://registry.nlark.com/nice-try/download/nice-try-1.0.5.tgz" + }, + "no-case": { + "version": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": { + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz" + } + } + }, + "node-addon-api": { + "version": "https://registry.nlark.com/node-addon-api/download/node-addon-api-1.7.2.tgz" + }, + "node-cache": { + "version": "https://registry.nlark.com/node-cache/download/node-cache-4.2.1.tgz", + "requires": { + "clone": "2.x", + "lodash": "^4.17.15" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "node-forge": { + "version": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz" + }, + "node-int64": { + "version": "https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz" + }, + "node-ipc": { + "version": "https://registry.nlark.com/node-ipc/download/node-ipc-9.1.4.tgz", + "requires": { + "event-pubsub": "4.3.0", + "js-message": "1.0.7", + "js-queue": "2.0.2" + }, + "dependencies": { + "event-pubsub": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/event-pubsub/download/event-pubsub-4.3.0.tgz" + }, + "js-message": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/js-message/download/js-message-1.0.7.tgz" + }, + "js-queue": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/js-queue/download/js-queue-2.0.2.tgz", + "requires": { + "easy-stack": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "node-libs-browser": { + "version": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "assert": { + "version": "1.5.0", + "resolved": "https://registry.nlark.com/assert/download/assert-1.5.0.tgz", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": {} + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz", + "requires": { + "pako": "~1.0.5" + }, + "dependencies": {} + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.nlark.com/buffer/download/buffer-4.9.2.tgz", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + }, + "dependencies": {} + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/console-browserify/download/console-browserify-1.2.0.tgz" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/constants-browserify/download/constants-browserify-1.0.0.tgz" + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.nlark.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "dependencies": {} + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/domain-browser/download/domain-browser-1.2.0.tgz" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/events/download/events-3.3.0.tgz" + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/https-browserify/download/https-browserify-1.0.0.tgz" + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/os-browserify/download/os-browserify-0.3.0.tgz" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.nlark.com/path-browserify/download/path-browserify-0.0.1.tgz" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.nlark.com/process/download/process-0.11.10.tgz" + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/querystring-es3/download/querystring-es3-0.2.1.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/stream-browserify/download/stream-browserify-2.0.2.tgz", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": {} + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": {} + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.nlark.com/timers-browserify/download/timers-browserify-2.0.12.tgz", + "requires": { + "setimmediate": "^1.0.4" + }, + "dependencies": {} + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.nlark.com/tty-browserify/download/tty-browserify-0.0.0.tgz" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": {} + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.nlark.com/util/download/util-0.11.1.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.11.1.tgz", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": {} + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/vm-browserify/download/vm-browserify-1.1.2.tgz" + } + } + }, + "node-modules-regexp": { + "version": "https://registry.nlark.com/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz" + }, + "node-notifier": { + "version": "https://registry.nlark.com/node-notifier/download/node-notifier-5.4.5.tgz?cache=0&sync_timestamp=1621962354910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-notifier%2Fdownload%2Fnode-notifier-5.4.5.tgz", + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "dependencies": { + "growly": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/growly/download/growly-1.3.0.tgz" + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/shellwords/download/shellwords-0.1.1.tgz" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/which/download/which-1.3.1.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "node-releases": { + "version": "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz?cache=0&sync_timestamp=1623060295334&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.73.tgz" + }, + "nopt": { + "version": "https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz", + "requires": { + "abbrev": "1" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/abbrev/download/abbrev-1.1.1.tgz" + } + } + }, + "normalize-package-data": { + "version": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "normalize-path": { + "version": "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz" + }, + "normalize-range": { + "version": "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz" + }, + "normalize-url": { + "version": "https://registry.nlark.com/normalize-url/download/normalize-url-3.3.0.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-3.3.0.tgz" + }, + "normalize-wheel": { + "version": "https://registry.nlark.com/normalize-wheel/download/normalize-wheel-1.0.1.tgz" + }, + "normalize.css": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/normalize.css/download/normalize.css-7.0.0.tgz" + }, + "npm-run-path": { + "version": "https://registry.nlark.com/npm-run-path/download/npm-run-path-4.0.1.tgz", + "requires": { + "path-key": "^3.0.0" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + } + } + }, + "nprogress": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/nprogress/download/nprogress-0.2.0.tgz" + }, + "nth-check": { + "version": "https://registry.nlark.com/nth-check/download/nth-check-2.0.0.tgz", + "requires": { + "boolbase": "^1.0.0" + }, + "dependencies": { + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz" + } + } + }, + "num2fraction": { + "version": "https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz" + }, + "nwsapi": { + "version": "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz" + }, + "oauth-sign": { + "version": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "object-assign": { + "version": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "object-copy": { + "version": "https://registry.nlark.com/object-copy/download/object-copy-0.1.0.tgz", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz" + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "object-hash": { + "version": "https://registry.nlark.com/object-hash/download/object-hash-1.3.1.tgz" + }, + "object-inspect": { + "version": "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz?cache=0&sync_timestamp=1620446150016&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.10.3.tgz" + }, + "object-is": { + "version": "https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "object-keys": { + "version": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + }, + "object-visit": { + "version": "https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "object.assign": { + "version": "https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz" + } + } + }, + "object.getownpropertydescriptors": { + "version": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "object.omit": { + "version": "https://registry.nlark.com/object.omit/download/object.omit-2.0.1.tgz", + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + }, + "dependencies": { + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz", + "requires": { + "for-in": "^1.0.1" + }, + "dependencies": {} + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + } + } + }, + "object.pick": { + "version": "https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "object.values": { + "version": "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz?cache=0&sync_timestamp=1622071191450&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject.values%2Fdownload%2Fobject.values-1.1.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.2" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "es-abstract": { + "version": "1.18.3", + "resolved": "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622159007708&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.10.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "obuf": { + "version": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "omelette": { + "version": "https://registry.nlark.com/omelette/download/omelette-0.4.5.tgz" + }, + "on-finished": { + "version": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": { + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz" + } + } + }, + "on-headers": { + "version": "https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz" + }, + "once": { + "version": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": { + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + } + } + }, + "onetime": { + "version": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz" + } + } + }, + "open": { + "version": "https://registry.nlark.com/open/download/open-6.4.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + } + } + }, + "opener": { + "version": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz" + }, + "opn": { + "version": "https://registry.nlark.com/opn/download/opn-5.5.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz" + } + } + }, + "optionator": { + "version": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "dependencies": { + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "dependencies": {} + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": {} + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz" + } + } + }, + "ora": { + "version": "https://registry.nlark.com/ora/download/ora-3.4.0.tgz?cache=0&sync_timestamp=1623137978561&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fora%2Fdownload%2Fora-3.4.0.tgz", + "requires": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz", + "requires": { + "restore-cursor": "^2.0.0" + }, + "dependencies": {} + }, + "cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.nlark.com/cli-spinners/download/cli-spinners-2.6.0.tgz" + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/log-symbols/download/log-symbols-2.2.0.tgz", + "requires": { + "chalk": "^2.0.1" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz", + "requires": { + "defaults": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "original": { + "version": "https://registry.nlark.com/original/download/original-1.0.2.tgz", + "requires": { + "url-parse": "^1.4.3" + }, + "dependencies": { + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "os-browserify": { + "version": "https://registry.nlark.com/os-browserify/download/os-browserify-0.3.0.tgz" + }, + "os-tmpdir": { + "version": "https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz" + }, + "p-each-series": { + "version": "https://registry.nlark.com/p-each-series/download/p-each-series-1.0.0.tgz", + "requires": { + "p-reduce": "^1.0.0" + }, + "dependencies": { + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/p-reduce/download/p-reduce-1.0.0.tgz" + } + } + }, + "p-finally": { + "version": "https://registry.nlark.com/p-finally/download/p-finally-2.0.1.tgz" + }, + "p-limit": { + "version": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": { + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + } + } + }, + "p-locate": { + "version": "https://registry.npm.taobao.org/p-locate/download/p-locate-4.1.0.tgz", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "p-map": { + "version": "https://registry.npm.taobao.org/p-map/download/p-map-3.0.0.tgz", + "requires": { + "aggregate-error": "^3.0.0" + }, + "dependencies": { + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "p-reduce": { + "version": "https://registry.nlark.com/p-reduce/download/p-reduce-1.0.0.tgz" + }, + "p-retry": { + "version": "https://registry.nlark.com/p-retry/download/p-retry-3.0.1.tgz", + "requires": { + "retry": "^0.12.0" + }, + "dependencies": { + "retry": { + "version": "0.12.0", + "resolved": "https://registry.nlark.com/retry/download/retry-0.12.0.tgz" + } + } + }, + "p-try": { + "version": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz" + }, + "pako": { + "version": "https://registry.nlark.com/pako/download/pako-1.0.11.tgz" + }, + "parallel-transform": { + "version": "https://registry.nlark.com/parallel-transform/download/parallel-transform-1.2.0.tgz", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/cyclist/download/cyclist-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "param-case": { + "version": "https://registry.nlark.com/param-case/download/param-case-2.1.1.tgz", + "requires": { + "no-case": "^2.2.0" + }, + "dependencies": { + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz", + "requires": { + "lower-case": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "parent-module": { + "version": "https://registry.nlark.com/parent-module/download/parent-module-1.0.1.tgz", + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz" + } + } + }, + "parse-asn1": { + "version": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.nlark.com/asn1.js/download/asn1.js-5.4.1.tgz", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": {} + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "parse-glob": { + "version": "https://registry.nlark.com/parse-glob/download/parse-glob-3.0.4.tgz", + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.nlark.com/glob-base/download/glob-base-0.3.0.tgz", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": {} + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/is-dotfile/download/is-dotfile-1.0.3.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/is-glob/download/is-glob-2.0.1.tgz", + "requires": { + "is-extglob": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "parse-json": { + "version": "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623281024478&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz", + "requires": { + "@babel/highlight": "^7.14.5" + }, + "dependencies": {} + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": {} + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz" + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz" + } + } + }, + "parse5": { + "version": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz" + }, + "parse5-htmlparser2-tree-adapter": { + "version": "https://registry.nlark.com/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz" + } + } + }, + "parseurl": { + "version": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "pascalcase": { + "version": "https://registry.nlark.com/pascalcase/download/pascalcase-0.1.1.tgz" + }, + "path-browserify": { + "version": "https://registry.nlark.com/path-browserify/download/path-browserify-0.0.1.tgz" + }, + "path-dirname": { + "version": "https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz" + }, + "path-exists": { + "version": "https://registry.npm.taobao.org/path-exists/download/path-exists-4.0.0.tgz" + }, + "path-is-absolute": { + "version": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz" + }, + "path-is-inside": { + "version": "https://registry.nlark.com/path-is-inside/download/path-is-inside-1.0.2.tgz" + }, + "path-key": { + "version": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz" + }, + "path-parse": { + "version": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + }, + "path-to-regexp": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-2.4.0.tgz" + }, + "path-type": { + "version": "https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/pify/download/pify-3.0.0.tgz" + } + } + }, + "pbkdf2": { + "version": "https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": { + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "dependencies": {} + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + } + } + }, + "performance-now": { + "version": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "picomatch": { + "version": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + }, + "pify": { + "version": "https://registry.nlark.com/pify/download/pify-4.0.1.tgz" + }, + "pinkie": { + "version": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + }, + "pinkie-promise": { + "version": "https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "requires": { + "pinkie": "^2.0.0" + }, + "dependencies": { + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz" + } + } + }, + "pirates": { + "version": "https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz", + "requires": { + "node-modules-regexp": "^1.0.0" + }, + "dependencies": { + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz" + } + } + }, + "pkg-dir": { + "version": "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "pn": { + "version": "https://registry.nlark.com/pn/download/pn-1.1.0.tgz" + }, + "pnp-webpack-plugin": { + "version": "https://registry.nlark.com/pnp-webpack-plugin/download/pnp-webpack-plugin-1.6.4.tgz", + "requires": { + "ts-pnp": "^1.1.6" + }, + "dependencies": { + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/ts-pnp/download/ts-pnp-1.2.0.tgz" + } + } + }, + "portfinder": { + "version": "https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "async": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz", + "requires": { + "lodash": "^4.17.14" + }, + "dependencies": {} + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "posix-character-classes": { + "version": "https://registry.nlark.com/posix-character-classes/download/posix-character-classes-0.1.1.tgz" + }, + "postcss": { + "version": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-calc": { + "version": "https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "postcss-colormin": { + "version": "https://registry.nlark.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz?cache=0&sync_timestamp=1622236593947&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-colormin%2Fdownload%2Fpostcss-colormin-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/color/download/color-3.1.3.tgz", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-convert-values": { + "version": "https://registry.nlark.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-discard-comments": { + "version": "https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-discard-duplicates": { + "version": "https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-discard-empty": { + "version": "https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-discard-overridden": { + "version": "https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-load-config": { + "version": "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-2.1.2.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": {} + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/import-cwd/download/import-cwd-2.1.0.tgz", + "requires": { + "import-from": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-loader": { + "version": "https://registry.nlark.com/postcss-loader/download/postcss-loader-3.0.0.tgz", + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-2.1.2.tgz", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-merge-longhand": { + "version": "https://registry.nlark.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/stylehacks/download/stylehacks-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-merge-rules": { + "version": "https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": {} + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/cssnano-util-same-parent/download/cssnano-util-same-parent-4.0.1.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": {} + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/vendors/download/vendors-1.0.4.tgz" + } + } + }, + "postcss-minify-font-values": { + "version": "https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-minify-gradients": { + "version": "https://registry.nlark.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-minify-params": { + "version": "https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + } + } + }, + "postcss-minify-selectors": { + "version": "https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "postcss-modules-extract-imports": { + "version": "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-2.0.0.tgz", + "requires": { + "postcss": "^7.0.5" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-modules-local-by-default": { + "version": "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-3.0.3.tgz", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + } + } + }, + "postcss-modules-scope": { + "version": "https://registry.nlark.com/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "postcss-modules-values": { + "version": "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-3.0.0.tgz", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + }, + "dependencies": { + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz", + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-normalize-charset": { + "version": "https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-normalize-display-values": { + "version": "https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-positions": { + "version": "https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-repeat-style": { + "version": "https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-string": { + "version": "https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-timing-functions": { + "version": "https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-unicode": { + "version": "https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-url": { + "version": "https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-2.1.0.tgz" + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.nlark.com/normalize-url/download/normalize-url-3.3.0.tgz?cache=0&sync_timestamp=1621862418485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-url%2Fdownload%2Fnormalize-url-3.3.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-normalize-whitespace": { + "version": "https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-ordered-values": { + "version": "https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-prefix-selector": { + "version": "https://registry.nlark.com/postcss-prefix-selector/download/postcss-prefix-selector-1.9.0.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-reduce-initial": { + "version": "https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": {} + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + } + } + }, + "postcss-reduce-transforms": { + "version": "https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", + "requires": { + "function-bind": "^1.1.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + } + } + }, + "postcss-selector-parser": { + "version": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "postcss-svgo": { + "version": "https://registry.nlark.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz?cache=0&sync_timestamp=1622236593132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-svgo%2Fdownload%2Fpostcss-svgo-4.0.3.tgz", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/svgo/download/svgo-1.3.2.tgz", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": {} + } + } + }, + "postcss-unique-selectors": { + "version": "https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + } + } + }, + "postcss-value-parser": { + "version": "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz" + }, + "posthtml": { + "version": "https://registry.nlark.com/posthtml/download/posthtml-0.9.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fposthtml%2Fdownload%2Fposthtml-0.9.2.tgz", + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + }, + "dependencies": { + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": {} + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + } + } + }, + "posthtml-parser": { + "version": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": { + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-3.10.1.tgz", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": {} + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz", + "requires": { + "isarray": "1.0.0" + }, + "dependencies": {} + } + } + }, + "posthtml-rename-id": { + "version": "https://registry.nlark.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz", + "requires": { + "escape-string-regexp": "1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + } + } + }, + "posthtml-render": { + "version": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + }, + "posthtml-svg-mode": { + "version": "https://registry.nlark.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + }, + "dependencies": { + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": {} + }, + "posthtml": { + "version": "0.9.2", + "resolved": "https://registry.nlark.com/posthtml/download/posthtml-0.9.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fposthtml%2Fdownload%2Fposthtml-0.9.2.tgz", + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + }, + "dependencies": {} + }, + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": {} + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/posthtml-render/download/posthtml-render-1.4.0.tgz" + } + } + }, + "prelude-ls": { + "version": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + }, + "prepend-http": { + "version": "https://registry.nlark.com/prepend-http/download/prepend-http-1.0.4.tgz" + }, + "preserve": { + "version": "https://registry.nlark.com/preserve/download/preserve-0.2.0.tgz" + }, + "prettier": { + "version": "https://registry.nlark.com/prettier/download/prettier-1.19.1.tgz?cache=0&sync_timestamp=1622888592750&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprettier%2Fdownload%2Fprettier-1.19.1.tgz" + }, + "pretty": { + "version": "https://registry.nlark.com/pretty/download/pretty-2.0.0.tgz", + "requires": { + "condense-newlines": "^0.2.1", + "extend-shallow": "^2.0.1", + "js-beautify": "^1.6.12" + }, + "dependencies": { + "condense-newlines": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/condense-newlines/download/condense-newlines-0.2.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-whitespace": "^0.3.0", + "kind-of": "^3.0.2" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "js-beautify": { + "version": "1.13.13", + "resolved": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "pretty-error": { + "version": "https://registry.nlark.com/pretty-error/download/pretty-error-2.1.2.tgz?cache=0&sync_timestamp=1623180529588&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-error%2Fdownload%2Fpretty-error-2.1.2.tgz", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "renderkid": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/renderkid/download/renderkid-2.0.6.tgz?cache=0&sync_timestamp=1623180526912&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frenderkid%2Fdownload%2Frenderkid-2.0.6.tgz", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + } + } + }, + "pretty-format": { + "version": "https://registry.nlark.com/pretty-format/download/pretty-format-24.9.0.tgz?cache=0&sync_timestamp=1622290389373&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-24.9.0.tgz", + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "dependencies": { + "@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.nlark.com/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1622290386442&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "dependencies": {} + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + } + } + }, + "process": { + "version": "https://registry.nlark.com/process/download/process-0.11.10.tgz" + }, + "process-nextick-args": { + "version": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz" + }, + "progress": { + "version": "https://registry.nlark.com/progress/download/progress-2.0.3.tgz" + }, + "promise-inflight": { + "version": "https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz" + }, + "prompts": { + "version": "https://registry.nlark.com/prompts/download/prompts-2.4.1.tgz", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "dependencies": { + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz" + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz" + } + } + }, + "proto-list": { + "version": "https://registry.nlark.com/proto-list/download/proto-list-1.2.4.tgz" + }, + "proxy-addr": { + "version": "https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz?cache=0&sync_timestamp=1622509170257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fproxy-addr%2Fdownload%2Fproxy-addr-2.0.7.tgz", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz" + } + } + }, + "prr": { + "version": "https://registry.nlark.com/prr/download/prr-1.0.1.tgz" + }, + "pseudomap": { + "version": "https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz" + }, + "psl": { + "version": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "public-encrypt": { + "version": "https://registry.nlark.com/public-encrypt/download/public-encrypt-4.0.3.tgz", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": {} + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + }, + "dependencies": {} + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": {} + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "pump": { + "version": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "requires": { + "wrappy": "1" + }, + "dependencies": {} + } + } + }, + "pumpify": { + "version": "https://registry.nlark.com/pumpify/download/pumpify-1.5.1.tgz", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/pump/download/pump-2.0.1.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "dependencies": {} + } + } + }, + "punycode": { + "version": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + }, + "q": { + "version": "https://registry.nlark.com/q/download/q-1.5.1.tgz" + }, + "qs": { + "version": "https://registry.npm.taobao.org/qs/download/qs-6.7.0.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.7.0.tgz" + }, + "query-string": { + "version": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz" + } + } + }, + "querystring": { + "version": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz" + }, + "querystring-es3": { + "version": "https://registry.nlark.com/querystring-es3/download/querystring-es3-0.2.1.tgz" + }, + "querystringify": { + "version": "https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz" + }, + "randomatic": { + "version": "https://registry.nlark.com/randomatic/download/randomatic-3.1.1.tgz", + "requires": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-4.0.0.tgz" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + }, + "math-random": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/math-random/download/math-random-1.0.4.tgz" + } + } + }, + "randombytes": { + "version": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "randomfill": { + "version": "https://registry.nlark.com/randomfill/download/randomfill-1.0.4.tgz", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "range-parser": { + "version": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "raw-body": { + "version": "https://registry.npm.taobao.org/raw-body/download/raw-body-2.4.0.tgz", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.2.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + } + } + }, + "react-is": { + "version": "https://registry.nlark.com/react-is/download/react-is-16.13.1.tgz" + }, + "read-pkg": { + "version": "https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz?cache=0&sync_timestamp=1621242064742&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnormalize-package-data%2Fdownload%2F%40types%2Fnormalize-package-data-2.4.0.tgz" + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": {} + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "dependencies": {} + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.6.0.tgz" + } + } + }, + "read-pkg-up": { + "version": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-4.0.0.tgz", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz?cache=0&sync_timestamp=1618752796161&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffind-up%2Fdownload%2Ffind-up-3.0.0.tgz", + "requires": { + "locate-path": "^3.0.0" + }, + "dependencies": {} + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-3.0.0.tgz", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "readable-stream": { + "version": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + } + } + }, + "readdirp": { + "version": "https://registry.nlark.com/readdirp/download/readdirp-3.5.0.tgz", + "requires": { + "picomatch": "^2.2.1" + }, + "dependencies": { + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648389529&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz" + } + } + }, + "realpath-native": { + "version": "https://registry.nlark.com/realpath-native/download/realpath-native-1.1.0.tgz", + "requires": { + "util.promisify": "^1.0.0" + }, + "dependencies": { + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "regenerate": { + "version": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + }, + "regenerate-unicode-properties": { + "version": "https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-8.2.0.tgz", + "requires": { + "regenerate": "^1.4.0" + }, + "dependencies": { + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + } + } + }, + "regenerator-runtime": { + "version": "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.7.tgz" + }, + "regenerator-transform": { + "version": "https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz", + "requires": { + "@babel/runtime": "^7.8.4" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.14.5", + "resolved": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.5.tgz?cache=0&sync_timestamp=1623280325784&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.5.tgz", + "requires": { + "regenerator-runtime": "^0.13.4" + }, + "dependencies": {} + } + } + }, + "regex-cache": { + "version": "https://registry.nlark.com/regex-cache/download/regex-cache-0.4.4.tgz", + "requires": { + "is-equal-shallow": "^0.1.3" + }, + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.nlark.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz", + "requires": { + "is-primitive": "^2.0.0" + }, + "dependencies": {} + } + } + }, + "regex-not": { + "version": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "regexp.prototype.flags": { + "version": "https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "regexpp": { + "version": "https://registry.nlark.com/regexpp/download/regexpp-2.0.1.tgz" + }, + "regexpu-core": { + "version": "https://registry.nlark.com/regexpu-core/download/regexpu-core-4.7.1.tgz", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "dependencies": { + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-8.2.0.tgz", + "requires": { + "regenerate": "^1.4.0" + }, + "dependencies": {} + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.nlark.com/regjsgen/download/regjsgen-0.5.2.tgz" + }, + "regjsparser": { + "version": "0.6.9", + "resolved": "https://registry.nlark.com/regjsparser/download/regjsparser-0.6.9.tgz", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": {} + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-1.0.4.tgz", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "dependencies": {} + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.2.0.tgz" + } + } + }, + "regjsgen": { + "version": "https://registry.nlark.com/regjsgen/download/regjsgen-0.5.2.tgz" + }, + "regjsparser": { + "version": "https://registry.nlark.com/regjsparser/download/regjsparser-0.6.9.tgz", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.nlark.com/jsesc/download/jsesc-0.5.0.tgz" + } + } + }, + "relateurl": { + "version": "https://registry.nlark.com/relateurl/download/relateurl-0.2.7.tgz" + }, + "remove-trailing-separator": { + "version": "https://registry.nlark.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz" + }, + "renderkid": { + "version": "https://registry.nlark.com/renderkid/download/renderkid-2.0.6.tgz?cache=0&sync_timestamp=1623180526912&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frenderkid%2Fdownload%2Frenderkid-2.0.6.tgz", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-4.1.3.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": {} + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/dom-converter/download/dom-converter-0.2.0.tgz", + "requires": { + "utila": "~0.4" + }, + "dependencies": {} + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/htmlparser2/download/htmlparser2-6.1.0.tgz", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "repeat-element": { + "version": "https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz" + }, + "repeat-string": { + "version": "https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz" + }, + "repeating": { + "version": "https://registry.nlark.com/repeating/download/repeating-2.0.1.tgz", + "requires": { + "is-finite": "^1.0.0" + }, + "dependencies": { + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-finite/download/is-finite-1.1.0.tgz" + } + } + }, + "request": { + "version": "https://registry.npm.taobao.org/request/download/request-2.88.2.tgz?cache=0&sync_timestamp=1618752802581&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frequest%2Fdownload%2Frequest-2.88.2.tgz", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz", + "requires": { + "delayed-stream": "~1.0.0" + }, + "dependencies": {} + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npm.taobao.org/form-data/download/form-data-2.3.3.tgz", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "dependencies": {} + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npm.taobao.org/har-validator/download/har-validator-5.1.5.tgz", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": {} + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "dependencies": {} + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npm.taobao.org/qs/download/qs-6.5.2.tgz?cache=0&sync_timestamp=1618752799778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqs%2Fdownload%2Fqs-6.5.2.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": {} + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "request-promise-core": { + "version": "https://registry.nlark.com/request-promise-core/download/request-promise-core-1.1.4.tgz", + "requires": { + "lodash": "^4.17.19" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "request-promise-native": { + "version": "https://registry.nlark.com/request-promise-native/download/request-promise-native-1.0.9.tgz", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/request-promise-core/download/request-promise-core-1.1.4.tgz", + "requires": { + "lodash": "^4.17.19" + }, + "dependencies": {} + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-2.5.0.tgz", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": {} + } + } + }, + "require-directory": { + "version": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "require-main-filename": { + "version": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + }, + "requires-port": { + "version": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + }, + "resize-observer-polyfill": { + "version": "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz" + }, + "resolve": { + "version": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": { + "is-core-module": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz", + "requires": { + "has": "^1.0.3" + }, + "dependencies": {} + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947783503&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz" + } + } + }, + "resolve-cwd": { + "version": "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz" + } + } + }, + "resolve-from": { + "version": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz" + }, + "resolve-url": { + "version": "https://registry.nlark.com/resolve-url/download/resolve-url-0.2.1.tgz" + }, + "restore-cursor": { + "version": "https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz", + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": {} + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + }, + "ret": { + "version": "https://registry.nlark.com/ret/download/ret-0.1.15.tgz" + }, + "retry": { + "version": "https://registry.nlark.com/retry/download/retry-0.12.0.tgz" + }, + "rgb-regex": { + "version": "https://registry.nlark.com/rgb-regex/download/rgb-regex-1.0.1.tgz" + }, + "rgba-regex": { + "version": "https://registry.nlark.com/rgba-regex/download/rgba-regex-1.0.0.tgz" + }, + "rimraf": { + "version": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.7.1.tgz?cache=0&sync_timestamp=1618752800123&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.7.1.tgz", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "ripemd160": { + "version": "https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + }, + "dependencies": { + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + } + } + }, + "rsvp": { + "version": "https://registry.nlark.com/rsvp/download/rsvp-4.8.5.tgz" + }, + "run-async": { + "version": "https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz" + }, + "run-queue": { + "version": "https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz" + } + } + }, + "runjs": { + "version": "4.3.2", + "resolved": "https://registry.nlark.com/runjs/download/runjs-4.3.2.tgz", + "dev": true, + "requires": { + "chalk": "2.3.0", + "lodash.padend": "4.6.1", + "microcli": "1.3.1", + "omelette": "0.4.5" + }, + "dependencies": { + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.3.0.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.3.0.tgz", + "requires": { + "ansi-styles": "^3.1.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^4.0.0" + }, + "dependencies": {} + }, + "lodash.padend": { + "version": "4.6.1", + "resolved": "https://registry.nlark.com/lodash.padend/download/lodash.padend-4.6.1.tgz" + }, + "microcli": { + "version": "1.3.1", + "resolved": "https://registry.nlark.com/microcli/download/microcli-1.3.1.tgz", + "requires": { + "lodash": "4.17.4", + "microargs": "1.1.0" + }, + "dependencies": {} + }, + "omelette": { + "version": "0.4.5", + "resolved": "https://registry.nlark.com/omelette/download/omelette-0.4.5.tgz" + } + } + }, + "rxjs": { + "version": "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npm.taobao.org/tslib/download/tslib-1.14.1.tgz" + } + } + }, + "safe-buffer": { + "version": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "safe-regex": { + "version": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": { + "ret": { + "version": "0.1.15", + "resolved": "https://registry.nlark.com/ret/download/ret-0.1.15.tgz" + } + } + }, + "safer-buffer": { + "version": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + }, + "sane": { + "version": "https://registry.nlark.com/sane/download/sane-4.1.0.tgz", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "dependencies": {} + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": {} + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/capture-exit/download/capture-exit-2.0.0.tgz", + "requires": { + "rsvp": "^4.8.4" + }, + "dependencies": {} + }, + "exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/execa/download/execa-1.0.0.tgz", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz", + "requires": { + "bser": "2.1.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618752761745&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz" + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": {} + } + } + }, + "sass": { + "version": "1.26.8", + "resolved": "https://registry.nlark.com/sass/download/sass-1.26.8.tgz", + "dev": true, + "requires": { + "chokidar": ">=2.0.0 <4.0.0" + }, + "dependencies": { + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": {} + } + } + }, + "sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.nlark.com/sass-loader/download/sass-loader-8.0.2.tgz?cache=0&sync_timestamp=1622562212227&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsass-loader%2Fdownload%2Fsass-loader-8.0.2.tgz", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.nlark.com/clone-deep/download/clone-deep-4.0.1.tgz", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + } + } + }, + "sax": { + "version": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "saxes": { + "version": "https://registry.nlark.com/saxes/download/saxes-3.1.11.tgz", + "requires": { + "xmlchars": "^2.1.1" + }, + "dependencies": { + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz" + } + } + }, + "schema-utils": { + "version": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + } + } + }, + "script-ext-html-webpack-plugin": { + "version": "2.1.3", + "resolved": "https://registry.nlark.com/script-ext-html-webpack-plugin/download/script-ext-html-webpack-plugin-2.1.3.tgz", + "dev": true, + "requires": { + "debug": "^4.1.0" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + } + } + }, + "select-hose": { + "version": "https://registry.nlark.com/select-hose/download/select-hose-2.0.0.tgz" + }, + "selfsigned": { + "version": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz", + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": { + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz" + } + } + }, + "semver": { + "version": "https://registry.npm.taobao.org/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz" + }, + "send": { + "version": "https://registry.nlark.com/send/download/send-0.17.1.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz" + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": {} + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-1.6.0.tgz" + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.1.tgz" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz", + "requires": { + "ee-first": "1.1.1" + }, + "dependencies": {} + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + } + } + }, + "serialize-javascript": { + "version": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": { + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz", + "requires": { + "safe-buffer": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "serve-index": { + "version": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": {} + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.nlark.com/batch/download/batch-0.6.1.tgz" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "dependencies": {} + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + } + } + }, + "serve-static": { + "version": "1.13.2", + "resolved": "https://registry.nlark.com/serve-static/download/serve-static-1.13.2.tgz", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.2", + "send": "0.16.2" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz?cache=0&sync_timestamp=1618752927995&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-html%2Fdownload%2Fescape-html-1.0.3.tgz" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz" + }, + "send": { + "version": "0.16.2", + "resolved": "https://registry.nlark.com/send/download/send-0.16.2.tgz", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" + }, + "dependencies": {} + } + } + }, + "set-blocking": { + "version": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz" + }, + "set-value": { + "version": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "setimmediate": { + "version": "https://registry.nlark.com/setimmediate/download/setimmediate-1.0.5.tgz" + }, + "setprototypeof": { + "version": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz" + }, + "sha.js": { + "version": "https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "shallow-clone": { + "version": "https://registry.nlark.com/shallow-clone/download/shallow-clone-3.0.1.tgz", + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz" + } + } + }, + "shebang-command": { + "version": "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz", + "requires": { + "shebang-regex": "^3.0.0" + }, + "dependencies": { + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz" + } + } + }, + "shebang-regex": { + "version": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz" + }, + "shell-quote": { + "version": "https://registry.nlark.com/shell-quote/download/shell-quote-1.7.2.tgz" + }, + "shellwords": { + "version": "https://registry.nlark.com/shellwords/download/shellwords-0.1.1.tgz" + }, + "sigmund": { + "version": "https://registry.nlark.com/sigmund/download/sigmund-1.0.1.tgz" + }, + "signal-exit": { + "version": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + }, + "simple-swizzle": { + "version": "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz" + } + } + }, + "sisteransi": { + "version": "https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz" + }, + "slash": { + "version": "https://registry.nlark.com/slash/download/slash-3.0.0.tgz" + }, + "slice-ansi": { + "version": "https://registry.nlark.com/slice-ansi/download/slice-ansi-2.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": {} + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz" + } + } + }, + "snapdragon": { + "version": "https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "base": { + "version": "0.11.2", + "resolved": "https://registry.nlark.com/base/download/base-0.11.2.tgz", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": {} + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz", + "requires": { + "ms": "2.0.0" + }, + "dependencies": {} + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "requires": { + "is-extendable": "^0.1.0" + }, + "dependencies": {} + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": {} + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + } + } + }, + "snapdragon-node": { + "version": "https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz", + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/snapdragon-util/download/snapdragon-util-3.0.1.tgz", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": {} + } + } + }, + "snapdragon-util": { + "version": "https://registry.nlark.com/snapdragon-util/download/snapdragon-util-3.0.1.tgz", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "sockjs": { + "version": "https://registry.nlark.com/sockjs/download/sockjs-0.3.21.tgz", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": {} + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": {} + } + } + }, + "sockjs-client": { + "version": "https://registry.nlark.com/sockjs-client/download/sockjs-client-1.5.1.tgz", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz", + "requires": { + "ms": "^2.1.1" + }, + "dependencies": {} + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/eventsource/download/eventsource-1.1.0.tgz", + "requires": { + "original": "^1.0.0" + }, + "dependencies": {} + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz", + "requires": { + "websocket-driver": ">=0.5.1" + }, + "dependencies": {} + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.nlark.com/json3/download/json3-3.3.3.tgz" + }, + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "sort-keys": { + "version": "https://registry.nlark.com/sort-keys/download/sort-keys-1.1.2.tgz", + "requires": { + "is-plain-obj": "^1.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz" + } + } + }, + "source-list-map": { + "version": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-resolve": { + "version": "https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "dependencies": { + "atob": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/atob/download/atob-2.1.2.tgz" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.nlark.com/resolve-url/download/resolve-url-0.2.1.tgz" + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz" + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + } + } + }, + "source-map-support": { + "version": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "source-map-url": { + "version": "https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz" + }, + "spdx-correct": { + "version": "https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": {} + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + }, + "spdx-exceptions": { + "version": "https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz" + }, + "spdx-expression-parse": { + "version": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": { + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz" + }, + "spdx-license-ids": { + "version": "3.0.9", + "resolved": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + } + } + }, + "spdx-license-ids": { + "version": "https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.9.tgz?cache=0&sync_timestamp=1621652699228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fspdx-license-ids%2Fdownload%2Fspdx-license-ids-3.0.9.tgz" + }, + "spdy": { + "version": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/handle-thing/download/handle-thing-2.0.1.tgz" + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz" + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/select-hose/download/select-hose-2.0.0.tgz" + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": {} + } + } + }, + "spdy-transport": { + "version": "https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz?cache=0&sync_timestamp=1621147029891&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdetect-node%2Fdownload%2Fdetect-node-2.1.0.tgz" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.nlark.com/hpack.js/download/hpack.js-2.1.6.tgz", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": {} + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "dependencies": {} + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "split-string": { + "version": "https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "sprintf-js": { + "version": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz" + }, + "sshpk": { + "version": "https://registry.npm.taobao.org/sshpk/download/sshpk-1.16.1.tgz", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": { + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npm.taobao.org/asn1/download/asn1-0.2.4.tgz", + "requires": { + "safer-buffer": "~2.1.0" + }, + "dependencies": {} + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "requires": { + "tweetnacl": "^0.14.3" + }, + "dependencies": {} + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": {} + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npm.taobao.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": {} + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npm.taobao.org/getpass/download/getpass-0.1.7.tgz", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": {} + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz" + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + } + } + }, + "ssri": { + "version": "https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz", + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "dependencies": { + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.nlark.com/minipass/download/minipass-3.1.3.tgz", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": {} + } + } + }, + "stable": { + "version": "https://registry.nlark.com/stable/download/stable-0.1.8.tgz" + }, + "stack-utils": { + "version": "https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz" + } + } + }, + "stackframe": { + "version": "https://registry.nlark.com/stackframe/download/stackframe-1.2.0.tgz" + }, + "static-extend": { + "version": "https://registry.nlark.com/static-extend/download/static-extend-0.1.2.tgz", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": {} + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.nlark.com/object-copy/download/object-copy-0.1.0.tgz", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": {} + } + } + }, + "statuses": { + "version": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz" + }, + "stealthy-require": { + "version": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz" + }, + "stream-browserify": { + "version": "https://registry.nlark.com/stream-browserify/download/stream-browserify-2.0.2.tgz", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "stream-each": { + "version": "https://registry.nlark.com/stream-each/download/stream-each-1.2.3.tgz", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", + "requires": { + "once": "^1.4.0" + }, + "dependencies": {} + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + } + } + }, + "stream-http": { + "version": "https://registry.npm.taobao.org/stream-http/download/stream-http-2.8.3.tgz", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + } + } + }, + "stream-shift": { + "version": "https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz" + }, + "strict-uri-encode": { + "version": "https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz" + }, + "string-length": { + "version": "https://registry.nlark.com/string-length/download/string-length-3.1.0.tgz", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": { + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "string-width": { + "version": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz" + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "string.prototype.trimend": { + "version": "https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "string.prototype.trimstart": { + "version": "https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + } + } + }, + "string_decoder": { + "version": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "strip-ansi": { + "version": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz" + } + } + }, + "strip-bom": { + "version": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "strip-eof": { + "version": "https://registry.nlark.com/strip-eof/download/strip-eof-1.0.0.tgz" + }, + "strip-final-newline": { + "version": "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" + }, + "strip-indent": { + "version": "https://registry.nlark.com/strip-indent/download/strip-indent-2.0.0.tgz?cache=0&sync_timestamp=1620053263051&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-indent%2Fdownload%2Fstrip-indent-2.0.0.tgz" + }, + "strip-json-comments": { + "version": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz" + }, + "stylehacks": { + "version": "https://registry.nlark.com/stylehacks/download/stylehacks-4.0.3.tgz", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "browserslist": { + "version": "4.16.6", + "resolved": "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "dependencies": {} + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.nlark.com/postcss/download/postcss-7.0.35.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-7.0.35.tgz", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": {} + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz?cache=0&sync_timestamp=1620753051451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-3.1.2.tgz", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "supports-color": { + "version": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz" + } + } + }, + "svg-baker": { + "version": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/clone/download/clone-2.1.2.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz", + "requires": { + "is-plain-obj": "^1.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.0.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": {} + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.nlark.com/postcss/download/postcss-5.2.18.tgz?cache=0&sync_timestamp=1623282002530&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-5.2.18.tgz", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": {} + }, + "postcss-prefix-selector": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/postcss-prefix-selector/download/postcss-prefix-selector-1.9.0.tgz", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": {} + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://registry.nlark.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz", + "requires": { + "escape-string-regexp": "1.0.5" + }, + "dependencies": {} + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + }, + "dependencies": {} + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "dependencies": {} + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz" + } + } + }, + "svg-baker-runtime": { + "version": "https://registry.nlark.com/svg-baker-runtime/download/svg-baker-runtime-1.4.7.tgz", + "requires": { + "deepmerge": "1.3.2", + "mitt": "1.1.2", + "svg-baker": "^1.7.0" + }, + "dependencies": { + "deepmerge": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz" + }, + "mitt": { + "version": "1.1.2", + "resolved": "https://registry.nlark.com/mitt/download/mitt-1.1.2.tgz" + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": {} + } + } + }, + "svg-sprite-loader": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/svg-sprite-loader/download/svg-sprite-loader-4.1.3.tgz?cache=0&sync_timestamp=1622202565808&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsvg-sprite-loader%2Fdownload%2Fsvg-sprite-loader-4.1.3.tgz", + "dev": true, + "requires": { + "bluebird": "^3.5.0", + "deepmerge": "1.3.2", + "domready": "1.0.8", + "escape-string-regexp": "1.0.5", + "html-webpack-plugin": "^3.2.0", + "loader-utils": "^1.1.0", + "svg-baker": "^1.4.0", + "svg-baker-runtime": "^1.4.0", + "url-slug": "2.0.0" + }, + "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz" + }, + "deepmerge": { + "version": "1.3.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz" + }, + "domready": { + "version": "1.0.8", + "resolved": "https://registry.nlark.com/domready/download/domready-1.0.8.tgz" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz" + }, + "html-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.nlark.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz", + "requires": { + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "tapable": "^1.0.0", + "toposort": "^1.0.0", + "util.promisify": "1.0.0" + }, + "dependencies": {} + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": {} + }, + "svg-baker-runtime": { + "version": "1.4.7", + "resolved": "https://registry.nlark.com/svg-baker-runtime/download/svg-baker-runtime-1.4.7.tgz", + "requires": { + "deepmerge": "1.3.2", + "mitt": "1.1.2", + "svg-baker": "^1.7.0" + }, + "dependencies": {} + }, + "url-slug": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/url-slug/download/url-slug-2.0.0.tgz?cache=0&sync_timestamp=1620876645815&other_urls=https%3A%2F%2Fregistry.nlark.com%2Furl-slug%2Fdownload%2Furl-slug-2.0.0.tgz", + "requires": { + "unidecode": "0.1.8" + }, + "dependencies": {} + } + } + }, + "svg-tags": { + "version": "https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz" + }, + "svgo": { + "version": "1.2.2", + "resolved": "https://registry.nlark.com/svgo/download/svgo-1.2.2.tgz", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.28", + "css-url-regex": "^1.1.0", + "csso": "^3.5.1", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/coa/download/coa-2.0.2.tgz", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": {} + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/css-select/download/css-select-2.1.0.tgz?cache=0&sync_timestamp=1622994319665&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcss-select%2Fdownload%2Fcss-select-2.1.0.tgz", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + }, + "dependencies": {} + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz" + }, + "css-tree": { + "version": "1.0.0-alpha.28", + "resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.28.tgz", + "requires": { + "mdn-data": "~1.1.0", + "source-map": "^0.5.3" + }, + "dependencies": {} + }, + "css-url-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/css-url-regex/download/css-url-regex-1.1.0.tgz" + }, + "csso": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/csso/download/csso-3.5.1.tgz", + "requires": { + "css-tree": "1.0.0-alpha.29" + }, + "dependencies": {} + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "object.values": { + "version": "1.1.4", + "resolved": "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz?cache=0&sync_timestamp=1622071191450&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject.values%2Fdownload%2Fobject.values-1.1.4.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.2" + }, + "dependencies": {} + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/stable/download/stable-0.1.8.tgz" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": {} + } + } + }, + "symbol-tree": { + "version": "https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz" + }, + "table": { + "version": "https://registry.nlark.com/table/download/table-5.4.6.tgz", + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/slice-ansi/download/slice-ansi-2.1.0.tgz", + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "dependencies": {} + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": {} + } + } + }, + "tapable": { + "version": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "terser": { + "version": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.nlark.com/source-map-support/download/source-map-support-0.5.19.tgz", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": {} + } + } + }, + "terser-webpack-plugin": { + "version": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-2.3.8.tgz", + "requires": { + "cacache": "^13.0.1", + "find-cache-dir": "^3.3.1", + "jest-worker": "^25.4.0", + "p-limit": "^2.3.0", + "schema-utils": "^2.6.6", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "cacache": { + "version": "13.0.1", + "resolved": "https://registry.nlark.com/cacache/download/cacache-13.0.1.tgz?cache=0&sync_timestamp=1621949616263&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacache%2Fdownload%2Fcacache-13.0.1.tgz", + "requires": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "dependencies": {} + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": {} + }, + "jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.nlark.com/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1622290250197&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": {} + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", + "requires": { + "p-try": "^2.0.0" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz", + "requires": { + "randombytes": "^2.1.0" + }, + "dependencies": {} + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.nlark.com/terser/download/terser-4.8.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fterser%2Fdownload%2Fterser-4.8.0.tgz", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "test-exclude": { + "version": "https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": {} + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "requires": { + "brace-expansion": "^1.1.7" + }, + "dependencies": {} + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-4.0.0.tgz", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": {} + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz" + } + } + }, + "text-table": { + "version": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz" + }, + "thenify": { + "version": "https://registry.nlark.com/thenify/download/thenify-3.3.1.tgz", + "requires": { + "any-promise": "^1.0.0" + }, + "dependencies": { + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz" + } + } + }, + "thenify-all": { + "version": "https://registry.nlark.com/thenify-all/download/thenify-all-1.6.0.tgz", + "requires": { + "thenify": ">= 3.1.0 < 4" + }, + "dependencies": { + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.nlark.com/thenify/download/thenify-3.3.1.tgz", + "requires": { + "any-promise": "^1.0.0" + }, + "dependencies": {} + } + } + }, + "thread-loader": { + "version": "https://registry.nlark.com/thread-loader/download/thread-loader-2.1.3.tgz", + "requires": { + "loader-runner": "^2.3.1", + "loader-utils": "^1.1.0", + "neo-async": "^2.6.0" + }, + "dependencies": { + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + } + } + }, + "throat": { + "version": "https://registry.nlark.com/throat/download/throat-4.1.0.tgz" + }, + "throttle-debounce": { + "version": "https://registry.nlark.com/throttle-debounce/download/throttle-debounce-1.1.0.tgz" + }, + "through": { + "version": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz" + }, + "through2": { + "version": "https://registry.nlark.com/through2/download/through2-2.0.5.tgz", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": {} + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + } + } + }, + "thunky": { + "version": "https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz" + }, + "timers-browserify": { + "version": "https://registry.nlark.com/timers-browserify/download/timers-browserify-2.0.12.tgz", + "requires": { + "setimmediate": "^1.0.4" + }, + "dependencies": { + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/setimmediate/download/setimmediate-1.0.5.tgz" + } + } + }, + "timsort": { + "version": "https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz" + }, + "tmp": { + "version": "https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz", + "requires": { + "os-tmpdir": "~1.0.2" + }, + "dependencies": { + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz" + } + } + }, + "tmpl": { + "version": "https://registry.nlark.com/tmpl/download/tmpl-1.0.4.tgz" + }, + "to-arraybuffer": { + "version": "https://registry.npm.taobao.org/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz" + }, + "to-fast-properties": { + "version": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz" + }, + "to-object-path": { + "version": "https://registry.nlark.com/to-object-path/download/to-object-path-0.3.0.tgz", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz", + "requires": { + "is-buffer": "^1.1.5" + }, + "dependencies": {} + } + } + }, + "to-regex": { + "version": "https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": {} + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": {} + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": {} + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz", + "requires": { + "ret": "~0.1.10" + }, + "dependencies": {} + } + } + }, + "to-regex-range": { + "version": "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz", + "requires": { + "is-number": "^7.0.0" + }, + "dependencies": { + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz" + } + } + }, + "toidentifier": { + "version": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz" + }, + "toposort": { + "version": "https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz" + }, + "tough-cookie": { + "version": "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-3.0.1.tgz", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "tr46": { + "version": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "traverse": { + "version": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz" + }, + "trim-right": { + "version": "https://registry.nlark.com/trim-right/download/trim-right-1.0.1.tgz?cache=0&sync_timestamp=1619002842644&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftrim-right%2Fdownload%2Ftrim-right-1.0.1.tgz" + }, + "tryer": { + "version": "https://registry.nlark.com/tryer/download/tryer-1.0.1.tgz" + }, + "ts-jest": { + "version": "https://registry.nlark.com/ts-jest/download/ts-jest-24.3.0.tgz?cache=0&sync_timestamp=1622995664837&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fts-jest%2Fdownload%2Fts-jest-24.3.0.tgz", + "requires": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "dependencies": { + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.nlark.com/bs-logger/download/bs-logger-0.2.6.tgz", + "requires": { + "fast-json-stable-stringify": "2.x" + }, + "dependencies": {} + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/json5/download/json5-2.2.0.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz" + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "dependencies": {} + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz" + }, + "yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-10.1.0.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-10.1.0.tgz", + "requires": { + "camelcase": "^4.1.0" + }, + "dependencies": {} + } + } + }, + "ts-pnp": { + "version": "https://registry.nlark.com/ts-pnp/download/ts-pnp-1.2.0.tgz" + }, + "tsconfig": { + "version": "https://registry.nlark.com/tsconfig/download/tsconfig-7.0.0.tgz", + "requires": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + }, + "dependencies": { + "@types/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/@types/strip-bom/download/@types/strip-bom-3.0.0.tgz" + }, + "@types/strip-json-comments": { + "version": "0.0.30", + "resolved": "https://registry.nlark.com/@types/strip-json-comments/download/@types/strip-json-comments-0.0.30.tgz" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz" + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz" + } + } + }, + "tslib": { + "version": "https://registry.npm.taobao.org/tslib/download/tslib-1.14.1.tgz" + }, + "tty-browserify": { + "version": "https://registry.nlark.com/tty-browserify/download/tty-browserify-0.0.0.tgz" + }, + "tunnel-agent": { + "version": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "requires": { + "safe-buffer": "^5.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + } + } + }, + "tweetnacl": { + "version": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz" + }, + "type-check": { + "version": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "requires": { + "prelude-ls": "~1.1.2" + }, + "dependencies": { + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz" + } + } + }, + "type-fest": { + "version": "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz" + }, + "type-is": { + "version": "https://registry.npm.taobao.org/type-is/download/type-is-1.6.18.tgz", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "dependencies": { + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz", + "requires": { + "mime-db": "1.48.0" + }, + "dependencies": {} + } + } + }, + "typedarray": { + "version": "https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz" + }, + "uglify-js": { + "version": "https://registry.nlark.com/uglify-js/download/uglify-js-3.4.10.tgz", + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.nlark.com/commander/download/commander-2.19.0.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "unbox-primitive": { + "version": "https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz" + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "dependencies": {} + } + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + }, + "unicode-match-property-ecmascript": { + "version": "https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-1.0.4.tgz", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "dependencies": { + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.1.0.tgz" + } + } + }, + "unicode-match-property-value-ecmascript": { + "version": "https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-1.2.0.tgz" + }, + "unicode-property-aliases-ecmascript": { + "version": "https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-1.1.0.tgz" + }, + "unidecode": { + "version": "https://registry.nlark.com/unidecode/download/unidecode-0.1.8.tgz" + }, + "union-value": { + "version": "https://registry.nlark.com/union-value/download/union-value-1.0.1.tgz", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz" + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1619586645239&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": {} + } + } + }, + "uniq": { + "version": "https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz" + }, + "uniqs": { + "version": "https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz" + }, + "unique-filename": { + "version": "https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz", + "requires": { + "unique-slug": "^2.0.0" + }, + "dependencies": { + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz", + "requires": { + "imurmurhash": "^0.1.4" + }, + "dependencies": {} + } + } + }, + "unique-slug": { + "version": "https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz", + "requires": { + "imurmurhash": "^0.1.4" + }, + "dependencies": { + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + } + } + }, + "universalify": { + "version": "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz" + }, + "unpipe": { + "version": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz" + }, + "unquote": { + "version": "https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz" + }, + "unset-value": { + "version": "https://registry.nlark.com/unset-value/download/unset-value-1.0.0.tgz", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.nlark.com/has-value/download/has-value-0.3.1.tgz", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": {} + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz" + } + } + }, + "upath": { + "version": "https://registry.nlark.com/upath/download/upath-1.2.0.tgz" + }, + "upper-case": { + "version": "https://registry.nlark.com/upper-case/download/upper-case-1.1.3.tgz" + }, + "uri-js": { + "version": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz" + } + } + }, + "urix": { + "version": "https://registry.nlark.com/urix/download/urix-0.1.0.tgz" + }, + "url": { + "version": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz" + } + } + }, + "url-loader": { + "version": "https://registry.nlark.com/url-loader/download/url-loader-2.3.0.tgz", + "requires": { + "loader-utils": "^1.2.3", + "mime": "^2.4.4", + "schema-utils": "^2.5.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "dependencies": {} + } + } + }, + "url-parse": { + "version": "https://registry.nlark.com/url-parse/download/url-parse-1.5.1.tgz", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + }, + "dependencies": { + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz" + } + } + }, + "url-slug": { + "version": "https://registry.nlark.com/url-slug/download/url-slug-2.0.0.tgz?cache=0&sync_timestamp=1620876645815&other_urls=https%3A%2F%2Fregistry.nlark.com%2Furl-slug%2Fdownload%2Furl-slug-2.0.0.tgz", + "requires": { + "unidecode": "0.1.8" + }, + "dependencies": { + "unidecode": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/unidecode/download/unidecode-0.1.8.tgz" + } + } + }, + "use": { + "version": "https://registry.nlark.com/use/download/use-3.1.1.tgz" + }, + "util": { + "version": "https://registry.nlark.com/util/download/util-0.11.1.tgz?cache=0&sync_timestamp=1622213109760&other_urls=https%3A%2F%2Fregistry.nlark.com%2Futil%2Fdownload%2Futil-0.11.1.tgz", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz" + } + } + }, + "util-deprecate": { + "version": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz?cache=0&sync_timestamp=1618752927832&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil-deprecate%2Fdownload%2Futil-deprecate-1.0.2.tgz" + }, + "util.promisify": { + "version": "https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "dependencies": { + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": {} + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": {} + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz", + "requires": { + "is-callable": "^1.1.3" + }, + "dependencies": {} + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.2.tgz" + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.nlark.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.2.tgz", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "dependencies": {} + } + } + }, + "utila": { + "version": "https://registry.nlark.com/utila/download/utila-0.4.0.tgz" + }, + "utils-merge": { + "version": "https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz" + }, + "uuid": { + "version": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + }, + "v8-compile-cache": { + "version": "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz" + }, + "validate-npm-package-license": { + "version": "https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "dependencies": { + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": {} + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "dependencies": {} + } + } + }, + "vary": { + "version": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz" + }, + "vendors": { + "version": "https://registry.nlark.com/vendors/download/vendors-1.0.4.tgz" + }, + "verror": { + "version": "https://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz" + }, + "extsprintf": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.4.0.tgz" + } + } + }, + "vm-browserify": { + "version": "https://registry.nlark.com/vm-browserify/download/vm-browserify-1.1.2.tgz" + }, + "vue": { + "version": "2.6.10", + "resolved": "https://registry.nlark.com/vue/download/vue-2.6.10.tgz" + }, + "vue-eslint-parser": { + "version": "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.6.0.tgz", + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.15" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz" + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": {} + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "vue-hot-reload-api": { + "version": "https://registry.nlark.com/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz" + }, + "vue-jest": { + "version": "https://registry.nlark.com/vue-jest/download/vue-jest-3.0.7.tgz?cache=0&sync_timestamp=1622444650910&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-jest%2Fdownload%2Fvue-jest-3.0.7.tgz", + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", + "chalk": "^2.1.0", + "deasync": "^0.1.15", + "extract-from-css": "^0.4.4", + "find-babel-config": "^1.1.0", + "js-beautify": "^1.6.14", + "node-cache": "^4.1.1", + "object-assign": "^4.1.1", + "source-map": "^0.5.6", + "tsconfig": "^7.0.0", + "vue-template-es2015-compiler": "^1.6.0" + }, + "dependencies": { + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.2", + "resolved": "https://registry.nlark.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "deasync": { + "version": "0.1.21", + "resolved": "https://registry.nlark.com/deasync/download/deasync-0.1.21.tgz", + "requires": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + }, + "dependencies": {} + }, + "extract-from-css": { + "version": "0.4.4", + "resolved": "https://registry.nlark.com/extract-from-css/download/extract-from-css-0.4.4.tgz", + "requires": { + "css": "^2.1.0" + }, + "dependencies": {} + }, + "find-babel-config": { + "version": "1.2.0", + "resolved": "https://registry.nlark.com/find-babel-config/download/find-babel-config-1.2.0.tgz", + "requires": { + "json5": "^0.5.1", + "path-exists": "^3.0.0" + }, + "dependencies": {} + }, + "js-beautify": { + "version": "1.13.13", + "resolved": "https://registry.nlark.com/js-beautify/download/js-beautify-1.13.13.tgz", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + }, + "dependencies": {} + }, + "node-cache": { + "version": "4.2.1", + "resolved": "https://registry.nlark.com/node-cache/download/node-cache-4.2.1.tgz", + "requires": { + "clone": "2.x", + "lodash": "^4.17.15" + }, + "dependencies": {} + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz" + }, + "tsconfig": { + "version": "7.0.0", + "resolved": "https://registry.nlark.com/tsconfig/download/tsconfig-7.0.0.tgz", + "requires": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + }, + "dependencies": {} + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + } + } + }, + "vue-loader": { + "version": "https://registry.nlark.com/vue-loader/download/vue-loader-15.9.7.tgz?cache=0&sync_timestamp=1620717814924&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-loader%2Fdownload%2Fvue-loader-15.9.7.tgz", + "requires": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "dependencies": { + "@vue/component-compiler-utils": { + "version": "3.2.1", + "resolved": "https://registry.nlark.com/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.2.1.tgz", + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": {} + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.nlark.com/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz" + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz", + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "vue-router": { + "version": "3.0.6", + "resolved": "https://registry.nlark.com/vue-router/download/vue-router-3.0.6.tgz" + }, + "vue-style-loader": { + "version": "https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz", + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + } + } + }, + "vue-template-compiler": { + "version": "2.6.10", + "resolved": "https://registry.nlark.com/vue-template-compiler/download/vue-template-compiler-2.6.10.tgz", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + }, + "dependencies": { + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/de-indent/download/de-indent-1.0.2.tgz" + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz" + } + } + }, + "vue-template-es2015-compiler": { + "version": "https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz" + }, + "vuex": { + "version": "3.1.0", + "resolved": "https://registry.nlark.com/vuex/download/vuex-3.1.0.tgz?cache=0&sync_timestamp=1621869174862&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvuex%2Fdownload%2Fvuex-3.1.0.tgz" + }, + "w3c-hr-time": { + "version": "https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz", + "requires": { + "browser-process-hrtime": "^1.0.0" + }, + "dependencies": { + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz" + } + } + }, + "w3c-xmlserializer": { + "version": "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-1.1.2.tgz", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/domexception/download/domexception-1.0.1.tgz", + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + } + } + }, + "walker": { + "version": "https://registry.nlark.com/walker/download/walker-1.0.7.tgz", + "requires": { + "makeerror": "1.0.x" + }, + "dependencies": { + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.nlark.com/makeerror/download/makeerror-1.0.11.tgz", + "requires": { + "tmpl": "1.0.x" + }, + "dependencies": {} + } + } + }, + "watchpack": { + "version": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": { + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-3.5.1.tgz", + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": {} + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/watchpack-chokidar2/download/watchpack-chokidar2-2.0.1.tgz", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": {} + } + } + }, + "watchpack-chokidar2": { + "version": "https://registry.nlark.com/watchpack-chokidar2/download/watchpack-chokidar2-2.0.1.tgz", + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": {} + } + } + }, + "wbuf": { + "version": "https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz", + "requires": { + "minimalistic-assert": "^1.0.0" + }, + "dependencies": { + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz" + } + } + }, + "wcwidth": { + "version": "https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz", + "requires": { + "defaults": "^1.0.3" + }, + "dependencies": { + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz", + "requires": { + "clone": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "webidl-conversions": { + "version": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + }, + "webpack": { + "version": "https://registry.nlark.com/webpack/download/webpack-4.46.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + }, + "dependencies": {} + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + }, + "dependencies": {} + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz" + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz" + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenhanced-resolve%2Fdownload%2Fenhanced-resolve-4.5.0.tgz", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": {} + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "dependencies": {} + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": {} + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": {} + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz" + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.nlark.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": {} + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": {} + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": {} + } + } + }, + "webpack-bundle-analyzer": { + "version": "https://registry.nlark.com/webpack-bundle-analyzer/download/webpack-bundle-analyzer-3.9.0.tgz?cache=0&sync_timestamp=1621259036556&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-bundle-analyzer%2Fdownload%2Fwebpack-bundle-analyzer-3.9.0.tgz", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.19", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1622440170222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz" + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1619259438344&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz" + }, + "bfj": { + "version": "6.1.2", + "resolved": "https://registry.nlark.com/bfj/download/bfj-6.1.2.tgz", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "dependencies": {} + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": {} + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.nlark.com/commander/download/commander-2.20.3.tgz" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.nlark.com/ejs/download/ejs-2.7.4.tgz" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": {} + }, + "filesize": { + "version": "3.6.1", + "resolved": "https://registry.nlark.com/filesize/download/filesize-3.6.1.tgz" + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.nlark.com/gzip-size/download/gzip-size-5.1.1.tgz", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": {} + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/opener/download/opener-1.5.2.tgz" + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": {} + } + } + }, + "webpack-chain": { + "version": "https://registry.nlark.com/webpack-chain/download/webpack-chain-6.5.1.tgz", + "requires": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + }, + "dependencies": { + "deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz" + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.nlark.com/javascript-stringify/download/javascript-stringify-2.1.0.tgz" + } + } + }, + "webpack-dev-middleware": { + "version": "https://registry.nlark.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": {} + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/mime/download/mime-2.5.2.tgz" + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz" + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + } + } + }, + "webpack-dev-server": { + "version": "https://registry.nlark.com/webpack-dev-server/download/webpack-dev-server-3.11.2.tgz?cache=0&sync_timestamp=1620307433525&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-dev-server%2Fdownload%2Fwebpack-dev-server-3.11.2.tgz", + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.nlark.com/ansi-html/download/ansi-html-0.0.7.tgz" + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": {} + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.nlark.com/chokidar/download/chokidar-2.1.8.tgz", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": {} + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.nlark.com/compression/download/compression-1.7.4.tgz", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": {} + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz" + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz", + "requires": { + "ms": "2.1.2" + }, + "dependencies": {} + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.nlark.com/del/download/del-4.1.1.tgz", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": {} + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.nlark.com/express/download/express-4.17.1.tgz", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": {} + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.nlark.com/html-entities/download/html-entities-1.4.0.tgz" + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-0.19.1.tgz?cache=0&sync_timestamp=1620409562092&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhttp-proxy-middleware%2Fdownload%2Fhttp-proxy-middleware-0.19.1.tgz", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": {} + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/import-local/download/import-local-2.0.0.tgz", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": {} + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/internal-ip/download/internal-ip-4.3.0.tgz", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "dependencies": {} + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz" + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/is-absolute-url/download/is-absolute-url-3.0.3.tgz" + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/killable/download/killable-1.0.1.tgz" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.nlark.com/loglevel/download/loglevel-1.7.1.tgz" + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.nlark.com/opn/download/opn-5.5.0.tgz", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": {} + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.nlark.com/p-retry/download/p-retry-3.0.1.tgz", + "requires": { + "retry": "^0.12.0" + }, + "dependencies": {} + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": {} + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "dependencies": {} + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz", + "requires": { + "node-forge": "^0.10.0" + }, + "dependencies": {} + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618752938510&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz" + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": {} + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.nlark.com/sockjs/download/sockjs-0.3.21.tgz", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": {} + }, + "sockjs-client": { + "version": "1.5.1", + "resolved": "https://registry.nlark.com/sockjs-client/download/sockjs-client-1.5.1.tgz", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.1" + }, + "dependencies": {} + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": {} + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz?cache=0&sync_timestamp=1622293670728&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-6.1.0.tgz", + "requires": { + "has-flag": "^3.0.0" + }, + "dependencies": {} + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.nlark.com/url/download/url-0.11.0.tgz", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": {} + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.nlark.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": {} + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": {} + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.nlark.com/ws/download/ws-6.2.2.tgz", + "requires": { + "async-limiter": "~1.0.0" + }, + "dependencies": {} + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.nlark.com/yargs/download/yargs-13.3.2.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-13.3.2.tgz", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": {} + } + } + }, + "webpack-log": { + "version": "https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.nlark.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1622213086354&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz" + } + } + }, + "webpack-merge": { + "version": "https://registry.nlark.com/webpack-merge/download/webpack-merge-4.2.2.tgz", + "requires": { + "lodash": "^4.17.15" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npm.taobao.org/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618752781435&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.21.tgz" + } + } + }, + "webpack-sources": { + "version": "https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz?cache=0&sync_timestamp=1618752798822&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map%2Fdownload%2Fsource-map-0.6.1.tgz" + } + } + }, + "websocket-driver": { + "version": "https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "dependencies": { + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz" + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz" + } + } + }, + "websocket-extensions": { + "version": "https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz" + }, + "whatwg-encoding": { + "version": "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "dependencies": {} + } + } + }, + "whatwg-mimetype": { + "version": "https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz" + }, + "whatwg-url": { + "version": "https://registry.nlark.com/whatwg-url/download/whatwg-url-7.1.0.tgz", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz" + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.nlark.com/tr46/download/tr46-1.0.1.tgz", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": {} + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz" + } + } + }, + "which": { + "version": "https://registry.nlark.com/which/download/which-2.0.2.tgz", + "requires": { + "isexe": "^2.0.0" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz" + } + } + }, + "which-boxed-primitive": { + "version": "https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "dependencies": { + "is-bigint": { + "version": "1.0.2", + "resolved": "https://registry.nlark.com/is-bigint/download/is-bigint-1.0.2.tgz?cache=0&sync_timestamp=1620162102171&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-bigint%2Fdownload%2Fis-bigint-1.0.2.tgz" + }, + "is-boolean-object": { + "version": "1.1.1", + "resolved": "https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.1.tgz?cache=0&sync_timestamp=1620428460670&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-boolean-object%2Fdownload%2Fis-boolean-object-1.1.1.tgz", + "requires": { + "call-bind": "^1.0.2" + }, + "dependencies": {} + }, + "is-number-object": { + "version": "1.0.5", + "resolved": "https://registry.nlark.com/is-number-object/download/is-number-object-1.0.5.tgz?cache=0&sync_timestamp=1620421302435&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-number-object%2Fdownload%2Fis-number-object-1.0.5.tgz" + }, + "is-string": { + "version": "1.0.6", + "resolved": "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448300041&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz" + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz", + "requires": { + "has-symbols": "^1.0.2" + }, + "dependencies": {} + } + } + }, + "which-module": { + "version": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz" + }, + "word-wrap": { + "version": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz" + }, + "worker-farm": { + "version": "https://registry.nlark.com/worker-farm/download/worker-farm-1.7.0.tgz", + "requires": { + "errno": "~0.1.7" + }, + "dependencies": { + "errno": { + "version": "0.1.8", + "resolved": "https://registry.nlark.com/errno/download/errno-0.1.8.tgz", + "requires": { + "prr": "~1.0.1" + }, + "dependencies": {} + } + } + }, + "wrap-ansi": { + "version": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-7.0.0.tgz", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": {} + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": {} + } + } + }, + "wrappy": { + "version": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619134072864&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz" + }, + "write": { + "version": "https://registry.nlark.com/write/download/write-1.0.3.tgz", + "requires": { + "mkdirp": "^0.5.1" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": {} + } + } + }, + "write-file-atomic": { + "version": "https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz" + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.nlark.com/signal-exit/download/signal-exit-3.0.3.tgz" + } + } + }, + "ws": { + "version": "https://registry.nlark.com/ws/download/ws-7.4.6.tgz" + }, + "xml-name-validator": { + "version": "https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz" + }, + "xmlchars": { + "version": "https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz" + }, + "xtend": { + "version": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz" + }, + "y18n": { + "version": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz" + }, + "yallist": { + "version": "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz" + }, + "yargs": { + "version": "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086581476&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-7.0.4.tgz", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": {} + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz" + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": {} + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-5.0.8.tgz" + }, + "yargs-parser": { + "version": "20.2.7", + "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.7.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.7.tgz" + } + } + }, + "yargs-parser": { + "version": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-20.2.7.tgz?cache=0&sync_timestamp=1618752768591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-20.2.7.tgz" + }, + "yorkie": { + "version": "https://registry.nlark.com/yorkie/download/yorkie-2.0.0.tgz", + "requires": { + "execa": "^0.8.0", + "is-ci": "^1.0.10", + "normalize-path": "^1.0.0", + "strip-indent": "^2.0.0" + }, + "dependencies": { + "execa": { + "version": "0.8.0", + "resolved": "https://registry.nlark.com/execa/download/execa-0.8.0.tgz", + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": {} + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.nlark.com/is-ci/download/is-ci-1.2.1.tgz", + "requires": { + "ci-info": "^1.5.0" + }, + "dependencies": {} + }, + "normalize-path": { + "version": "1.0.0", + "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-1.0.0.tgz" + }, + "strip-indent": { + "version": "2.0.0", + "resolved": "https://registry.nlark.com/strip-indent/download/strip-indent-2.0.0.tgz?cache=0&sync_timestamp=1620053263051&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-indent%2Fdownload%2Fstrip-indent-2.0.0.tgz" + } + } + } + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000000000000000000000000000000000000..6f070d693533014f0cedd183c634f1950321db09 --- /dev/null +++ b/package.json @@ -0,0 +1,69 @@ +{ + "name": "kcp_vue", + "version": "1.0.0", + "description": "kylin cloud platform", + "author": "", + "scripts": { + "dev": "vue-cli-service serve --open", + "build": "vue-cli-service build", + "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml" + }, + "dependencies": { + "axios": "0.18.1", + "core-js": "^3.21.1", + "crypto-js": "^4.0.0", + "echarts": "^5.1.2", + "element-ui": "2.15.13", + "highcharts": "^9.1.2", + "highcharts-vue": "^1.4.0", + "jquery": "^3.6.0", + "js-cookie": "^2.2.0", + "js-md5": "^0.7.3", + "lodash": "^4.17.21", + "moment": "^2.29.1", + "normalize.css": "7.0.0", + "nprogress": "0.2.0", + "path-to-regexp": "2.4.0", + "qs.js": "^0.1.12", + "vue": "2.6.10", + "vue-i18n": "^8.26.7", + "vue-router": "3.0.6", + "vuex": "3.1.0" + }, + "devDependencies": { + "@babel/eslint-parser": "7.15.8", + "@vue/cli-plugin-babel": "4.4.4", + "@vue/cli-plugin-eslint": "4.4.4", + "@vue/cli-plugin-unit-jest": "4.4.4", + "@vue/cli-service": "4.4.4", + "@vue/test-utils": "1.0.0-beta.29", + "autoprefixer": "9.5.1", + "babel-eslint": "^8.2.2", + "babel-jest": "23.6.0", + "babel-plugin-dynamic-import-node": "2.3.3", + "chalk": "2.4.2", + "connect": "3.6.6", + "eslint": "7.30.0", + "eslint-plugin-vue": "6.2.2", + "html-webpack-plugin": "3.2.0", + "jquery": "^3.6.0", + "mockjs": "1.0.1-beta3", + "runjs": "4.3.2", + "sass": "1.26.8", + "sass-loader": "8.0.2", + "script-ext-html-webpack-plugin": "2.1.3", + "serve-static": "1.13.2", + "svg-sprite-loader": "4.1.3", + "svgo": "1.2.2", + "vue-template-compiler": "2.6.10" + }, + "browserslist": [ + "> 1%", + "last 2 versions" + ], + "engines": { + "node": ">=8.9", + "npm": ">= 3.0.0" + }, + "license": "MIT" +} \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..46492988b01eaa5f23a214282bed4f6f06e75c30 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000000000000000000000000000000000000..fa2be9164ac798754109790fb853df97fc5e85d4 --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= webpackConfig.name %> + + + +
+ + + diff --git a/public/vcenterCtr.html b/public/vcenterCtr.html new file mode 100644 index 0000000000000000000000000000000000000000..a77e5c8dd94597b9f2ee64adb518e7cb3c6d1c22 --- /dev/null +++ b/public/vcenterCtr.html @@ -0,0 +1,60 @@ + + + + + + + + + + vcenter控制台 + + + + + + + + +
+
+
+ + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000000000000000000000000000000000000..907acd2f09d165660bc089be989b9dbc0a8f7c49 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,11 @@ + + + diff --git a/src/api/clusterapi.js b/src/api/clusterapi.js new file mode 100644 index 0000000000000000000000000000000000000000..73a28f2a169d78205282ca254b8384f0c97d3eb7 --- /dev/null +++ b/src/api/clusterapi.js @@ -0,0 +1,107 @@ +import request from '@/utils/request' + +// 创建集群 +export function creatCluster(data) { + return request({ + url: '/cluster/creatCluster', + method: 'post', + data + }) +} +// 分页获取集群存储资源 +export function pageStorage(data) { + return request({ + url: '/cluster/pageStorage', + method: 'post', + data + }) +} + +// 分页获取集群 +export function pageCluster(data) { + return request({ + url: '/cluster/pageCluster', + method: 'post', + data + }) +} + +// 集群详情 +export function clusterInfo(data) { + return request({ + url: '/cluster/clusterInfo', + method: 'post', + data + }) +} + +// 分页获取物理主机列表 +export function pagePhysicalHost(data) { + return request({ + url: '/cluster/pagePhysicalHost', + method: 'post', + data + }) +} + +// 编辑集群-获取集群内容 +export function clusterDetail(data) { + return request({ + url: '/cluster/clusterDetail', + method: 'post', + data + }) +} + +// 编辑集群 +export function modifyCluster(data) { + return request({ + url: '/cluster/modifyCluster', + method: 'post', + data + }) +} + +// 获取登录用户可见的物理集群列表 +export function getLoginUserCluster(data) { + return request({ + url: '/cluster/getLoginUserCluster', + method: 'post', + data + }) +} + +// 校验集群账号密码 +export function checkClusterUserNameAndPassword(data) { + return request({ + url: '/cluster/checkClusterUserNameAndPassword', + method: 'post', + data + }) +} + +// 获取登录集群地址 +export function getQuickLoginUrl(data) { + return request({ + url: '/cluster/getQuickLoginUrl', + method: 'post', + data + }) +} + +// 删除集群 +export function deleteCluster(data) { + return request({ + url: '/cluster/deleteCluster', + method: 'post', + data + }) +} +// 启用禁用 +export function changeClusterUse(data) { + return request({ + url: '/cluster/updateClusterStorageForbadeStatus', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/commonApi.js b/src/api/commonApi.js new file mode 100644 index 0000000000000000000000000000000000000000..6144c1473156b8bb8a2682f1cec1c3a7240fec3e --- /dev/null +++ b/src/api/commonApi.js @@ -0,0 +1,33 @@ +import request from '@/utils/request' +//获取云服务器分组列表 +export function getServerVmGroup(data) { + return request({ + url: '/general/serverVmGroups', + method: 'post', + data + }) +} +//获取云服务器分组云服务器列表 +export function getServerVmList(data) { + return request({ + url: '/general/serverVm/list', + method: 'post', + data + }) +} +//获取云服务器存储位置 +export function getbackupServerList(data) { + return request({ + url: '/general/backupServer/list', + method: 'post', + data + }) +} +//获取网卡列表 +export function getNetworkCardList(data) { + return request({ + url: '/network/specification/list', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/ecsapi.js b/src/api/ecsapi.js new file mode 100644 index 0000000000000000000000000000000000000000..2289c4ff2d632797e078a8a411e937d63a9a27f7 --- /dev/null +++ b/src/api/ecsapi.js @@ -0,0 +1,34 @@ +// 云服务器 +import request from '@/utils/request' + +// 可用区组织树 +export function zoneOrgTree(data) { + return request({ + url: '/serverVm/zoneOrgTree', + method: 'post', + data + }) +} + +// 云服务器列表 +export function serverVmList(data, headers) { + return request({ + url: '/serverVm/serverVmList', + method: 'post', + data, + headers: { + ...headers + } + }) +} +// 云服务器列表 +export function defaultServerVmList(data, headers) { + return request({ + url: '/serverVm/servers/non/self', + method: 'post', + data, + headers: { + ...headers + } + }) +} \ No newline at end of file diff --git a/src/api/homeApi.js b/src/api/homeApi.js new file mode 100644 index 0000000000000000000000000000000000000000..31a37cfebc2459e3e1201fecadef434c7e234cef --- /dev/null +++ b/src/api/homeApi.js @@ -0,0 +1,19 @@ +import request from '@/utils/request' + +// 管理员首页接口 +export function indexStatistic(data) { + return request({ + url: '/indexStatistic', + method: 'post', + data + }) +} + +// 非管理员首页数据 +export function orgLeaderStatistic(data) { + return request({ + url: '/orgLeaderStatistic', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/imageApi.js b/src/api/imageApi.js new file mode 100644 index 0000000000000000000000000000000000000000..283db5c03dab9623461895305afdf7f32e71a387 --- /dev/null +++ b/src/api/imageApi.js @@ -0,0 +1,117 @@ +import request from '@/utils/request' + +// 检查镜像名称是否已存在 +export function checkImageName(data) { + return request({ + url: '/image/checkImageName', + method: 'post', + data + }) +} + +// 上传镜像 +export function uploadImage(data, cancelToken, cd) { + return request({ + url: '/image/uploadImage', + method: 'post', + data, + headers: { "Content-Type": "multipart/form-data" }, + onUploadProgress: function (progressEvent) { + if (progressEvent.lengthComputable) { + cd(progressEvent); + } + }, + cancelToken: cancelToken + }) +} + + +// 分页查询镜像 +export function pageImage(data) { + return request({ + url: '/image/pageImage', + method: 'post', + data + }) +} + +// 获取镜像详情 +export function imageDetail(data) { + return request({ + url: '/image/imageDetail', + method: 'post', + data + }) +} + +// 编辑镜像 +export function modifyImage(data) { + return request({ + url: '/image/modifyImage', + method: 'post', + data + }) +} + +// 镜像异常时-同步镜像 +export function syncImage(data) { + return request({ + url: '/image/syncImage', + method: 'post', + data + }) +} + +// 将私有镜像转为共享镜像 +export function changeToShare(data) { + return request({ + url: '/image/changeToShare', + method: 'post', + data + }) +} + +// 删除镜像 +export function deleteImage(data) { + return request({ + url: '/image/deleteImage', + method: 'post', + data + }) +} + +// 制作镜像 +export function makeImage(data) { + return request({ + url: '/image/makeImage', + method: 'post', + data + }) +} + +// 镜像详情 +export function imageInfo(data) { + return request({ + url: '/image/imageInfo', + method: 'post', + data + }) +} + +// 获取镜像下载地址 +export function imageDownload(data) { + return request({ + url: '/image/imageDownload', + method: 'post', + data + }) +} + +// 批量删除镜像 +export function batchDeleteImage(data) { + return request({ + url: '/image/batchDeleteImage', + method: 'post', + data + }) +} diff --git a/src/api/login.js b/src/api/login.js new file mode 100644 index 0000000000000000000000000000000000000000..69315f460b3bae01b922de348d274fb8782ac1d9 --- /dev/null +++ b/src/api/login.js @@ -0,0 +1,69 @@ +import request from '@/utils/request' + + +// 获取组织列表 +export function getOrganizationList(data) { + return request({ + url: '/org/queryOrgList', + method: 'post', + data + }) +} +// 注册 +export function register(data) { + return request({ + url: '/user/register', + method: 'post', + data + }) +} + +// 修改真实姓名 +export function updateRealName(data) { + return request({ + url: '/user/updateRealName', + method: 'post', + data + }) +} + +// 修改密码 +export function updatePwd(data) { + return request({ + url: '/user/updatePwd', + method: 'post', + data + }) +} +// 重置密码 +export function resetPassword(data) { + return request({ + url: '/user/resetPassword', + method: 'post', + data + }) +} + +// 获取告警数量 +export function alarmNotifications(data, headers) { + return request({ + url: '/monitoring/alarmNotifications', + method: 'post', + data, + headers: { + ...headers + } + }) +} + +// 获取待审核工单数量 +export function getWaitCheckCount(data, headers) { + return request({ + url: '/workOrder/getWaitCheckCount', + method: 'post', + data, + headers: { + ...headers + } + }) +} \ No newline at end of file diff --git a/src/api/monitoringApi.js b/src/api/monitoringApi.js new file mode 100644 index 0000000000000000000000000000000000000000..861c7367d73b879436517903d480aab4801ac358 --- /dev/null +++ b/src/api/monitoringApi.js @@ -0,0 +1,119 @@ +import request from '@/utils/request' + +// 获取物理主机事件类型 +export function serverEventTypeList(data) { + return request({ + url: '/monitoring/serverEventTypeList', + method: 'post', + data + }) +} + +// 分页获取物理主机事件 +export function pagePhysicalHostEvent(data) { + return request({ + url: '/monitoring/pagePhysicalHostEvent', + method: 'post', + data + }) +} + +// 获取告警日志类型 +export function alarmLogFilterList(data) { + return request({ + url: '/monitoring/alarmLogFilterList', + method: 'post', + data + }) +} + +// 分页告警日志 +export function pageAlarmLog(data) { + return request({ + url: '/monitoring/pageAlarmLog', + method: 'post', + data + }) +} + +// 获取服务器虚拟化事件类型 +export function serverVirtualizationEventsFilter(data) { + return request({ + url: '/monitoring/serverVirtualizationEventsFilter', + method: 'post', + data + }) +} + +// 分页获取服务器虚拟化事件 +export function pageServerVirtualizationEvent(data) { + return request({ + url: '/monitoring/pageServerVirtualizationEvent', + method: 'post', + data + }) +} + + +// 获取集群告警设置 +export function listAlarmSettings(data) { + return request({ + url: '/monitoring/listAlarmSettings', + method: 'post', + data + }) +} + +// 修改告警设置 +export function updateAlarmSettings(data) { + return request({ + url: '/monitoring/updateAlarmSettings', + method: 'post', + data + }) +} + +// 获取告警持续时间 +export function getAlarmInterval(data) { + return request({ + url: '/monitoring/getAlarmInterval', + method: 'post', + data + }) +} + +// 修改持续告警时间 +export function updateAlarmInterval(data) { + return request({ + url: '/monitoring/updateAlarmInterval', + method: 'post', + data + }) +} + +// 获取平台告警设置 +export function listKcpAlarmSettings(data) { + return request({ + url: '/monitoring/listKcpAlarmSettings', + method: 'post', + data + }) +} + +// 修改平台告警设置 +export function updateKcpAlarmSetting(data) { + return request({ + url: '/monitoring/updateKcpAlarmSetting', + method: 'post', + data + }) +} + +// 分页平台告警日志 +export function pageKcpAlarmLog(data) { + return request({ + url: '/monitoring/pageKcpAlarmLog', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/networkConfig.js b/src/api/networkConfig.js new file mode 100644 index 0000000000000000000000000000000000000000..93b176db7ea7a1c0e64d199a5ea1810550693505 --- /dev/null +++ b/src/api/networkConfig.js @@ -0,0 +1,38 @@ +import request from '@/utils/request' + +//网络配置查询 +export function pageNetworkConfig(data) { + return request({ + url: '/networkConfig/pageNetworkConfig', + method: 'post', + data + }) +} +//从mc获取网络配置 +export function mcNetworkConfig(data) { + return request({ + url: '/networkConfig/mcNetworkConfig', + method: 'post', + data + }) +} + + +//根据虚拟交换及名称获取端口组 +export function mcPortGroupListByVirtualSwitch(data) { + return request({ + url: '/networkConfig/mcPortGroupListByVirtualSwitch', + method: 'post', + data + }) +} + +//创建网络配置 +export function createNetwork(data) { + return request({ + url: '/networkConfig/createNetwork', + method: 'post', + data + }) +} + diff --git a/src/api/operateLog.js b/src/api/operateLog.js new file mode 100644 index 0000000000000000000000000000000000000000..ce87bcaf44fa447e5d3ed7632f9becbe884896d9 --- /dev/null +++ b/src/api/operateLog.js @@ -0,0 +1,19 @@ +import request from '@/utils/request' + +// 根据操作对象获取操作日志 +export function listOperateLogByObjId(data) { + return request({ + url: '/operateLog/listOperateLogByObjId', + method: 'post', + data + }) +} + +// 获取子任务列表 +export function listChildOperateLogList(data) { + return request({ + url: '/operateLog/listChildOperateLogList', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/organization.js b/src/api/organization.js new file mode 100644 index 0000000000000000000000000000000000000000..28e9dc356cc7c3789fc870db14f67a3824bc814c --- /dev/null +++ b/src/api/organization.js @@ -0,0 +1,105 @@ +import request from '@/utils/request' + +//组织列表查询 +export function queryOrgTree(data) { + return request({ + url: '/org/queryOrgList', + method: 'post', + data + }) +} + + +// 获取未绑定vdc列表 +export function queryParentOrg(data) { + return request({ + url: '/org/queryParentOrg', + method: 'post', + data + }) +} + +// 获取未绑定vdc列表 +export function gitVdcNotBindList(data) { + return request({ + url: '/vdc/queryNotBindVdcByParentOrgId', + method: 'post', + data + }) +} + +// 新增组织 +export function createOrg(data) { + return request({ + url: '/org/createOrg', + method: 'post', + data + }) +} + +// 获取组织详情 +export function orgDetail(data) { + return request({ + url: '/org/orgDetail', + method: 'post', + data + }) +} + + + +// 编辑组织 +export function modifyOrg(data) { + return request({ + url: '/org/modifyOrg', + method: 'post', + data + }) +} + +// 删除组织 +export function deleteOrg(data) { + return request({ + url: '/org/deleteOrg', + method: 'post', + data + }) +} + +// 获取组织统计树 +export function orgStatisticTree(data) { + return request({ + url: '/org/orgStatisticTree', + method: 'post', + data + }) +} + +// 组织概要信息 +export function orgSummary(data) { + return request({ + url: '/org/orgSummary', + method: 'post', + data + }) +} + + +// 修改顶层组织名称 +export function modifyTopOrgName(data) { + return request({ + url: '/org/modifyTopOrgName', + method: 'post', + data + }) +} + + +// 私有镜像组织 +export function canSelectOrg(data) { + return request({ + url: '/image/canSelectOrg', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/remoteDisasterRecovery.js b/src/api/remoteDisasterRecovery.js new file mode 100644 index 0000000000000000000000000000000000000000..e42816829a8a46483c5bf80e63abbf299d0e5262 --- /dev/null +++ b/src/api/remoteDisasterRecovery.js @@ -0,0 +1,294 @@ +import request from '@/utils/request' + +// 获取站点列表 +export function drSiteList(data) { + return request({ + url: '/bdr/site/list', + method: 'post', + data + }) +} +// 删除站点数据 +export function delSiteConnect(data) { + return request({ + url: '/bdr/site/delete', + method: 'post', + data + }) +} + +// 获取集群列表 +export function getClusterList(data) { + return request({ + url: '/bdr/site/clusterList', + method: 'post', + data + }) +} + +// 添加集群 +export function addCluster(data) { + return request({ + url: '/bdr/site/add', + method: 'post', + data + }) +} +// 删除集群 +export function delCluster(data) { + return request({ + url: '/bdr/site/delete', + method: 'post', + data + }) +} +//获取站点列表 +export function getSiteArr(data) { + return request({ + url: '/bdr/site/link/siteNodeList', + method: 'post', + data + }) +} +//添加链路 +export function addLinkSite(data) { + return request({ + url: '/bdr/site/link/add', + method: 'post', + data + }) +} +//链路列表 +export function linkSiteList(data) { + return request({ + url: '/bdr/site/link/list', + method: 'post', + data + }) +} +//检测链路 +export function checkLinkConnect(data) { + return request({ + url: '/bdr/site/link/check', + method: 'post', + data + }) +} +//删除链路 +export function delLinkConnect(data) { + return request({ + url: '/bdr/site/link/delete', + method: 'post', + data + }) +} + +//链路编辑详情 +export function bdrLinkDetail(data) { + return request({ + url: '/bdr/site/link/detail', + method: 'post', + data + }) +} +//链路编辑提交 +export function editLinkSite(data) { + return request({ + url: '/bdr/site/link/edit', + method: 'post', + data + }) +} +//容灾策略列表 +export function getBdrPlanList(data) { + return request({ + url: '/bdr/plan/page', + method: 'post', + data + }) +} +//容灾策略虚拟机列表 +export function getPlanVmList(data) { + return request({ + url: '/bdr/plan/machineList', + method: 'post', + data + }) +} +//创建策略 +export function handelAddPlan(data) { + return request({ + url: '/bdr/plan/add', + method: 'post', + data + }) +} +//删除容灾策略 +export function handelDelPlan(data){ + return request({ + url: '/bdr/plan/delete', + method: 'post', + data + }) +} +//容灾策略启用禁用 +export function handelSwitchPlan(data){ + return request({ + url: '/bdr/plan/switch', + method: 'post', + data + }) +} + +//获取容灾策略详情 +export function handelGetDeatail(data){ + return request({ + url: '/bdr/plan/detail', + method: 'post', + data + }) +} +//修改容灾策略详情 +export function handelEditPlan(data){ + return request({ + url: '/bdr/plan/edit', + method: 'post', + data + }) +} +//立即执行 +export function handelRunBdrNow(data){ + return request({ + url: '/bdr/plan/batchImmediateExecution', + method: 'post', + data + }) +} +//批量 +export function handelbatchSwitchBdr(data){ + return request({ + url: '/bdr/plan/batchSwitch', + method: 'post', + data + }) +} +export function siteBackupData(data){ + return request({ + url: '/bdr/machine/siteBackupData', + method: 'post', + data + }) +} +//恢复站点数据 +export function getBackupDataList(data){ + return request({ + url: '/bdr/machine/backupList', + method: 'post', + data + }) +} +//同步恢复 +export function handelRpoBackupFile(data){ + return request({ + url: '/bdr/machine/rpoBackupFile', + method: 'post', + data + }) +} +//差异性比较 +export function handelCheckDifference(data){ + return request({ + url: '/bdr/machine/checkDifference', + method: 'post', + data + }) +} +//提交容灾演练 +export function handelStartDrill(data){ + return request({ + url: '/bdr/machine/startDrill', + method: 'post', + data + }) +} +//提交结束容灾演练 +export function handelEndDrill(data){ + return request({ + url: '/bdr/machine/endDrill', + method: 'post', + data + }) +} +// 主站点备份恢复 +export function handelMasterSiteRecover(data){ + return request({ + url: '/bdr/machine/masterSiteRecover', + method: 'post', + data + }) +} +// 计划内备份恢复 +export function handelPlanRecover(data){ + return request({ + url: '/bdr/machine/planRecover', + method: 'post', + data + }) +} +// 灾难后恢复备份恢复 +export function handelfailureRecover(data){ + return request({ + url: '/bdr/machine/failureRecover', + method: 'post', + data + }) +} +// 数据回迁 +export function handelmoveBack(data){ + return request({ + url: '/bdr/machine/moveBack', + method: 'post', + data + }) +} + +//主备kcp列表 +export function handelGetKcpHa(data){ + return request({ + url: '/ha/nodeList', + method: 'post', + data + }) +} +//主备kcp列表删除 +export function handelDelKcpHa(data){ + return request({ + url: '/ha/deleteSlave', + method: 'post', + data + }) +} +//主备kcp 备变主 +export function handelChangeToMaster(data){ + return request({ + url: '/ha/changeToMaster', + method: 'post', + data + }) +} +//主备kcp 添加 +export function handelAddHa(data){ + return request({ + url: '/ha/addSlave', + method: 'post', + data + }) +} +//主备站点备份文件列表 +export function backupDataList(data){ + return request({ + url: '/bdr/machine/backupDataList', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/roleMgr.js b/src/api/roleMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..eddcddbba85a222edb5ecaa3f5b2b462add4e5b6 --- /dev/null +++ b/src/api/roleMgr.js @@ -0,0 +1,74 @@ +import request from '@/utils/request' + +// 分页查询角色列表 +export function pageRole(data) { + return request({ + url: '/role/pageRole', + method: 'post', + data + }) +} + +// 根据组织获取角色列表 +export function listRole(data) { + return request({ + url: '/role/listRole', + method: 'post', + data + }) +} + + +// 删除角色 +export function deleteRole(data) { + return request({ + url: '/role/deleteRole', + method: 'post', + data + }) +} + +// 获取权限列表 +export function customPlatformRoleMaxPermission(data) { + return request({ + url: '/permission/customPlatformRoleMaxPermission', + method: 'post', + data + }) +} + +// 创建角色 +export function createRole(data) { + return request({ + url: '/role/createRole', + method: 'post', + data + }) +} + +// 角色详情 +export function roleInfo(data) { + return request({ + url: '/role/roleInfo', + method: 'post', + data + }) +} + +// 修改详情 +export function modifyRoleDetail(data) { + return request({ + url: '/role/modifyRoleDetail', + method: 'post', + data + }) +} + +// 修改 +export function modifyRole(data) { + return request({ + url: '/role/modifyRole', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/serverVm.js b/src/api/serverVm.js new file mode 100644 index 0000000000000000000000000000000000000000..27e7a71fec9414fe51af53df5fff3c30e9b555c8 --- /dev/null +++ b/src/api/serverVm.js @@ -0,0 +1,289 @@ +import request from '@/utils/request' + +//申请云服务器 +export function applyServerVm(data) { + return request({ + url: '/serverVm/applyServerVm', + method: 'post', + data + }) +} + +//申请延期 +export function applyDeferredMachine(data) { + return request({ + url: '/serverVm/applyDeferredMachine', + method: 'post', + data + }) +} + +//变更申请 +export function modifyServerVm(data) { + return request({ + url: '/serverVm/modifyServerVm', + method: 'post', + data + }) +} + +// 云服务器列表查询 +export function getServerVmList(data) { + return request({ + url: '/serverVm/listServerVm', + method: 'post', + data + }) +} + +// 云服务器详情 +export function getServerVmDetail(data) { + return request({ + url: '/serverVm/serverVmInfo', + method: 'post', + data + }) +} + +// 云服务器操作日志 +export function getServerVmOperateLog(data) { + return request({ + url: '/serverVm/serverVmOperateLog', + method: 'post', + data + }) +} + +// 云服务器快照列表 +export function getSnapshotList(data) { + return request({ + url: '/serverVm/listSnapshot', + method: 'post', + data + }) +} +//新建快照 +export function createSnapshot(data) { + return request({ + url: '/serverVm/createSnapshot', + method: 'post', + data + }) +} +// 编辑快照 +export function updateSnapshot(data) { + return request({ + url: '/serverVm/updateSnapshot', + method: 'post', + data + }) +} +// 删除快照 +export function deleteSnapshot(data) { + return request({ + url: '/serverVm/deleteSnapshot', + method: 'post', + data + }) +} +//应用快照 +export function applySnapshot(data) { + return request({ + url: '/serverVm/applySnapshot', + method: 'post', + data + }) +} +//获取监控数据 +export function getServerVmMonitorInfo(data) { + return request({ + url: '/serverVm/serverVmMonitor', + method: 'post', + data + }) +} + +//删除 +export function deleteServerVm(data) { + return request({ + url: '/serverVm/deleteServerVm', + method: 'post', + data + }) +} +//开机 +export function startServerVm(data) { + return request({ + url: '/serverVm/startServerVm', + method: 'post', + data + }) +} +//关机 +export function shutdownServerVm(data) { + return request({ + url: '/serverVm/shutdownServerVm', + method: 'post', + data + }) +} + +//强制关机 +export function abortServerVm(data) { + return request({ + url: '/serverVm/forcedShutdownServerVm', + method: 'post', + data + }) +} +//重启 +export function restartServerVm(data) { + return request({ + url: '/serverVm/restartServerVm', + method: 'post', + data + }) +} + +//强制重启 +export function forcedRestartServerVm(data) { + return request({ + url: '/serverVm/forcedRestartServerVm', + method: 'post', + data + }) +} + +//批量开机 +export function batchStartServerVm(data) { + return request({ + url: '/serverVm/batchStartServerVm', + method: 'post', + data + }) +} +//批量关机 +export function batchShutdownServerVm(data) { + return request({ + url: '/serverVm/batchShutdownServerVm', + method: 'post', + data + }) +} +//批量重启 +export function batchRebootServerVm(data) { + return request({ + url: '/serverVm/batchRebootServerVm', + method: 'post', + data + }) +} + +//批量删除 +export function batchDeleteServerVm(data) { + return request({ + url: '/serverVm/batchDeleteServerVm', + method: 'post', + data + }) +} + +//模板列表查询 +export function listServerVmTemplate(data) { + return request({ + url: '/serverVm/listServerVmTemplate', + method: 'post', + data + }) +} + +//变更云服务器时,获取云服务器详情 +export function getModifyServerVmDetail(data) { + return request({ + url: '/serverVm/getServerVmDetail', + method: 'post', + data + }) +} + +//获取vncUrl链接 +export function getVncUrl(data) { + return request({ + url: '/serverVm/getVncUrl', + method: 'post', + data + }) +} + + +// 获取iso列表 +export function isoList(data) { + return request({ + url: '/serverVm/isoList', + method: 'post', + data + }) +} + +// 获取云服务器图片 +export function downLoadServerVmLog(data) { + return request({ + url: '/serverVm/downLoadServerVmLog', + method: 'get', + params: data + }) +} + +// 云服务器详情-概要信息 +export function serverVmSummary(data) { + return request({ + url: '/serverVm/serverVmSummary', + method: 'post', + data + }) +} + +// 云服务器详情-网络信息 +export function serverVmNetwork(data) { + return request({ + url: '/serverVm/serverVmNetwork', + method: 'post', + data + }) +} + +// 云服务器详情-磁盘信息 +export function serverVmDisk(data) { + return request({ + url: '/serverVm/serverVmDisk', + method: 'post', + data + }) +} + +// 云服务器详情-告警信息 +export function serverVmAlarmEvent(data) { + return request({ + url: '/serverVm/serverVmAlarmEvent', + method: 'post', + data + }) +} + +// 云服务器转移 +export function serverVmTransfer(data) { + return request({ + url: '/serverVm/serverVmTransfer', + method: 'post', + data + }) +} + +// 云服务器转移(跨组织) +export function transferCanSelectOrg(data) { + return request({ + url: '/serverVm/transferCanSelectOrg', + method: 'post', + data + }) +} diff --git a/src/api/taskcenter.js b/src/api/taskcenter.js new file mode 100644 index 0000000000000000000000000000000000000000..e11d436b55ea5ce41dd3b713e5571adf917bdf0f --- /dev/null +++ b/src/api/taskcenter.js @@ -0,0 +1,55 @@ +import request from '@/utils/request' + +// 获取操作类型列表 +export function getOperateLogType(data) { + return request({ + url: '/operateLog/getOperateLogType', + method: 'post', + data + }) +} + +// 获取操作任务列表 +export function getOperateLogAction(data) { + return request({ + url: '/operateLog/getOperateLogAction', + method: 'post', + data + }) +} + +// 获取操状态接口 +export function getOperateLogStatus(data) { + return request({ + url: '/operateLog/getOperateLogStatus', + method: 'post', + data + }) +} + +// 分页获取操作日志 +export function pageOperateLog(data) { + return request({ + url: '/operateLog/pageOperateLog', + method: 'post', + data + }) +} + +// 获取子任务 +export function childOperateLogList(data) { + return request({ + url: '/operateLog/childOperateLogList', + method: 'post', + data + }) +} + +// 任务详情 +export function operateLogDetail(data) { + return request({ + url: '/operateLog/operateLogDetail', + method: 'post', + data + }) +} diff --git a/src/api/user.js b/src/api/user.js new file mode 100644 index 0000000000000000000000000000000000000000..4361bd237ebeac158af5a66a516db5d3186e4da7 --- /dev/null +++ b/src/api/user.js @@ -0,0 +1,23 @@ +import request from '@/utils/request' + +export function login(data) { + return request({ + url: '/login', + method: 'post', + data + }) +} + +export function getInfo() { + return request({ + url: '/user/userInfo', + method: 'post' + }) +} + +export function logout() { + return request({ + url: '/loginOut', + method: 'post' + }) +} diff --git a/src/api/userMgr.js b/src/api/userMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..7b605944cd4beb75ffe6aad4a096a16f6560dc7c --- /dev/null +++ b/src/api/userMgr.js @@ -0,0 +1,65 @@ +import request from '@/utils/request' + +// 添加用户 +export function createUser(data) { + return request({ + url: '/user/createUser', + method: 'post', + data + }) +} + +// 分页查询用户信息 +export function pageUser(data) { + return request({ + url: '/user/pageUser', + method: 'post', + data + }) +} + +// 获取编辑用户详情 +export function modifyUserInfo(data) { + return request({ + url: '/user/modifyUserInfo', + method: 'post', + data + }) +} + +// 删除用户 +export function deleteUser(data) { + return request({ + url: '/user/deleteUser', + method: 'post', + data + }) +} + + +// 批量删除用户 +export function batchDeleteUser(data) { + return request({ + url: '/user/batchDeleteUser', + method: 'post', + data + }) +} + +// 编辑用户 +export function modifyUser(data) { + return request({ + url: '/user/modifyUser', + method: 'post', + data + }) +} + +// 编辑用户 +export function pageUserByOrg(data) { + return request({ + url: '/user/pageUserByOrg', + method: 'post', + data + }) +} diff --git a/src/api/vMwareMgr.js b/src/api/vMwareMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..1fb111c0dc9eb3d3e3ad3b09073ed5b50b554c72 --- /dev/null +++ b/src/api/vMwareMgr.js @@ -0,0 +1,143 @@ +import request from '@/utils/request' + +// 添加VCenter +export function addVCenter(data) { + return request({ + url: '/vCenter/addVCenter', + method: 'post', + data + }) +} + +// 分页获取Vcenter列表 +export function pageVCenter(data) { + return request({ + url: '/vCenter/pageVCenter', + method: 'post', + data + }) +} + +// 获取Vcenter详情 +export function vCenterInfo(data) { + return request({ + url: '/vCenter/vCenterInfo', + method: 'post', + data + }) +} + +// 编辑VCenter +export function modifyVCenter(data) { + return request({ + url: '/vCenter/modifyVCenter', + method: 'post', + data + }) +} + +// 获取云服务器列表 +export function vmList(data) { + return request({ + url: '/vCenter/vmList', + method: 'post', + data + }) +} + +// 云服务器开机 +export function powerOn(data) { + return request({ + url: '/vCenter/powerOn', + method: 'post', + data + }) +} + +// 云服务器关机 +export function powerOff(data) { + return request({ + url: '/vCenter/powerOff', + method: 'post', + data + }) +} + + + +// 添加主机 +export function bareMetalcreate(data) { + return request({ + url: '/bareMetal/create', + method: 'post', + data + }) +} +// 编辑主机 +export function bareMetalupdate(data) { + return request({ + url: '/bareMetal/update', + method: 'post', + data + }) +} +// 查询主机列表 +export function bareMetallist(data) { + return request({ + url: '/bareMetal/list', + method: 'post', + data + }) +} +// 查询主机详情 +export function bareMetaldetail(data) { + return request({ + url: '/bareMetal/detail', + method: 'post', + data + }) +} +// 主机开机 +export function bareMetalpowerOn(data) { + return request({ + url: '/bareMetal/powerOn', + method: 'post', + data + }) +} +// 主机关机 +export function bareMetalpowerOff(data) { + return request({ + url: '/bareMetal/powerOff', + method: 'post', + data + }) +} +// 主机监控信息 +export function monitorinfo(data) { + return request({ + url: '/bareMetal/monitor/info', + method: 'post', + data + }) +} + +//删除主机 +export function bareMetaldelete(data) { + return request({ + url: '/bareMetal/delete', + method: 'post', + data + }) +} + + //删除主机 +export function bareMetalmonitor(data) { + return request({ + url: '/bareMetal/monitor/info', + method: 'post', + data + }) +} + + \ No newline at end of file diff --git a/src/api/vcenter.js b/src/api/vcenter.js new file mode 100644 index 0000000000000000000000000000000000000000..9c3116ff6f31e3e461a5a64cc658c54bafac8c47 --- /dev/null +++ b/src/api/vcenter.js @@ -0,0 +1,405 @@ +import request from '@/utils/request' +//已纳管vcenter列表查询 +export function getVcenterList(data) { + return request({ + url: '/vcenter/list', + method: 'post', + data + }) +} + +//删除vcenter +export function deleteCluster(data) { + return request({ + url: '/vcenter/delete', + method: 'post', + data + }) +} +//vcenter名称重复校验 +export function checkNameIp(data) { + return request({ + url: '/vcenter/exist/check', + method: 'post', + data + }) +} +//vcenter创建列表校验 +export function getVcenterStorage(data) { + return request({ + url: '/vcenter/storage/list', + method: 'post', + data + }) +} + +//校验vcenter 账号 +export function checkVcenterLogin(data) { + return request({ + url: '/vcenter/connection/check', + method: 'post', + data + }) +} + + +//创建vcenter +export function createVcenter(data) { + return request({ + url: '/vcenter/add', + method: 'post', + data + }) +} +//编辑vCenter +export function editVcenter(data) { + return request({ + url: '/vcenter/modify', + method: 'post', + data + }) +} + + +//详情-编辑vCenter +export function getVcenterEditDetail(data) { + return request({ + url: '/vcenter/info', + method: 'post', + data + }) +} +//获取vCenter概要 +export function getVcenterDetail(data) { + return request({ + url: '/vcenter/summary', + method: 'post', + data + }) +} + +//云服务器列表 +export function getVcenterCloudList(data) { + return request({ + url: '/vcenter/server/list', + method: 'post', + data + }) +} + +//主机列表 +export function getVcenterhostList(data) { + return request({ + url: '/vcenter/host/list', + method: 'post', + data + }) +} +//存储列表 +export function getVcenterStorageList(data) { + return request({ + url: '/vcenter/id/storage/list', + method: 'post', + data + }) +} + +//云服务器详情数据 +export function getServerMainData(data) { + return request({ + url: '/vcenter/server/info', + method: 'post', + data + }) +} +//云服务器详情数据-占用率接口 +export function getServerSummaryData(data) { + return request({ + url: '/vcenter/server/summary', + method: 'post', + data + }) +} + +//云服务器告警 +export function getServerSummaryAlarmData(data) { + return request({ + url: '/vcenter/server/alarm/list', + method: 'post', + data + }) +} + +//云服务器网络列表 +export function getServerNetListData(data) { + return request({ + url: '/vcenter/server/network/list', + method: 'post', + data + }) +} +//云服务器存储列表 +export function getServerDiskListData(data) { + return request({ + url: '/vcenter/server/storage/list', + method: 'post', + data + }) +} +//已纳管vcenter下云服务器详情监控信息查询-单一采集项监控数据查询 +export function getServerMonitorListData(data) { + return request({ + url: '/vcenter/server/monitor/info', + method: 'post', + data + }) +} +//已纳管vcenter下云服务器详情存储监控信息查询 +export function getServerStorageMonitorListData(data) { + return request({ + url: '/vcenter/server/monitor/storage/info', + method: 'post', + data + }) +} +//已纳管vcenter下云服务器详情网络监控信息查询 +export function getServerNetworkMonitorListData(data) { + return request({ + url: '/vcenter/server/monitor/network/info', + method: 'post', + data + }) +} +//云服务器任务列表 +export function getServerTaskListData(data) { + return request({ + url: '/vcenter/server/task/list', + method: 'post', + data + }) +} +//控制台 +export function getVncUrl(data) { + return request({ + url: '/vcenter/server/ticket', + method: 'post', + data + }) +} + + +//获取主机下存储列表 +export function getdataStoreByHostname(data) { + return request({ + url: '/vcenter/host/datastore/list', + method: 'post', + data + }) +} +//获取主机下存储列表 +export function getStorageByHostname(data) { + return request({ + url: '/vcenter/location/storage/list', + method: 'post', + data + }) +} +//删除云服务器 +export function hadelDelVm(data) { + return request({ + url: '/vcenter/server/delete', + method: 'post', + data + }) +} +//克隆云服务器 +export function handelCloneVm(data) { + return request({ + url: '/vcenter/server/clone', + method: 'post', + data + }) +} +//克隆云服务器 +export function handelGetRp(data) { + return request({ + url: '/vcenter/location/tree', + method: 'post', + data + }) +} +//获取镜像文件列表 +export function handelGetTemplateList(data) { + return request({ + url: '/vcenter/image/list', + method: 'post', + data + }) +} +//获取网卡列表 +export function handelGetNetCardList(data) { + return request({ + url: '/vcenter/network/list', + method: 'post', + data + }) +} +//云服务器开机 +export function startServerVm(data) { + return request({ + url: '/vcenter/server/power/on', + method: 'post', + data + }) +} +//云服务器关机 +export function shutdownServerVm(data) { + return request({ + url: '/vcenter/server/power/off', + method: 'post', + data + }) +} + +//云服务器唤醒 +export function resumeVm(data) { + return request({ + url: '/vcenter/server/power/resume', + method: 'post', + data + }) +} +//云服务器暂停 +export function suspendVm(data) { + return request({ + url: '/vcenter/server/power/suspend', + method: 'post', + data + }) +} +//云服务器重启 +export function restartVm(data) { + return request({ + url: '/vcenter/server/power/restart', + method: 'post', + data + }) +} +//云服务器关闭电源 +export function offForceVm(data) { + return request({ + url: '/vcenter/server/power/off/force', + method: 'post', + data + }) +} +//云服务器列表新建云服务器 +export function createVm(data) { + return request({ + url: '/vcenter/server/create', + method: 'post', + data + }) +} +//云服务器编辑详情 +export function modifyDetail(data) { + return request({ + url: '/vcenter/server/modify/detail', + method: 'post', + data + }) +} +//云服务器提交编辑 +export function handelSubmitEdit(data) { + return request({ + url: '/vcenter/server/modify', + method: 'post', + data + }) + +} +//云服务器图片 +export function getSummaryImage(data) { + return request({ + url: '/vcenter/server/logo/download', + method: 'get', + params: data + }) +} + +//集群列表 +export function getClusterList(data) { + return request({ + url: '/vcenter/cluster/list', + method: 'post', + data + }) +} +//主机列表 +export function getClusterHostList(data) { + return request({ + url: '/vcenter/cluster/host/list', + method: 'post', + data + }) +} +//迁移界面存储列表查询 +export function getClusterPageStorageList(data) { + return request({ + url: '/general/cluster/storageList', + method: 'post', + data + }) +} + +//迁移界面网络列表查询 +export function getClusterSpecificationList(data) { + return request({ + url: '/network/specification/list', + method: 'post', + data + }) +} + +//迁移界面资源组列表查询 +export function getClusterResourceList(data) { + return request({ + url: '/vcenter/cluster/resource/list', + method: 'post', + data + }) +} + +//获取详情 +export function getTranseferDetail(data) { + return request({ + url: '/vcenter/server/detail', + method: 'post', + data + }) +} +//提交vdc +export function handelSubmitTransfer(data) { + return request({ + url: '/vcenter/server/migrate', + method: 'post', + data + }) +} + + //校验云服务器重名 + export function checkExistVmName(data) { + return request({ + url: '/vcenter/server/exist/check', + method: 'post', + data + }) +} + //校验云服务器重名 + export function vcenterResourceMax(data) { + return request({ + url: '/vcenter/resource/max', + method: 'post', + data + }) +} diff --git a/src/api/vdcapi.js b/src/api/vdcapi.js new file mode 100644 index 0000000000000000000000000000000000000000..0032adf72cd509374ebdeb84b230ddf9d02bc505 --- /dev/null +++ b/src/api/vdcapi.js @@ -0,0 +1,177 @@ +import request from '@/utils/request' + +// 获取可以绑定的可用区列表 +export function zoneList(data) { + return request({ + url: '/zone/zoneList', + method: 'post', + data + }) +} + +// 获取可用区集群 +export function zoneClusterList(data) { + return request({ + url: '/cluster/zoneClusterList', + method: 'post', + data + }) +} + +// 获取上级VDC +export function vdcTreeByZone(data) { + return request({ + url: '/vdc/vdcTreeByZone', + method: 'post', + data + }) +} + +// 获取上级vdc资源 +export function checkCreateVdc(data) { + return request({ + url: '/vdc/checkCreateVdc', + method: 'post', + data + }) +} + +// 根据集群获取网络配置 +export function clusterNetworkConfig(data) { + return request({ + url: '/cluster/clusterNetworkConfig', + method: 'post', + data + }) +} + +// 根据虚拟交换机获取端口组 +export function mcPortGroupListByVirtualSwitch(data) { + return request({ + url: '/cluster/mcPortGroupListByVirtualSwitch', + method: 'post', + data + }) +} + +// 创建VDC +export function createVdc(data) { + return request({ + url: '/vdc/createVdc', + method: 'post', + data + }) +} + +// VDC列表 +export function vdcTree(data) { + return request({ + url: '/vdc/vdcTree', + method: 'post', + data + }) +} + +// vdc详情 +export function vdcDetail(data) { + return request({ + url: '/vdc/vdcDetail', + method: 'post', + data + }) +} + +// 编辑vdc-获取详情 +export function modifyVdcDetail(data) { + return request({ + url: '/vdc/modifyVdcDetail', + method: 'post', + data + }) +} + +// 编辑VDC +export function modifyVdc(data) { + return request({ + url: '/vdc/modifyVdc', + method: 'post', + data + }) +} + +// 删除VDC +export function deleteVdc(data) { + return request({ + url: '/vdc/deleteVdc', + method: 'post', + data + }) +} + +// 变更VDC资源-详情 +export function modifyVdcResourceDetail(data) { + return request({ + url: '/vdc/modifyVdcResourceDetail', + method: 'post', + data + }) +} + +// 申请变更VDC资源 +export function applyModifyVdcResource(data) { + return request({ + url: '/vdc/applyModifyVdcResource', + method: 'post', + data + }) +} + +// 审核变更VDC-获取变更详情 +export function passModifyVdcDetail(data) { + return request({ + url: '/workOrder/passModifyVdcDetail', + method: 'post', + data + }) +} + +// 获取上级VDC网络列表 +export function listNetworkListByVdcId(data) { + return request({ + url: '/networkConfig/listNetworkListByVdcId', + method: 'post', + data + }) +} +// 创建网络规格 +export function handelSubmitSpec(data) { + return request({ + url: '/network/specification/create', + method: 'post', + data + }) +} +//删除规格 +export function handelDelSpec(data) { + return request({ + url: '/network/specification/delete', + method: 'post', + data + }) +} +//获取网卡详情 +export function handelGetSpecDetail(data) { + return request({ + url: '/network/specification/detail', + method: 'post', + data + }) +} +//获取网卡详情 +export function handelmodifySpecDetail(data) { + return request({ + url: '/network/specification/modify', + method: 'post', + data + }) +} diff --git a/src/api/workOrder.js b/src/api/workOrder.js new file mode 100644 index 0000000000000000000000000000000000000000..28fecf5279cdac236ae4d590b147d8a5445d63d0 --- /dev/null +++ b/src/api/workOrder.js @@ -0,0 +1,168 @@ +import request from '@/utils/request' + +// 工单列表查询 +export function getWorkOrderList(data) { + return request({ + url: '/workOrder/pageWorkOrder', + method: 'post', + data + }) +} + +// 批量审核 +export function batchCheck(data) { + return request({ + url: '/workOrder/batchCheck', + method: 'post', + data + }) +} + +// 申请云服务器详情 +export function getApplyServerVmDetail(data) { + return request({ + url: '/workOrder/applyServerVmDetail', + method: 'post', + data + }) +} + +// 变更云服务器详情 +export function getModifyServerVmDetail(data) { + return request({ + url: '/workOrder/modifyServerVmDetail', + method: 'post', + data + }) +} + +// 延期云服务器详情 +export function getApplyDeferredDetail(data) { + return request({ + url: '/workOrder/applyDeferredDetail', + method: 'post', + data + }) +} + +// 注册账号详情 +export function getRegisterUserDetail(data) { + return request({ + url: '/workOrder/registerUserDetail', + method: 'post', + data + }) +} + +// 修改账号详情 +export function getUpdateUserDetail(data) { + return request({ + url: '/workOrder/updateUserDetail', + method: 'post', + data + }) +} + +//账号注册审核 +export function checkPassRegister(data) { + return request({ + url: '/workOrder/checkPassRegister', + method: 'post', + data + }) +} +//修改账号审核 +export function checkPassUpdateUser(data) { + return request({ + url: '/workOrder/checkPassUpdateUser', + method: 'post', + data + }) +} + +//延期审核 +export function checkPassDeferred(data) { + return request({ + url: '/workOrder/checkPassDeferred', + method: 'post', + data + }) +} +//拒绝工单 +export function refuseWorkOrder(data) { + return request({ + url: '/workOrder/refuseWorkOrder', + method: 'post', + data + }) +} +//申请云服务器审核通过 +export function passApplyServerVm(data) { + return request({ + url: '/workOrder/passApplyServerVm', + method: 'post', + data + }) +} +//申请云服务器申请通过时编辑页面获取详情 +export function passApplyServerVmDetail(data) { + return request({ + url: '/workOrder/passApplyServerVmDetail', + method: 'post', + data + }) +} + +//变更云服务器申请通过时编辑页面获取详情 +export function passModifyServerVmDetail(data) { + return request({ + url: '/workOrder/passModifyServerVmDetail', + method: 'post', + data + }) +} + +//变更云服务器申请通过 +export function passModifyServerVm(data) { + return request({ + url: '/workOrder/passModifyServerVm', + method: 'post', + data + }) +} + +// 审核变更VDC - 获取变更详情 +export function passModifyVdcDetail(data) { + return request({ + url: '/workOrder/passModifyVdcDetail', + method: 'post', + data + }) +} + +// 变更VDC资源-通过 +export function passModifyVdc(data) { + return request({ + url: '/workOrder/passModifyVdc', + method: 'post', + data + }) +} + +// 工单详情-变更VDC +export function applyModifyVdcDetail(data) { + return request({ + url: '/workOrder/applyModifyVdcDetail', + method: 'post', + data + }) +} + +// 审核云服务器申请-更改集群-刷新数据 +export function refreshMcBaseInfo(data) { + return request({ + url: '/workOrder/refreshMcBaseInfo', + method: 'post', + data + }) +} \ No newline at end of file diff --git a/src/api/zoneapi.js b/src/api/zoneapi.js new file mode 100644 index 0000000000000000000000000000000000000000..ac51ed84e935510548eba062e74bbbf4d00407d8 --- /dev/null +++ b/src/api/zoneapi.js @@ -0,0 +1,72 @@ +import request from '@/utils/request' + +// 创建可用区 +export function createZone(data) { + return request({ + url: '/zone/createZone', + method: 'post', + data + }) +} +// 获取可用区绑定物理集群 +export function clusterListByZone(data) { + return request({ + url: '/zone/clusterListByZone', + method: 'post', + data + }) +} +// 可用区-获取可绑定的物理集群 +export function canBindCluster(data) { + return request({ + url: '/zone/canBindCluster', + method: 'post', + data + }) +} + +// 分页获取可用区 +export function pageZone(data) { + return request({ + url: '/zone/pageZone', + method: 'post', + data + }) +} + +// 编辑时获取可用区详情 +export function modifyZoneDetail(data) { + return request({ + url: '/zone/modifyZoneDetail', + method: 'post', + data + }) +} + +// 编辑可用区 +export function modifyZone(data) { + return request({ + url: '/zone/modifyZone', + method: 'post', + data + }) +} + +// 可用区详情 +export function zoneDetail(data) { + return request({ + url: '/zone/zoneDetail', + method: 'post', + data + }) +} + +// 删除可用区 +export function deleteZone(data) { + return request({ + url: '/zone/deleteZone', + method: 'post', + data + }) +} + diff --git a/src/assets/404_images/404.png b/src/assets/404_images/404.png new file mode 100644 index 0000000000000000000000000000000000000000..3d8e2305cc973ad2121403aee4bf08728f76c461 Binary files /dev/null and b/src/assets/404_images/404.png differ diff --git a/src/assets/404_images/404_cloud.png b/src/assets/404_images/404_cloud.png new file mode 100644 index 0000000000000000000000000000000000000000..c6281d09013e0a2c5f8e699a0a6038d9480291e5 Binary files /dev/null and b/src/assets/404_images/404_cloud.png differ diff --git a/src/assets/common/dataDictionary/dictionary.js b/src/assets/common/dataDictionary/dictionary.js new file mode 100644 index 0000000000000000000000000000000000000000..5b28ab2e5a4c4689a25ab3dc857bebe31b632ecc --- /dev/null +++ b/src/assets/common/dataDictionary/dictionary.js @@ -0,0 +1,300 @@ + +import i18n from '@/assets/common/lang/index' +export default { + storage: { + type: { LOCAL: '本地存储', NFS: 'NFS', DISTRIBUTED: '分布式存储', CIFS: 'CFS', IPSAN: 'IPSAN', FCSAN: 'FCSAN' }, + usage: { MANAGE: '管理', DATA: '数据' }, + }, + // 告警名称 + // 枚举: VDC_CPU,VDC_MEM,VDC_STORAGE + // 枚举备注: VDC_CPU(VDC-CPU分配比告警) VDC_MEM(VDC内存使用率告警) VDC_STORAGE(VDC存储使用率告警) + resourceTypeArr: [ + { + value: "VDC_CPU", label: i18n.t('alarmSetting.vdcCpuAlarm') // "VDC-CPU分配比告警" + }, + { + value: "VDC_MEM", label: i18n.t('alarmSetting.vdcEmeAlarm') // "VDC-内存使用率告警" + }, + { + value: "VDC_STORAGE", label: i18n.t('alarmSetting.vdcStorageAlarm') // "VDC-存储使用率告警" + }, + { + value: "SITE_LICK_CHECK", label: i18n.t('alarmSetting.siteLickCheck') // "异地容灾-链路检测" + }, + + { + value: "MACHINE_EXPIRE", label: i18n.t('alarmSetting.machineExpire') // "云服务器使用到期" + }, + ], + // "告警级别", + // 枚举: GENERAL,SEVERITY,URGENT + // 枚举备注: GENERAL(一般告警) SEVERITY(严重告警) URGENT(紧急告警) + alarmLevelArr: [ + { + value: "GENERAL", label: i18n.t('alarmSetting.general') // "一般告警" + }, + { + value: "SEVERITY", label: i18n.t('alarmSetting.severity') // "严重告警" + }, + { + value: "URGENT", label: i18n.t('alarmSetting.urgent') // "紧急告警" + }, + ], + // "对象类型", + // 枚举: PLATFORM + // 枚举备注: PLATFORM(平台) + targetTypeArr: [{ + value: "PLATFORM", label: i18n.t('alarmSetting.platform') //"平台" + }], + + // 创建类型 + // 枚举: LINK_CLONE,FULL_CLONE + // 枚举备注: LINK_CLONE(链接克隆) FULL_CLONE(完整克隆) + cloneTypeArr: [ + { + value: "LINK_CLONE", label: i18n.t('common.cloneTypeArr.LINK_CLONE') // "链接克隆" + }, + { + value: "FULL_CLONE", label: i18n.t('common.cloneTypeArr.FULL_CLONE') // "链接克隆" + }, + ], + + // 安全策略 + // 枚举: NONE,SECURITY_GROUP,VIRTUAL_FIREWALL + // 枚举备注: NONE(无) SECURITY_GROUP(安全组) VIRTUAL_FIREWALL(虚拟防火墙) + securityPolicyArr: [ + { + value: "NONE", label: i18n.t('common.securityPolicyArr.NONE') // "无" + }, + { + value: "SECURITY_GROUP", label: i18n.t('common.securityPolicyArr.SECURITY_GROUP') // "安全组" + }, + { + value: "VIRTUAL_FIREWALL", label: i18n.t('common.securityPolicyArr.VIRTUAL_FIREWALL') // "安全组" + }, + ], + + // 角色类型 + // 枚举: ORG,SELF_SERVICE,PLATFORM + // 枚举备注: ORG(组织管理) SELF_SERVICE(自服务用户) PLATFORM(平台管理) + roleTypeArr: [ + { + value: "ORG", label: i18n.t("authorityMgr.ORG"), // "组织管理" + }, + { + value: "SELF_SERVICE", label: i18n.t("authorityMgr.SELF_SERVICE"),// "自服务用户" + }, + { + value: "PLATFORM", label: i18n.t("authorityMgr.PLATFORM"), // "平台管理" + }, + ], + + // 镜像管理 status + // 枚举: NORMAL,ERROR,SYNCING + // 枚举备注: NORMAL("正常"), ERROR("异常"), SYNCING("同步中"), + imgstatusArr: [ + { + value: "NORMAL", label: i18n.t("imageMgr.imgstatus.NORMAL"), // "正常" + }, + { + value: "ERROR", label: i18n.t("imageMgr.imgstatus.ERROR"), // "异常" + }, + { + value: "SYNCING", label: i18n.t("imageMgr.imgstatus.SYNCING"), // "同步中" + }, + ], + // 镜像管理 type + // 枚举: ISO,GVM + // 枚举备注: ISO GVM + imgtypeArr: [ + { + value: "ISO", label: "ISO", // "ISO" + }, + { + value: "GVM", label: "其他",// "其他" + }, + ], + // 镜像管理 imageFrom + // 枚举: UPLOAD,MACHINE_MAKE,SHARE_CHANGE,PRIVATE_CHANGE + // 枚举备注: UPLOAD( "上传"), MACHINE_MAKE("云服务器制作"), SHARE_CHANGE("共享镜像转换"), PRIVATE_CHANGE("私有镜像转换"), + imageFromArr: [ + { + value: "UPLOAD", label: i18n.t("imageMgr.imageFrom.UPLOAD"), // "上传" + }, + { + value: "MACHINE_MAKE", label: i18n.t("imageMgr.imageFrom.MACHINE_MAKE"), // "云服务器制作" + }, + { + value: "SHARE_CHANGE", label: i18n.t("imageMgr.imageFrom.SHARE_CHANGE"), // "共享镜像转换" + }, + { + value: "PRIVATE_CHANGE", label: i18n.t("imageMgr.imageFrom.PRIVATE_CHANGE"), // "私有镜像转换" + }, + ], + + // 枚举: IMAGE,CLUSTER,VDC,ZONE,ORG + // 枚举备注: IMAGE(镜像管理) CLUSTER(集群管理) VDC(VDC管理) ZONE(可用区管理) ORG(组织管理) + operateLogTypeList: [ + { + value: "IMAGE", label: i18n.t("operateLog.logType.IMAGE"), // "镜像管理" + }, + { + value: "CLUSTER", label: i18n.t("operateLog.logType.CLUSTER"), // "集群管理" + }, + { + value: "VDC", label: i18n.t("operateLog.logType.VDC"), // "VDC管理" + }, + { + value: "ZONE", label: i18n.t("operateLog.logType.ZONE"), // "可用区管理" + }, + { + value: "ORG", label: i18n.t("operateLog.logType.ORG"), // "组织管理" + }, + ], + + // 枚举: IMAGE_UPLOAD,IMAGE_SYNC,IMAGE_CREATE_TEMPLATE,IMAGE_MODIFY,IMAGE_PRIVATE_TO_SHARE,IMAGE_SHARE_TO_PUBLIC,IMAGE_MAKE,IMAGE_CREATE_GVM_FILE,IMAGE_ERROR_SYNC,IMAGE_DELETE + // 枚举备注: + // IMAGE_UPLOAD("上传镜像"), IMAGE_SYNC("镜像同步"), IMAGE_CREATE_TEMPLATE("生成模板镜像"), + // IMAGE_MODIFY("编辑镜像"), IMAGE_PRIVATE_TO_SHARE("私有镜像提升为共享镜像"), + // IMAGE_SHARE_TO_PUBLIC("共享镜像提升为公共镜像"), IMAGE_MAKE("制作镜像"), + // IMAGE_CREATE_GVM_FILE("生成镜像文件"), IMAGE_ERROR_SYNC("镜像异常-同步镜像"), IMAGE_DELETE("删除镜像"); + imageActionList: [ + { + value: "IMAGE_UPLOAD", label: i18n.t("imageMgr.imageActionList.IMAGE_UPLOAD"), // "上传镜像" + }, + { + value: "IMAGE_SYNC", label: i18n.t("imageMgr.imageActionList.IMAGE_SYNC"), // "镜像同步" + }, + { + value: "IMAGE_CREATE_TEMPLATE", label: i18n.t("imageMgr.imageActionList.IMAGE_CREATE_TEMPLATE"), // "生成模板镜像" + }, + { + value: "IMAGE_MODIFY", label: i18n.t("imageMgr.imageActionList.IMAGE_MODIFY"), // "编辑镜像" + }, + { + value: "IMAGE_PRIVATE_TO_SHARE", label: i18n.t("imageMgr.imageActionList.IMAGE_PRIVATE_TO_SHARE"), // "私有镜像提升为共享镜像" + }, + { + value: "IMAGE_SHARE_TO_PUBLIC", label: i18n.t("imageMgr.imageActionList.IMAGE_SHARE_TO_PUBLIC"), // "共享镜像提升为公共镜像" + }, + { + value: "IMAGE_MAKE", label: i18n.t("imageMgr.imageActionList.IMAGE_MAKE"), // "制作镜像" + }, + { + value: "IMAGE_CREATE_GVM_FILE", label: i18n.t("imageMgr.imageActionList.IMAGE_CREATE_GVM_FILE"), // "生成镜像文件" + }, + { + value: "IMAGE_ERROR_SYNC", label: i18n.t("imageMgr.imageActionList.IMAGE_ERROR_SYNC"), // "镜像异常-同步镜像" + }, + { + value: "IMAGE_DELETE", label: i18n.t("imageMgr.imageActionList.IMAGE_DELETE"), // "删除镜像" + }, + { + value: "IMAGE_DOWNLOAD", label: i18n.t("imageMgr.imageActionList.IMAGE_DOWNLOAD"), // "镜像下载" + } + ], + + // 枚举: SUCCESS,FAIL,RUNNING + // 枚举备注: SUCCESS("成功"), FAIL("失败"), RUNNING("执行中"); + operateLogStatusList: [ + { + value: "SUCCESS", label: i18n.t("operateLog.logStatus.SUCCESS"), // "成功" + }, + { + value: "FAIL", label: i18n.t("operateLog.logStatus.FAIL"), // "失败" + }, + { + value: "RUNNING", label: i18n.t("operateLog.logStatus.RUNNING"), // "执行中" + } + ], + + + // 枚举: NORMAL,WAIT_SYNC,SYNCING,SYNC_SUCCESS,SYNC_FAILED,CREATE_GVM_FILE_IMG,CREATE_GVM_FILE_ERROR,CREATE_GVM_FILE_SUCCESS,CREATE_IMAGE_ING,CREATE_IMAGE_ERROR + // 枚举备注: + // NORMAL("正常"), WAIT_SYNC("等待同步镜像文件"), SYNCING("同步镜像文件中"), + // SYNC_SUCCESS("同步镜像文件完成"), SYNC_FAILED("同步镜像文件失败"), CREATE_GVM_FILE_IMG("生成GVM文件中"), + // CREATE_GVM_FILE_ERROR("生成GVM文件失败"), CREATE_GVM_FILE_SUCCESS("生成GVM文件成功"), + // CREATE_IMAGE_ING("创建模板镜像中"), CREATE_IMAGE_ERROR("创建镜像失败"), + imageClusterStatus: [ + { + value: "NORMAL", label: "正常", // "正常" + }, + { + value: "WAIT_SYNC", label: "等待同步镜像文件", // "等待同步镜像文件" + }, + { + value: "SYNCING", label: "同步镜像文件中", // "同步镜像文件中" + }, + { + value: "SYNC_SUCCESS", label: "同步镜像文件完成", // "同步镜像文件完成" + }, + { + value: "SYNC_FAILED", label: "同步镜像文件失败", // "同步镜像文件失败" + }, + { + value: "CREATE_GVM_FILE_IMG", label: "生成GVM文件中", // "生成GVM文件中" + }, + { + value: "CREATE_GVM_FILE_ERROR", label: "生成GVM文件失败", // "生成GVM文件失败" + }, + { + value: "CREATE_GVM_FILE_SUCCESS", label: "生成GVM文件成功", // "生成GVM文件成功" + }, + { + value: "CREATE_IMAGE_ING", label: "创建模板镜像中", // "创建模板镜像中" + }, + { + value: "CREATE_IMAGE_ERROR", label: "创建镜像失败", // "创建镜像失败" + } + ], + + // 任务中心状态枚举 + teskstatusList: [ + { + value: "SUCCESS", + label: i18n.t("taskcenter.success"), // "成功" + }, + { + value: "FAIL", + label: i18n.t("taskcenter.fail"), // "失败" + }, + { + value: "RUNNING", + label: i18n.t("taskcenter.running"), // "执行中" + }, + { + value: "WAIT_START", + label: i18n.t("taskcenter.tobestarted"), // "待开始" + }, + { + value: "CANCELED", + label: i18n.t("taskcenter.canceled"), // "已取消" + }, + { + value: "CANCELING", + label: i18n.t("taskcenter.canceling"), // "取消中" + }, + { + value: "TIMEOUT", + label: i18n.t("taskcenter.timeout"), // "超时" + }, + { + value: "UNKNOWN", + label: i18n.t("taskcenter.unknown"), // "未知" + }, + ], + + // 获取数据字典映射 + getDesc(key, list) { + let desc = ""; + list.forEach((element) => { + let { value, label } = element; + if (value == key) { + desc = label; + } + }); + + return desc || key; + }, + +} \ No newline at end of file diff --git a/src/assets/common/dataDictionary/imageLogDic.js b/src/assets/common/dataDictionary/imageLogDic.js new file mode 100644 index 0000000000000000000000000000000000000000..7421ae3d88239b02ce0cdae30c1dcfe4cade61f7 --- /dev/null +++ b/src/assets/common/dataDictionary/imageLogDic.js @@ -0,0 +1,131 @@ + +import i18n from '@/assets/common/lang/index' + +const imageLogDic = [ + { + "type": "IMAGE_UPLOAD", + "name": "上传镜像", + "logDetail": { + "fileName": "文件名称", + "imageName": "镜像名称", + "imageRemark": "镜像描述", + "zoneName": "可用区" + } + }, + { + "type": "IMAGE_SYNC", + "name": "同步镜像文件", + "logDetail": { + "imageName": "镜像名称", + "clusterName": "集群名称" + } + }, + { + "type": "IMAGE_CREATE_TEMPLATE", + "name": "生成镜像模板", + "logDetail": { + "templateImageName": "模板镜像", + "clusterName": "集群名称" + } + }, + { + "type": "IMAGE_MODIFY", + "name": "编辑镜像", + "logDetail": { + "oldImageName": "原镜像名称", + "oldImageRemark": "原镜像描述", + "oldZoneName": "原可用区", + "imageName": "镜像名称", + "imageRemark": "镜像描述", + "zoneName": "可用区" + } + }, + { + "type": "IMAGE_PRIVATE_TO_SHARE", + "name": "私有镜像提升为共享镜像", + "logDetail": { + "oldImageName": "原镜像名称", + "oldImageRemark": "原镜像描述", + "imageName": "镜像名称", + "imageRemark": "镜像描述", + "shareOrg": "共享组织" + } + }, + { + "type": "IMAGE_SHARE_TO_PUBLIC", + "name": "共享镜像提升为公共镜像", + "logDetail": { + "oldImageName": "原镜像名称", + "oldImageRemark": "原镜像描述", + "oldZoneName": "原可用区", + "imageName": "镜像名称", + "imageRemark": "镜像描述", + "zoneName": "可用区" + } + }, + { + "type": "IMAGE_MAKE", + "name": "制作镜像", + "logDetail": { + "selectMachineName": "云服务器", + "selectCluster": "云服务器所在集群", + "imageName": "镜像名称", + "imageRemark": "镜像描述", + "zoneName": "可用区" + } + }, + { + "type": "IMAGE_CREATE_GVM_FILE", + "name": "生成镜像文件", + "logDetail": { + "templateImageName": "模板镜像", + "clusterName": "集群名称" + } + }, + { + "type": "IMAGE_ERROR_SYNC", + "name": "异常镜像-同步", + "logDetail": { + "imageName": "镜像名称" + } + }, + { + "type": "IMAGE_DELETE", + "name": "删除镜像", + "logDetail": { + "imageName": "镜像名称" + } + }, + { + "type": "IMAGE_DOWNLOAD", + "name": "镜像下载", + "logDetail": { + "filePath": "镜像路径", + "imageName": "镜像名称", + "clusterName": "下载集群" + } + } +] +export default { + // 获取数据字典映射 + getLabelDesc(key, detailobj) { + let newlogDetail = {} + let reqObj = {} + imageLogDic.forEach(element => { + let { type, logDetail } = element + if (key === type) { + newlogDetail = JSON.parse(JSON.stringify(logDetail)) + } + }); + for (let detailobjKey in detailobj) { + if (detailobj.hasOwnProperty(detailobjKey)) { + let reqkey = newlogDetail[detailobjKey] || detailobjKey + let reqLabel = detailobj[detailobjKey] + reqObj[reqkey] = reqLabel + } + + } + return JSON.stringify(reqObj) + }, + +} \ No newline at end of file diff --git a/src/assets/common/lang/en/alarmevents.js b/src/assets/common/lang/en/alarmevents.js new file mode 100644 index 0000000000000000000000000000000000000000..91570516a5c6df4fe7fea2d0d0bf6363fe612fde --- /dev/null +++ b/src/assets/common/lang/en/alarmevents.js @@ -0,0 +1,105 @@ +/** ****************** 日志告警—告警事件 *********************************/ +export default { + 'monitoring.alarmSeverity.ALL': 'All Alarm Severities', + 'monitoring.alarmSeverity.URGENT': 'Urgent', + 'monitoring.alarmSeverity.SERIOUS': 'Serious', + 'monitoring.alarmSeverity.ORDINARY': 'Ordinary', + 'monitoring.alarmSeverity.label': 'Alarm Severity', + 'monitoring.alarmType.label': 'Alarm Name', + 'monitoring.alarmObjType.label': 'Object Type', + 'monitoring.alarmObjType.ALL': 'All Object Types', + 'monitoring.alarmObjType.LOCAL_SERVER': 'Local Server', + 'monitoring.alarmObjType.BRANCH_SERVER': 'Branch Server', + 'monitoring.alarmObjType.VM': 'VM', + 'monitoring.alarmObjType.SERVER': 'Servers', + 'monitoring.alarmObjType.USER': 'user', // 用户 + 'monitoring.alarmObjType.SERVERVIRTUAL': 'Service Virtual', + 'monitoring.serverType.ALL': 'All Servers', + 'monitoring.serverType.LOCAL': 'Local Servers', + 'monitoring.serverType.BRANCH': 'Branch Servers', + 'monitoring.alarmEvent.type.ALL': 'All Alarm Type', + 'monitoring.alarmEvent.type.LS_CPU_USAGE': 'Local Server CPU Usage Alarm', + 'monitoring.alarmEvent.type.LS_MEM_USAGE': 'Local Server Memory Usage Alarm', + 'monitoring.alarmEvent.type.LS_NET_USAGE': 'Local Server Network Usage Alarm', + 'monitoring.alarmEvent.type.BS_CPU_USAGE': 'Branch Server CPU Usage Alarm', + 'monitoring.alarmEvent.type.BS_MEM_USAGE': 'Branch Server Memory Usage Alarm', + 'monitoring.alarmEvent.type.BS_NET_USAGE': 'Branch Server Network Usage Alarm', + 'monitoring.alarmEvent.type.VM_CPU_USAGE': 'Virtual Machine CPU Usage Alarm', + 'monitoring.alarmEvent.type.VM_SWAP_USAGE': 'Virtual Machine Swap Memory Usage Alarm', + 'monitoring.alarmEvent.type.VM_SYS_DISK_USAGE': 'Virtual Machine System Disk Usage Alarm', + 'monitoring.alarmEvent.type.VM_USER_DISK_USAGE': 'Virtual Machine User Disk Usage Alarm', + 'monitoring.alarmEvent.type.VM_ERROR': 'Virtual Machine Error', + 'monitoring.alarmEvent.type.VM_MEM_USAGE': 'Virtual Machine Memory Usage Alarm', + 'monitoring.alarmEvent.type.SERVER_OFFLINE': 'Server Offline', + 'monitoring.alarmEvent.type.S_CPU_USAGE': 'Server CPU Usage Alarm', + 'monitoring.alarmEvent.type.S_MEM_USAGE': 'Server Memory Usage Alarm', + 'monitoring.alarmEvent.type.S_NET_USAGE': 'Server Network Resource Usage Alarm', + 'monitoring.alarmEvent.type.CM_ACTIVE': 'Cluster Master Active', + 'monitoring.alarmEvent.type.CM_STANDBY': 'Cluster Master Standby', + 'monitoring.alarmEvent.type.S_DISK_SHARE': 'Local Server Image Storage Alarm', + 'monitoring.alarmEvent.type.S_DISK_ROOT': 'Local Server Root Storage Alarm', + 'monitoring.alarmEvent.type.S_DISK_LOG': 'Local Server Log Storage Alarm', + 'monitoring.alarmEvent.type.S_DISK_HOME': 'Local Server Image Cache Storage Alarm', + 'monitoring.alarmEvent.type.BACKUP_FAIL': 'Desktop Backup Fail', + 'monitoring.alarmEvent.type.AUTHENTICATE_FAIL': 'Authentication failed', // 认证失败 + 'monitoring.alarmEvent.type.SERVERVIRTUAL_CPU_USAGE': 'Server Virtual CPU Usage Alarm', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_MEM_USAGE': 'Server Virtual MEM Usage Alarm', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_NET_USAGE': 'Server Virtual NET Usage Alarm', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_DISK_USAGE': 'Server Virtual DISK Usage Alarm', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_EXPIRED': 'Server Expired Alarm', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_BACKUP_SERVER_AVAILABLE_SPACE_NOT_ENOUGH': 'Insufficient free space on backup server', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_DYNAMIC_ADD': 'server dynamic add', + 'monitoring.alarmEvent.type.BRANCH_AUTHENTICATE_FAIL': 'Branch authentication error', // 分支认证错误 + 'monitoring.alarmEvent.type.BRANCH_REQUEST_FAIL': 'branch request error', // 分支请求错误 + 'monitoring.alarmEvent.type.branch.invalid_username': 'Branch username is wrong', // 分支用户名错误 + 'monitoring.alarmEvent.type.branch.invalid_password': 'branch password error', // 分支密码错误 + 'monitoring.alarmEvent.type.branch.error': 'Branch authentication error', // 分支认证错误 + 'monitoring.alarmEvent.storage.log': 'Storage log', + 'monitoring.alarmEvent.log': 'Log', + 'monitoring.alarmObjType.STORAGE': 'Storage', + 'monitoring.alarmEvent.type.S_GPU_TEMPERATURE': 'Server GPU Temperature Alarm', + 'monitoring.alarmEvent.type.STORAGE_USAGE': 'Storage Usage Alarm', + 'monitoring.alarmEvent.type.BRICK_OFFLINE': 'Brick Offline Alarm', + 'monitoring.alarmEvent.type.IPMI': 'Server IPMI Alarm', + 'monitoring.alarmEvent.type.VIRTUALSERVER_DYNAMIC_ADD': 'server dynamic add', + 'monitoring.alarmEvent.type.RABBIT_CONNECT_FAIL': 'RabbitMQ Connect Failed', + 'monitoring.alarmEvent.type.VIRTUALSERVER_KYLINTOOL': 'qga version', + 'monitoring.alarmEvent.type.VIRTUALSERVER_KSVDTOOL_EVENT': 'set ip/user/passwd', + 'monitoring.alarmEvent.type.MARIADB': 'Database alarm', + 'monitoring.alarmEvent.type.RESOURCE_ALLOCATION': 'Resource has reached quota threshold', + + alarmSetting: { + type: 'Alarm Name', + urgentValue: 'Urgent Value', + seriousValue: 'Serious Value', + ordinaryValue: 'Ordinary Value', + interval: 'Alarm Continue Interval(minute):', + smtpName: 'Mail Addr:', + intervalEmpty: 'The interval is empty!', + intervalInput: 'The interval must be a positive number not greater than 60!', + smtpEmpty: 'address of mail is can not null', + 'seriousInput': 'Serious threshold must less than urgent threshold!', + 'ordinaryInput': 'Ordinary threshold must less than Serious threshold!', + 'thresholdInput': 'Invalid input! please input a integer between 0~99!', + cloudServerAlarmPolicy: 'Cloud server alarm policy', // 云服务器告警策略 + physicalServerAlertPolicy: 'Physical Server Alert Policy', // 物理服务器告警策略 + siteLickCheck:' Remote Dr - Link detection', + machineExpire:' cloud server expire ', + clusterAlarmSettings: 'Cluster Alarm Settings', // 集群告警设置 + platformAlarmSettings: 'Platform Alarm Settings', // 平台告警设置 + clusterAlarmlog: 'Cluster alarm log', // 集群告警日志 + platformAlarmlog: 'Platform Alarm Log', // 平台告警日志 + indicatorItem: 'Indicator item', // 指标项 + allZone: 'All Availability Zones', // 全部可用区 + allOrganization: 'All organizations', // 全部组织 + zoneName: 'Availability Zone', // 可用区 + orgName: 'Organization', // 所在组织 + vdcCpuAlarm: 'VDC-CPU Allocation Ratio Alarm', // 所在组织 + vdcEmeAlarm: 'VDC-memory usage alarm', // 所在组织 + vdcStorageAlarm: 'VDC-Storage Utilization Alarm', // 所在组织 + general: 'General alert', // 一般告警 + severity: 'Serious warning', // 严重告警 + urgent: 'emergency alert', // 紧急告警 + platform: 'platform', // 紧急告警 + }, +} diff --git a/src/assets/common/lang/en/authorityMgr.js b/src/assets/common/lang/en/authorityMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..6305a8da3f047b418e1907c7a474e1ff34339cf0 --- /dev/null +++ b/src/assets/common/lang/en/authorityMgr.js @@ -0,0 +1,127 @@ +// authorityMgr 权限管理 +export default { + orgList: 'Organization list', // 组织列表 + userList: 'User list', // 用户列表 + userName: 'user name', // 用户名 + realName: 'actual name', // 真实姓名 + role: 'role', // 角色 + mobile: 'cell-phone number', // 手机号 + avtstatus: 'Active state', // 激活状态 + createTime: 'Creation time', // 创建时间 + SYSTEM: "System Management", // 系统管理 + ORG: "Organization Management", // 组织管理 + SELF_SERVICE: "Self-service", // 自服务 + PLATFORM: "Platform management", // 平台管理 + ACTIVATE: "activation", // 激活 + NO_ACTIVATE: "inactivated", // 未激活 + creatUser: "Create user", // 创建用户 + modifyUser: "Edit user", // 编辑用户 + deleteUsers: "delete users", // 删除用户 + deleteTipMsg: "Are you sure to delete this user?", // 确定删除该用户吗? + deleteSuccessMsg: "User deleted successfully!", // 确定删除该用户吗? + deletesTipMsg: "Are you sure to delete this user group in bulk??", // 确定批量删除该用户组吗? + deletesSuccessMsg: "Successfully delete users in batches!", // 确定批量删除该用户组吗? + + + userNameplaceholder: "please enter user name", // 请输入用户名 + userNametootip: "The user name supports a combination of numbers and letters, and the character length is 6 to 18 digits", // 用户名支持数字、字母进行组合,字符长度为6 ~ 18位 + + realNameplaceholder: "please enter your real name", // 请输入真实姓名 + loginPwd: "login password", // 登录密码 + loginPwdplaceholder: "Please enter your password", // 请输入登录密码 + editpassword: "change Password", // 修改密码 + confirmPwd: "Confirm Password", // 确认密码 + confirmPwdplaceholder: "Please enter confirm password", // 请输入确认密码 + loginNewPwd: "new password", // 新密码 + loginNewPwdplaceholder: "Please enter a new password", // 请输入新密码 + bindorgName: "Bound organization", // 绑定组织 + bindorgNameplaceholder: "Please bind the organization", // 请绑定组织 + noorgName: "No organization to go", // 没有组织前往 + bindroleName: "Bound role", // 绑定角色 + bindroleNameplaceholder: "Please bind the role", // 请绑定角色 + mobileplaceholder: "Please enter phone number", // 请输入手机号 + userStatus: "activation", // 激活 + pwdInconsistent: "The two passwords are inconsistent!", // 两次输入密码不一致 + userNameNotNull: "Username can not be empty!", // 用户名不能为空 + userNameLength: "The length of the user name should be controlled within 6 ~ 18 characters!", // 用户名长度应控制在 6 ~ 18 个字符 + userNamecombination: "Username can only be a combination of English letters and numbers!", // 用户名只能由英文字母、数字组合! + realNameNotNull: "Do not leave blank for real name!", // 真实姓名不能为空 + realNameLength: "Real name length should be controlled within 6 ~ 18 characters!", // 真实姓名长度应控制在 6 ~ 18 个字符 + realNamecombination: "The real name can only be a combination of English letters and numbers!", // 真实姓名只能由英文字母、数字组合! + pwdNotNull: "password can not be blank!", // 密码不能为空! + pwdNotLength: "The password length should be controlled within 6 ~ 18 characters!", // 密码长度应控制在 6 ~ 18 个字符! + pwdNotcombination: "Password can only be a combination of English letters and numbers!", // 密码只能由英文字母、数字组合! + confirmpwdNotNull: "confirm password can not be blank!", // 确认密码不能为空! + confirmpwdInconsistent: "Confirm password and password input are inconsistent!", // 确认密码和密码输入不一致! + modifyUsersuccess: "Edit user successfully!", // 编辑用户成功! + createUsersuccess: "User created successfully!", // 创建用户成功! + + roleList: 'Role list', // 角色列表 + roleName: 'Role Name', // 角色名称 + roleType: 'Role type', // 角色名称 + remark: 'describe', // 描述 + createRole: 'Creating a Role', // 创建角色 + roleDetail: 'Role details', // 角色详情 + modifyRole: 'Edit role', // 编辑角色 + deleteRoleMsg: 'Are you sure to delete this role?', // 确定删除该角色吗? + deleteRoleSuccMsg: 'Role deleted successfully!', // 删除角色成功! + createRoleSuccMsg: 'Created the character successfully!', // 创建角色成功! + modifyRoleSuccMsg: 'Edit character success!', // 编辑角色成功! + boundorg: 'Bound organization', // 绑定组织 + setPermission: 'Permission settings', // 权限设置 + roleNameplaceholder: 'Please enter the role name', // 请输入角色名称 + roleNametooltip: 'Supports the combination of Chinese, numbers, and letters, with a character length of 2 to 18 digits', // 支持中文、数字、字母进行组合,字符长度为2 ~ 18位 + boundorgplaceholder: 'Please bind the organization', // 请绑定组织 + optionalPermissions: 'Optional permissions', // 可选权限 + selectedPermissions: 'Selected permissions', // 已选权限 + roleTypeplaceholder: 'Please select the role type', // 请选择角色类型 + roleNameNotNull: 'Role name cannot be empty', // 角色名称不能为空 + roleNameLength: 'The length of the name should be controlled within 2 ~ 18 characters', // 名称长度应控制在 2 ~ 18 个字符 + setPermissionplaceholder: 'Please set permissions', // 请设置权限 + + // 组织管理 + cpu: 'core', // 核 + mem: 'RAM', // 内存 + disk: 'storage', // 存储 + organizationName: 'name of association', // 组织名称 + userNum: 'User number', // 用户数 + serverVmNum: 'Cloud Server',// 云服务器 + parentName: 'Parent organization', // 上级组织 + CPUallocationratio: 'CPU allocation ratio', // CPU分配比 + memoryallocationratio: 'Memory allocation ratio', // 内存分配比 + Storageallocationratio: 'Storage allocation ratio', // 存储分配比 + editOrg: 'Edit organization',// 编辑组织 + createOrg: 'Create an organization',// 创建组织 + delereOrgconfirm: "Are you sure to delete this organization?", // 确定删除该组织吗 + delereOrgSucc: 'Delete organization successfully!', // 删除组织成功! + organizationNameplc: 'Please enter an organization name',// 请输入组织名称 + parentNameSelect: 'Please select the parent organization', // 请选择上级组织 + selectSarentName: 'select the parent organization', // 选择上级组织 + vdcId: 'Select VDC', // 选择VDC + vdcIdPlc: 'If not selected, the default is the first-level VDC',// 未选默认为一级VDC + vdcIdPlcInput: 'Please select VDC',// 未选默认为一级VDC + createLeader: 'Organization Administrator',// 组织管理员 + createLeaderis: 'Create an organization administrator',// 创建组织管理员 + createLeaderselect: 'Please choose whether to create an organization administrator',// 请选择是否创建组织管理员 + createLeadernot: 'Not created yet',// 暂不创建 + organizationNameNotNull: 'Organization name cannot be empty', // 组织名称不能为空 + editOrgSucc: 'Edit organization successfully!',// 编辑组织成功! + createOrgSucc: 'Create organization successfully!', // 创建组织成功! + vdcName: 'VDC name', // VDC名称 + vdcConfigure: 'Configuration', // 配置 + editOrgName: 'Edit organization name', // 修改组织名称 + editOrgNamesuccessMsg: 'Modify the organization name successfully', // 修改组织名称成功 + bindOrgNamePlc: 'Please select a binding organization', // 请选择绑定组织 + + netWorkSet: { + ID: 'ID', // ID + networkName: 'network name', // 网络名称 + interfaceType: 'Network Type', // 网络类型 + virtualSwitch: 'virtual switch', // 虚拟交换机 + modelType: 'NIC type', // 网卡类型 + addressPool: 'address pool', // 地址池 + portGroup: 'port group', // 端口组 + securityGroup: 'security group', // 端口组 + clusterName: 'cluster name', // 集群名称 + } +} \ No newline at end of file diff --git a/src/assets/common/lang/en/common.js b/src/assets/common/lang/en/common.js new file mode 100644 index 0000000000000000000000000000000000000000..dc0e60951fa7b93400723418ebba2a5ebecc0e5f --- /dev/null +++ b/src/assets/common/lang/en/common.js @@ -0,0 +1,325 @@ +// 公共模块 +export default { + canceled: "Cancelled!", // 已取消! + delete: "Delete", + operation: "Operate", + sureDel: "Confirm delete", + save: "Save", + saveSuccess: "Save successfully!", + saveFail: "Save fail!", + passwordCantNull: "Password cannot be empty", + open: "Open", + password: "password", + openSuccess: "Open successfully!", + createSuccess: "create successfully", + editSuccess: "edit successfully", + openFail: "Open fail!", + hostSubmitSuccess: "Host hosting task submitted successfully", + hostEditSuccess: "Host hosting task editted successfully", + cancellation: "cancellation", + delLotSure: "Confirm Batch Delete", + delTips: "After deletion, it cannot be restored. Please operate with caution", + tips: "Tips", // 提示 + loadingText: "Loading desperately", // 拼命加载中 + refresh: "refresh", // 刷新 + select: "select", // 选择 + create: "create", // 创建 + open: "open", // 开 + close: "close", // 关 + placeholder: "Please enter content", // 请输入内容 + view: "View", // 查看 + add: "Add", // 添加 + nametooltip: + "Supports the combination of Chinese, numbers, and letters, with a character length of 2 to 18 digits", // 支持中文、数字、字母进行组合,字符长度为2 ~ 18位 + nameLength: "Length should be controlled between 2 ~ 18 characters", // 长度应控制在 2 ~ 18 个字符 + vmName: + "The value can contain only letters, digits, underscores, and hyphens (-)", + adminNameLength: "Length should be controlled between 6 ~ 20 characters", // 长度应控制在 6 ~ 20 个字符 + adminNameWranMsg: "Combination of English letters and numbers only", // 只能由英文字母、数字组合 + cpuValtip: "The cpu supports only an even number or 1", + adminPwdLength: "Length should be controlled between 6 ~ 18 characters", // 长度应控制在 6 ~ 18 个字符 + adminPwdWranMsg: + "The password can only be a combination of English letters and numbers", // 密码只能由英文字母、数字组合 + pleaseEnter: "please enter", // 请输入 + pleaseSelsect: "please choose", // 请选择 + pleaseSet: "please set", // 请设置 + set: "set up", // 设置 + previous: "Previous", // 上一步 + nextStep: "Next step", // 下一步 + confirmation: "confirm", // 确认 + notNull: "Can not be empty", // 不能为空 + cpu: "core", // 核 + mem: "RAM", // 内存 + disk: "storage", // 存储 + diskSize: "storage size", // 存储大小 + hard: "disk", // 磁盘 + addhardMsg: + "The cloud server has not applied for a disk, please add it as needed", // 该云服务器没有申请磁盘,请按需添加 + diskNumMaxMsg: "The maximum number of disks has been reached", // 磁盘数目已达上限 + diskNumMsg: "Disk size cannot be a positive integer less than 1", // "磁盘大小不能为小于1的正整数"; + diskNumSizeMsg: "Disk size cannot be empty", // "磁盘大小不能为空"; + diskNumMinMsg: "Add at least one disk", // "至少添加一块磁盘"; + cdRom: "CD-ROM", // 光驱 + newDisk: "add disk", // 新增磁盘 + network: "network card", // 网卡 + newnetwork: "Add network card", // 新增网卡 + addnetworkMsg: + "The cloud server has not been applied for, please add a network card as needed", // 该云服务器没有申请,请按需添加网卡 + networkNumMaxMsg: "The number of network cards has reached the upper limit", // 网卡数目已达上限 + networkpurpose: "Please select a network configuration", // 请选择网络配置 + networkSet: "set up network", // 设置网络 + newnetwork: "set up new network", + upperNetwork: "Select upper-level network", // 选择上级网络 + to: "to", // 至 + enddate: "end date", // 结束日期 + startdate: "start date", // 开始日期 + people: "people", // 人 + confirm: "OK", + cancel: "Cancel", + success: "successfully", + fail: "fail", + modify: "Edit", + batchModify: "Bulk Edit", + build: "Build", + operation: "Operate", + save: "Save", + startUp: "Start Up", + saveSuccess: "Save successfully!", + saveFail: "Save fail!", + createTime: "create time", + open: "Open", + openSuccess: "Open successfully!", + openFail: "Open fail!", + close: "Close", + closeSuccess: "Close successfully!", + closeFail: "Close fail!", + updateSuccess: "updateSuccess", + export: "Export", + exportCsv: "Export CSV", + exportElef: "Export ELFF", + startTIme: "Start date", + endTIme: "End date", + recentWeek: "In the latest week", + lastMonth: "Last Month", + lastThreeMonths: "Last 3 months", + filter: "Filter:", + emptyFilter: "Empty filter", + enter: "Please enter", + select: "Please select", + to: "To", + date: "Date", + user: "User", + userName: "User name", + type: "Type", + server: "Server", + organization: "Organization", + information: "Information", + name: "Name", + status: "Status", + normal: "Normal", + desc: "Descripetion", + warn: "Warn", + notAvailable: "Not available", + tips: "Tips", + hour: "Hour", + add: "Add", + delete: "Delete", + notRunning: "not Running", + startSession: "Start", + startSessionSuccess: "Start success", + closeSession: "Shutdown", + closeSessionSuccess: "Shutdown success", + forcedCloseSession: "Forced Shutdown", + restart: "restart", + forcedRestart: "Forced Restart", + sendMessage: "Send Message", + createSnapshot: "Create a snapshot", + migration: "Migration", + extractionLog: "Extraction Log", + detection: "detection", + systemRecovery: "System Recovery", + power: "power", + offline: "Offline", + loadingText: "Loading...", + moreLabel: "More", + validateNull: "Cannot be empty", + validateNumber: "Must be a number", + validateLeng3_15: "The length should be betwee 3 and 15 characters", + column_Dispaly: "Column Display Settings", + refreshTable: "Rfresh Table", + selected_label: "Selected", + to_select_label: "To Select", + operation_control: "Management console: ", + download_all: "Batch download", + all: "all", + sureDelete: "Do you want to delete it?", + deleteSuccess: "Deleted successfully!", + sureModify: "Confirm the modification?", + modifySuccess: "Modified successfully!", + sureSubmmit: "Do you confirm submission?", + submmitSuccess: "Submitted successfully!", + tableSetting: "Table Settings", + apply: "apply", + reset: "reset", + remoteControl: "Remote Control", + isSure: "confirm", + notice: "Notice", + approved: "Approved", // 审批 + alarm: "Alarm", // 告警 + search: "search", // 搜索 + createTime: "create Time", // 创建时间 + changeTheme: "switch skin", // 切换皮肤 + changeLangEvent: "switch language", // 切换语言 + changeLangok: "Are you sure you want to switch languages?", // 确定切换语言吗? + changePassword: "change Password", // 修改密码 + detailsInfo: "Details", // 详情 + changeSpec: "Change Specifications", // 变更规格 + pass: "pass", // 通过 + refuse: "Refuse", // 拒绝 + time: "time", // 时间 + batchPass: "batch pass", // 批量通过 + batchRefuse: "Bulk rejection", // 批量拒绝 + batchReviewsucc: "Batch review succeeded", // 批量审核成功 + reviewsucc: "Review succeeded", // 审核成功 + refusesucc: "refusal to succeed", // 拒绝成功 + applyDelete: "request deletion", // 申请删除 + originalSize: "original size", // 原大小 + strip: "strip", // 条 + alreadyAllocate: "Assigned", // 已分配 + noAllocate: "unassigned", // 已分配 + + details: { + summary: "summary", // 概要 + resourceAllocation: "Resource Allocation", // 资源分配情况 + CPUallocationRatio: "CPU allocation ratio", // cpu分配比 + totalcapacity: "total capacity", // 总容量 + used: "used", // 已用 + available: "available", // 可用 + memoryAllocationRatio: "memory allocation ratio", // 内存分配比 + storageAllocationRatio: "storage allocation ratio", // 存储分配比 + resourceStatistics: "Resource Statistics", // 资源统计 + total: "total", // 总数 + activated: "activated", // 已激活 + inactivated: "inactivated", // 未激活 + online: "online", // 在线 + offline: "offline", // 离线 + resourceUsage: "Resource Usage", // 资源使用情况 + CPUUtilization: "CPU utilization", // CPU利用率 + memoryUtilization: "memory utilization", // 内存利用率 + storageUtilization: "storage utilization", // 存储利用率 + cpuCount: "cpu Count", // cpu数: + disk: "disk", // 磁盘 + diskIOwrites: "Disk I/O writes", // 磁盘I/O写入 + diskIOread: "Disk I/O read", // 磁盘I/O读取 + network: "network", // 网络 + netWorkInSpeedData: "network inflow speed", // 网络流入速度 + netWorkOutSpeedData: "network outgoing speed", // 网络流出速度 + }, + route: { + homePage: "Home", // 首页 + resource: "resources", // 资源 + operator: "operate", // 运营 + monitor: "Monitoring", // 监控 + zone: "Availability Zone", // 可用区 + zoneDetail: "Availability Zone Details", // 可用区详情 + cluster: "physical cluster", // 物理集群 + clusterDetail: "Physical Cluster Details", // 物理集群详情 + vdc: "Virtual Data Center (VDC)", // 虚拟数据中心(VDC) + vdcDetail: "Virtual Data Center (VDC) Details", // 虚拟数据中心(VDC)详情 + servervm: "Cloud Server", // 云服务器 + servervmDetail: "Cloud server details", // 云服务器详情 + org: "Organizational management", // 组织管理 + orgDetail: "Organization Details", // 组织详情 + permission: "authority management", // 权限管理 + userMgr: "User Management", // 用户管理 + roleMgr: "role management", // 用户管理 + workorder: "Work order", // 工单管理 + WorkorderReview: "Work order review", // 工单审核 + workorderDetail: "Ticket details", // 工单详情 + networkconfig: "network settings", // 网络设置 + alarmEvent: "Alarm event", // 告警事件 + alarmLog: "Alarm log", // 告警日志 + settingAlarm: "Alarm settings", // 告警设置 + operateLog: "Operation log", // 操作日志 + serverEvent: "Physical host events", // 物理主机事件 + cloudServerEvent: "Cloud server events", // 云服务器事件 + vMwareMgr: "VMware managed", // VMware纳管 + vMwareMgrDetail: "VMware Onboarding Details", // VMware纳管详情 + imageMgr: "Image management", // 镜像管理 + imageMgrUpload: "upload image", // 上传镜像 + imageMgrDetail: "Mirror details", // 镜像详情 + taskcenter: "task center", // 任务中心 + externalCloud: "external cloud", + vcenter: "Managed vCenter", + reliableCenter: "reliable Center", + linkManagement: "link Management", + remoteDisasterRecovery: "remote Disaster Recovery", + mainAndBackupKcp: "main And Backup Kcp", + bareMetal: "bare Metal", + }, + login: { + resetPassword: "reset Password", // 重置密码 + oldPwd: "old password", // 原密码 + placeholder: + "Password length should be controlled within 6 ~ 18 characters", // 长度6~18位 + newPwd: "new password", // 新密码 + confirmPwd: "confirm password", // 确认密码 + confirmPwdErr: "The passwords entered twice do not match!", // 两次输入密码不一致! + pwdMsg: "password can not be blank", // 密码不能为空 + confirmPwdlenMsg: + "The password can only be a combination of English letters and numbers", // 密码只能由英文字母、数字组合 + confirmPwdMsg: "Confirm password and password input are inconsistent", // 确认密码和密码输入不一致 + }, + home: { + homeText: + "Resource pooling and standardization, intelligent planning and management", // 资源池化与标准化,智能规划与管理 + homeSubText: + "A single neutral console manages heterogeneous infrastructures and connects to existing business process platforms. The resources on the cloud are logically pooled, so as to implement resource allocation based on the enterprise organizational structure, and provide standard processes and standardized cloud services", // 单个中立的控制台对下纳管异构的基础设施,对接已有业务流程平台。将云上的资源进行逻辑池化,从而基于企业组织架构来实行资源分配,并提供标准的流程和规范的云服务 + createZone: "Add Availability Zone", // 添加可用区 + createCluster: "Add a cluster", // 添加集群 + createVdc: "Add VDC", // 添加VDC + cpuUseRatio: "CPU usage", // CPU使用率 + memUseRatio: "memory usage", // 内存使用率 + owningCluster: "owning cluster", // 所属集群 + cloudHosting: "Cloud Server", // 云服务器 + physicalMachine: "physical host", // 物理主机 + workerOrder: "Work order review", // 工单审核 + alarm: "alert", // 告警 + cpuUtilization: "CPU utilization", // CPU利用率 + memoryUtilization: "memory utilization", // 内存利用率 + storageUtilization: "storage utilization", // 存储利用率 + accountOverview: "Account Overview", // 账户总览 + platformManage: "Platform management user", // 平台管理用户 + orgManage: "Organizing management users", // 组织管理用户 + selfService: "self-service users", // 自服务用户 + used: "used", // 已用 + totalCpu: "Total CPU capacity", // CPU总容量 + usable: "available", // 可用 + totalMem: "total memory capacity", // 内存总容量 + totalStorage: "total storage capacity", // 存储总容量 + zone: "Availability Zone", // 可用区 + zoneNum: "Number of Availability Zones", // 可用区数量 + cluster: "cluster", // 集群 + clusterNum: "Total number of clusters", // 集群总数 + physicalHost: "physical machine", // 物理机 + physicalHostNum: "Total number of physical machines", // 物理机总数 + VDC: "VDC", // VDC + VDCNum: "Total VDCs", // VDC总数 + serverVm: "Cloud Server", // 云服务器 + serverVmNum: "Total number of cloud servers", // 云服务器总数 + total: "total", // 总数 + }, + + cloneTypeArr: { + LINK_CLONE: "linked clone", // 链接克隆 + FULL_CLONE: "full clone", // 链接克隆 + }, + securityPolicyArr: { + NONE: "none", // 无 + SECURITY_GROUP: "security group", // 安全组 + VIRTUAL_FIREWALL: "virtual firewall", // 虚拟防火墙 + }, + successfulOperation: "Successful operation!", // 操作成功 + operationFailed: "operation failed!", // 操作失败 + noMoreOperations: "No more operations", +}; diff --git a/src/assets/common/lang/en/externalCloud.js b/src/assets/common/lang/en/externalCloud.js new file mode 100644 index 0000000000000000000000000000000000000000..20ae7dfa79511173936b86cff43d653721fa8766 --- /dev/null +++ b/src/assets/common/lang/en/externalCloud.js @@ -0,0 +1,267 @@ +// externalCloud +export default { + clusterEdleteConfirm: 'Are you sure you want to delete this physical cluster?', // 确定删除该物理集群吗? + clusterEdleteSuccess: 'Delete physical cluster successfully!', // 删除物理集群成功! + transVmTips1:'During the migration process, the cloud server still provides services to the public normally. In the final stage of migration, the system automatically shuts down the cloud server and synchronizes the incremental data generated during the migration process to complete the migration;', + transVmTips2:'After the migration is completed, automatically start the cloud server on the target cluster', + statuscell: { + OVERDUE: 'expired', // 已过期 + AVAILABLE: 'online', // 在线 + CONNECTED: 'connected', // 已连接 + INSTALLING: 'Install', // 安装 + SUSPEND: 'pause', // 暂停 + UNKNOWN: 'other', // other + ONLINE: 'online', // 在线 + OFFLINE: 'offline', // 离线 + HALT: 'abnormal', // 异常 + EXCEPTION: 'abnormal', // 异常 + NORMAL: 'normal', // 正常 + WARNING: 'warn', // 警告 + ERROR: 'mistake', // 错误 + POWERED_ON: 'online', // 在线 + POWERED_OFF: 'closure', // 关闭 + TASK_EXECUTION: 'task executtion', + INIT: 'init', + }, + vcenter: { + name: 'name', + remark: 'remark', + status: 'status', + versionNumber: 'version Number', + clusterUrl: 'Cluster URL', + useRate:'Utilization', + clustercpurate: 'CPU utilization', + clustermemoryrate: 'memory utilization', // 内存利用率 + clusterstoragerate: 'storage utilization', // 存储利用率 + addVcenter: 'add vcenter', + versionNumber: 'version number', + editVcenter: 'edit vCenter', + nameLength: 'The value contains 2 to 32 characters',// + loginFalse: 'The vcenter login account fails to be verified. Check whether the account password is correct',// + nametooltip: 'The value can contain 2 to 32 characters, including digits, and letters',//The value can contain 2 to 32 characters, including digits, and letters + type: 'type', + storageTotalCapacity: 'Total capacity', + storageCapacityUsedRate: 'Capacity utilization rate', + clusterEditSussess: 'VCenter information is successfully edited', + clusterAddtSussess: 'VCenter information is successfully added. Procedure', + clusterSummary: 'Summary', // 概要 + clusterPhysicalHost: 'Physical Host', // 物理主机 + clusterVersion: 'Version', // 集群版本 + clusterCeateTime: 'Ceate Time', // 添加时间 + cpuModelName: 'name', // 名称 + cpuModelstatus: 'status', // 状态 + cpuModelType: 'CPU type', // CPU类型 + cpuModelserverArch: 'server Arch', // 服务器架构 + cpuModelserverType: 'server Type', // 服务器类型 + cpuModelcpurate: 'CPU rate', // CPU利用率 + cpuModelmemoryrate: 'memory rate', // 内存利用率 + vmNumber: 'host number', + storageModelmemoryrate: 'storage rate', // 内存利用率 + cloudServer: 'cloud Server', // 存储 + domainName:'Domain Name', + domainNameUrlWranMsg:'please input domain name Ip', + clusterEditPassword:'please input edit password', + enterPort:'Please enter the port number', + enterProtocol:'Please select an address protocol type', + }, + + // VMware纳管 + vMwareMgr: { + name: 'name', // 名称 + namePlac: 'Name is required', // 名称不能为空 + remark: 'describe', // 描述 + vcenterIp: 'ip address', // ip地址 + vcenterPort: 'port', // 端口 + vcenterAccount: 'account', // 账号 + vcenterAdminName: 'username', // 用户名 + vcenterAdminNameNot: 'Username can not be empty', // 用户名不能为空 + vcenterAdminNamePlac: 'Enter the vCenter administrator username', // 输入vCenter管理员用户名 + vcenterAdminPassword: 'password', // 密码 + vcenterAdminPasswordNot: 'password can not be blank', // 密码不能为空 + vcenterAdminPasswordPlac: 'Please enter password', // 请输入密码 + addvMwareMgr: 'Add VMware Managed', // 添加VMware纳管 + editvMwareMgr: 'Edit VMware Managed', // 编辑VMware纳管 + type: 'type', // 类型 + typePlac: 'Type cannot be null', // 类型不能为空 + addSucc: 'Added successfully', // 添加成功 + editSucc: 'Edited successfully', // 编辑成功 + vmlist: 'Cloud server list', // 云服务器列表 + powerStatus: 'state', // 状态 + memory: 'Memory', // 内存 + }, + network: { + network: 'The internet',// 网络 + networkName: 'network name',// 网络名称 + virtualSwitch: 'virtual switch',// 虚拟交换机 + portGroup: 'Port group to which it belongs',// 所属端口组 + macAddress: 'MAC address',// MAC地址 + ipAddress: 'IP address',// IP地址 + pool: 'address pool',// 地址池 + uploadSpend: 'Downlink bandwidth(KB/S)',// 下行带宽(KB/S) + downloadSpend: 'Upstream bandwidth(KB/S)',// 上行带宽(KB/S) + setUp: 'network settings', //网络设置 + cluster: 'physical cluster', //物理集群 + selectcluster: 'Please select a physical cluster', //请选择物理集群 + networkName: 'network name', //网络名称 + networkNameplac: 'Please enter a network name', //请输入网络名称 + networkNametooltip: 'Support Chinese, English, numbers, limited to 2~18 characters', //支持中文、英文、数字,限定2~18字数 + modelType: 'NIC type', //网卡类型 + networkCard: 'NIC', //网卡 + modelTypeplac: 'Please select the network card type', //请选择网卡类型 + addressPool: 'address pool', //地址池 + addressPoolplac: 'Please select an address pool', //请选择地址池 + virtualSwitch: 'virtual switch', //虚拟交换机 + virtualSwitchplac: 'Please select a virtual switch', //请选择虚拟交换机 + portGroup: 'port group', //端口组 + portGroupplac: 'Please select a port group', //请选择端口组 + permission: 'security group', //安全组 + permissionresouse: 'Security Group Resources', //安全组资源 + effectivepermission: 'Effective security group', //生效安全组资源 + networkNamelen: 'Name length should be controlled between 2 ~ 18 characters', //名称长度应控制在 2 ~ 18 个字符 + securityPolicy: 'security strategy', //安全策略 + virtualFirewallName: 'virtual firewall', //虚拟防火墙 + virtualFirewallNamePlc: 'Please select a virtual wall', //请选择虚拟防护墙 + }, + disk: { + provisionMode: 'Provision mode',//Provision mode + provisioningDeferredZeroing: 'Thick provisioning deferred zeroing',//Thick provisioning deferred zeroing + setForQuickZeroing: 'set for quick zeroing',//set for quick zeroing + sourceFile: 'source File', + leanProvisioning: 'Lean provisioning'//Lean provisioning + }, + task: { + type: 'type', + operation: 'operation', + objectName: 'object Name', + operationUser: 'operation User', + startTime: 'start Time', + finishTime: 'finish Time', + status: 'status', + detail: 'detail', + reason: 'reason', + }, + vmList: { + shutdown: 'shutdown', + wakeUp: 'wakeUp', + pause: 'pause', + restart: 'restart', + powerOff: 'power Off', + clone: 'clone', + edit: 'edit', + migration: 'migration', + migrationMc:'migration to MC', + delete: 'delete', + create: 'Create ', + cancelled: 'Cancelled ', + turnOn: 'Turn on ', + cancel: "Cancel ", + shutDown: 'Shut down ', + reboot: 'Reboot ', + ipAddress: 'ip address ', + cpuCore: "cpu (core) ", + memorySize: "Memory (GB) ", + storageSize: "Storage (GB) ", + hasOpenVmTips: 'There is a VM in power-on state in the selected VM, please check ', + hasCloseVmTips: "The selected VMS have VMS in shutdown state, please check ", + opensuccess: "Successfully issued the startup task. Please view it in the task console ", + closesuccess: "Successfully issued the Power off. Please view it in the task console ", + sureclose: "Confirm power off ", + delsuccess: "Delete successfully ", + wakeupsuccess: "Successfully issued the Wake up success. Please view it in the task console ", + pausesuccess: "Pause success ", + poweroffsuccess: "Successfully issued the Power off success. Please view it in the task console ", + rebootsuccess: "Successful reboot ", + sureShutUpTips: " This action will shut down this cloud server. Do you want to continue?", + sureWeakUpTips: " This operation will wake up the cloud server, Do you want to continue?", + sureDelTips: " This action will delete this cloud server, do you want to continue?", + sureBatchRebootTips: " This operation will restart cloud servers in bulk. Do you want to continue?", + surePauseTips: " This action will pause this cloud server. Do you want to continue?", + sureRebootTips: " This operation will restart the cloud server. Do you want to continue?", + sureCloseTips: " This operation will power down the cloud server. Do you want to continue?", + sureBatchDelTips: " This action will remove this cloud server in bulk, do you want to continue?", + sureWeakeUp: " Confirm wake up ", + surePause: "Confirm pause", + sureReboot: " Confirm restart ", + surePowerOff: " Confirm power off ", + powerOff: "power off", + sureDel: "Confirm delete", + batchReboot: "Batch restart", + batchDel: " Batch delete ", + }, + vmOperate: { + createVm: ' Create Cloud Server ', + physicalCluster: 'physical cluster', + name: 'Name', + description: 'Description', + runningPosition: 'Running position', + storageLocation: 'Storage location', + choose: 'choose', + MirrorFir: " mirror file ", + core: 'core', + custom: 'custom', + memory: 'memory', + diskCnatNull: "The disk must not be empty", + disk: ' Disk ', + netCardCantNull: ' Network card must not be empty ', + netCard: 'net card', + addntCard: " Add NIC ", + basicInfo: 'Basic information', + os: " operating system ", + configInfo: " Configuration information ", + disk: " disk ", + network: 'network', + networkName: ' Network name ', + ntAdapter: ' network adapter ', + cpuCore: " Number of CPU cores ", + memSize: " memory size ", + createSuccess: " The VM is created successfully, please view the progress on the task console ", + chooseRunWayTips: " Please select a virtual machine run location first ", + cantMoreDisk: 'The number of disks has reached the upper limit', + cantMoreNt: "The number of network card has reached the upper limit", + chooseLocation: "Choose where to store it ", + sure: "Be sure", + host:'host', + cancel: "Cancel", + mirName: "Mirror name", + opType: "Operation type", + osType: "Mirror type", + osSize: "Mirror size", + chooseMirFile: "Choose Mirror File", + editVm: 'Edit Cloud server ', + cantChangeOnlineCpu: 'The CPU size of an online VM cannot be modified ', + cantChangeOnlineMem: 'The memory size of an online virtual machine cannot be modified ', + cantDelOnlineDisk: ' Cannot delete an added disk from an online VM', + diskCantNull: 'Disk must not be empty ', + willDelDisk: 'This disk will be deleted ', + delThisDisk: 'Delete this disk ', + cancelThisDisk: 'cancel delete disk ', + diskCantNull: 'Disk must not be empty ', + addNewDisk: 'Add a new disk', + delNetCard: 'This network card will be deleted ', + recoverNetCard: 'undo to delete a network card', + cpuCantNull: 'cpu cannot be empty ', + memCantNull: 'Memory cannot be empty ', + cantChangeLessBefor: 'The disk size after modification must not be smaller than the original disk size ', + editSuccessTips: 'Edit and modify task submitted successfully, please view specific information in the task desk', + cloneVm: 'Clone Cloud Server ', + chooseHost: 'Select host ', + cluster: 'cluster', + cloneSuccess: 'Clone task submitted successfully, please check the specific information in the task console ', + chooseHostTips: 'Please select the host first', + autoPlace:'Automatic placement', + computingRes:'Computing resource', + automatic:'automatic', + customize:'customize', + bindRes:'Bind resources', + modeMig:'Mode of migration', + shutDownTips:'After the migration, the vCenter cloud server is automatically shut down', + stopTips:'After the migration is complete, the original VM is automatically stopped', + startMoving:'Start after moving in', + addNicTips:'If no NIC is added, add nics as required', + nic:'Network card', + phyTips:'The physical cluster cannot be empty', + storageTips:'The storage location cannot be empty', + nicTips:'The NIC specifications cannot be empty', + offlineMig:'The offline migration is submitted successfully. Check the progress on the task console', + } +} diff --git a/src/assets/common/lang/en/imageMgr.js b/src/assets/common/lang/en/imageMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..430bc1ef43225c4b6d16f86ad458bc12d84f643a --- /dev/null +++ b/src/assets/common/lang/en/imageMgr.js @@ -0,0 +1,75 @@ +// imageMgr 镜像管理 +export default { + imageMgr: { + publicImage: 'public mirror', // 公共镜像 + sharedMirror: 'shared mirror', // 共享镜像 + privateImage: 'private image', // 私有镜像 + status: 'state', // 状态 + imageName: 'image name', // 镜像名称 + imageNameplac: 'Please enter a mirror name', // 请输入镜像名称 + imageRemark: 'describe', // 描述 + imageRemarkplac: 'Please enter a description', // 请输入描述 + imageSize: 'capacity', // 容量 + orgNameDesc: 'Organization', // 所属组织 + typeDesc: 'Image type', // 镜像类型 + imageFromDesc: 'source', // 来源 + zoneName: 'Availability Zone', // 可用区 + zoneNameplac: 'Please select an Availability Zone', // 可用区 + createTime: 'creation time', // 创建时间 + createUser: 'creator', // 创建者 + imageDownload: 'export image', // 导出镜像 + syncImage: 'Sync mirror', // 同步镜像 + syncImageSuccess: 'Sync mirroring succeeded', // 同步镜像 + deleteImage: 'delete', // 删除 + deleteConfirm: 'OK to delete the image?', // 确定删除该镜像? + deletebatchConfirm: 'OK to delete the selected image?', // 确定删除所选镜像? + deleteSuccess: 'Mirror deleted successfully!', // 删除镜像成功! + tosharedImage: 'Convert to shared image', // 转为共享镜像 + topublicMirror: 'Convert to public mirror', // 转为公共镜像 + editImage: 'Edit image', // 编辑镜像 + editImageSuccess: 'Edit image successfully!', // 编辑镜像成功! + makeImage: 'make a mirror', // 制作镜像 + makeImageSuccess: 'Created mirror successfully!', // 制作镜像成功! + uploadImage: 'upload image', // 上传镜像 + orgName: 'organize', // 组织 + orgNameplac: 'Please select an organization', // 请选择组织 + imageupload: 'Upload local image files to KCP cloud platform', // 上传本地镜像文件到KCP云平台 + fileName: 'Upload local image files to KCP cloud platform', // 选择镜像 + fileNameplac: 'Please select an image file!', // 请选择镜像文件! + uploadFileFormat: 'Upload files can only be in .iso, .gvm format!', // 上传文件只能是 .iso、.gvm格式! + uploadFileSize: 'Upload file size cannot exceed 50GB!', // 上传文件大小不能超过 50GB! + uploadingFile: 'uploading file', // 正在上传文件: + notCloseThisPage: 'please do not close this page', // ,请不要关闭此页面 + filetatalSize: 'total file size', // ,请不要关闭此页面 + uploaded: 'uploaded', // ,请不要关闭此页面 + uploadSpeed: 'upload speed', // 上传速度 + timeSpent: 'time spent', // 已花费时间 + timeRemaining: 'estimated time remaining', // 预计剩余时间 + cancelUpload: 'cancel upload', // 取消上传 + imgstatus: { + NORMAL: 'normal', // 正常 + ERROR: 'abnormal', // 异常 + SYNCING: 'synchronizing', // 同步中 + }, + imageFrom: { + UPLOAD: 'upload', // 上传 + MACHINE_MAKE: 'Cloud server production', // 云服务器制作 + SHARE_CHANGE: 'Shared image conversion', // 共享镜像转换 + PRIVATE_CHANGE: 'Private image conversion', // 私有镜像转换 + }, + imageActionList: { + IMAGE_UPLOAD: 'upload image', // 上传镜像 + IMAGE_SYNC: 'mirror sync', // 镜像同步 + IMAGE_CREATE_TEMPLATE: 'Generate template image', // 生成模板镜像 + IMAGE_MODIFY: 'Edit image', // 编辑镜像 + IMAGE_PRIVATE_TO_SHARE: 'Private image promoted to shared image', // 私有镜像提升为共享镜像 + IMAGE_SHARE_TO_PUBLIC: 'Shared image promoted to public image', // 共享镜像提升为公共镜像 + IMAGE_MAKE: 'make a mirror', // 制作镜像 + IMAGE_CREATE_GVM_FILE: 'Generate image file', // 生成镜像文件 + IMAGE_ERROR_SYNC: 'Mirror Abnormal - Sync Mirror', // 镜像异常-同步镜像 + IMAGE_DELETE: 'delete mirror', // 删除镜像 + IMAGE_DOWNLOAD: 'image download', // 镜像下载 + }, + makeImageMsg: 'The image only contains the system disk of the selected cloud server. In order to avoid incomplete image data, please migrate the important data of other disks of the cloud server to the system disk before making an image!', // 镜像中只包含选择云服务器的系统盘,为了避免镜像数据的不全面,请将云服务器的其他磁盘的重要数据迁移到系统盘中再来制作镜像! + } +} \ No newline at end of file diff --git a/src/assets/common/lang/en/index.js b/src/assets/common/lang/en/index.js new file mode 100644 index 0000000000000000000000000000000000000000..fe13f2b7b89f90382d4ef58c6c3bda797599b655 --- /dev/null +++ b/src/assets/common/lang/en/index.js @@ -0,0 +1,28 @@ +import common from './common.js' +import authorityMgr from './authorityMgr.js' +import resourceMgr from './resourceMgr.js' +import monitorMgr from './monitorMgr' +import alarmevents from './alarmevents' +import serverVirtualization from './serverVirtualization' +import operateMgr from './operateMgr.js' +import imageMgr from './imageMgr.js' +import operateLog from './operateLog.js' +import transferMgr from './transferMgr.js' +import taskcenter from './taskcenter.js' +import externalCloud from './externalCloud.js' +import reliableCenter from './reliableCenter.js' +export default { + common,// 公共模块 + authorityMgr, //权限管理 + resourceMgr, // 资源管理 + ...monitorMgr, // 监控 + ...alarmevents, // 告警事件 + ...serverVirtualization, // kcp及自服务云服务器详情-操作日志,参考mc将任务详情,和失败原因,进行国际化转移 + ...operateMgr, // 操作 + ...imageMgr, // 镜像管理 + ...operateLog, // 操作日志 + ...transferMgr, // 云服务器转移 + ...taskcenter, // 任务中心 + externalCloud,//外部云 + reliableCenter, +} \ No newline at end of file diff --git a/src/assets/common/lang/en/monitorMgr.js b/src/assets/common/lang/en/monitorMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..c23fbb16df66a2ad2ce065bfcb4008738adb7a5f --- /dev/null +++ b/src/assets/common/lang/en/monitorMgr.js @@ -0,0 +1,87 @@ +export default { + /** ****************** 日志告警—服务器事件 *********************************/ + monitoring: { + evtSeverity: { + ALL: 'All Levels', + INFO: 'Info', + WARN: 'Warning', + ERROR: 'Error' + }, + event: { + type: { + ALL: 'All Types', + SERVER_ONLINE: 'Server Online', + SERVER_OFFLINE: 'Server Offline', + SERVER_STATUS: 'Server Status', + SERVER_KSVD_START: 'System Services Start', + SERVER_KSVD_STOP: 'System Services Stop', + SERVER_KSVD_MSG: 'System Message', + CM_ACTIVE: 'Cluster Master Active', + CM_STANDBY: 'Cluster Master Standby', + DBMONITOR_OUT_SYNC: 'DBMonitor Touch Long', + MC_SERVICE_ALERT: 'MC Service Alert', + SESSION_MIGRATE: 'Session Migration', + KSVDCMD_RESTART: 'ksvd-cmd daemon restart', + KSVDCMD_DOWN: 'ksvd-cmd daemon down', + KSVDMPCD_RESTART: 'ksvdmpcd daemon restart', + KSVDMPCD_DOWN: 'ksvdmpcd daemon down', + KSVDSMARTD_RESTART: 'ksvdsmartd daemon restart', + KSVDSMARTD_DOWN: 'ksvdsmartd daemon down', + KSVDBRANCHD_RESTART: 'ksvdbranchd daemon restart', + KSVDBRANCHD_DOWN: 'ksvdbranchd daemon down', + DHCPD_RESTART: 'dhcpd daemon restart', + DHCPD_DOWN: 'dhcpd daemon down', + KSVDUDPD_RESTART: 'ksvdudp daemon restart', + KSVDUDPD_DOWN: 'ksvdudp daemon down', + KSVDP2P_RESTART: 'ksvdp2p daemon restart', + KSVDP2P_DOWN: 'ksvdp2p daemon down', + KSVDCACHEIO_RESTART: 'ksvdcacheio daemon restart', + KSVDCACHEIO_DOWN: 'ksvdcacheio daemon down', + KSVD_NETD_RESTART: 'Ksvdnetd process restart', + KSVD_NETD_DOWN: 'ksvdnetd process down', + KSVD_DPM_WAKEUP: 'dpm wake up', + KSVD_DPM_POWEROFF: 'dpm power off', + + VITUALSERVER_START: 'virtual server start', + VITUALSERVER_SHUTDOWN: 'virtual server shutdown', + VITUALSERVER_INSTALL: 'virtual server install', + VITUALSERVER_REBOOT: 'virtual server reboot', + VITUALSERVER_FORCEREBOOT: 'force restart', + VITUALSERVER_SUSPEND: 'virtual server suspend', + VITUALSERVER_WAKEUP: 'virtual server wake up', + VITUALSERVER_DELETE: 'virtual server delete', + VITUALSERVER_ABORT: 'virtual server force shut down', + VIRTUALSERVER_ERROR: 'error', + VIRTUALSERVER_WARN: 'warning', + VITUALSERVER_IMAGE: 'virtual servercreate Image', + VITUALSERVER_CLONEIMAGE: 'virtual server clone create Image', + VIRTUALSERVER_INSTALL_ERROR: 'Installation failed', + VIRTUALSERVER_CONNECT_STATUS: 'VNC connection', + VIRTUALSERVER_ONLINE_ERROR: 'Online editing failed', + VIRTUALSERVER_CLONE_VM: 'Clone Cloud Server', + VIRTUALSERVER_DYNAMIC_ADD: 'virtualserver dynamic add', + VIRTUALSERVER_KYLINTOOL: 'qga status', + VIRTUALSERVER_KSVDTOOL_EVENT: 'Set IP/Username/Password', + } + }, + serverEvtMap: { + severity: 'Severity', // 严重性 + desktopName: 'Cloud Server', // 云服务器名称 + type: 'Type', // 类型 + username: 'User', // 用户 + hostname: 'Run Host', // 运行主机 + timestamp: 'Date', // 日期 + info: 'Info', // 信息 + server: 'Server', // 服务器 + mutableTags: 'Sesource', // 资源 + }, + alarmEvtMap: { + severity: 'Alarm level', + date: 'Warning time', + type: 'Alert Name', + objectName: 'Alert object', + objectType: 'Object Type', + info: 'Info' + }, + } +} \ No newline at end of file diff --git a/src/assets/common/lang/en/operateLog.js b/src/assets/common/lang/en/operateLog.js new file mode 100644 index 0000000000000000000000000000000000000000..aef892c2c58d55369bf8b817443265ca11cae1a3 --- /dev/null +++ b/src/assets/common/lang/en/operateLog.js @@ -0,0 +1,17 @@ +// operateLog 操作日志 +export default { + operateLog: { + logStatus: { + SUCCESS: "success", + FAIL: "fail", + RUNNING: "in execution", + }, + logType: { + IMAGE: "Image management", + CLUSTER: "Cluster management", + VDC: "VDC management", + ZONE: "Availability Zone Management", + ORG: "Organizational management", + }, + } +} \ No newline at end of file diff --git a/src/assets/common/lang/en/operateMgr.js b/src/assets/common/lang/en/operateMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..1dfc8c6e2883ba7fdda28109d1591f59136deb3f --- /dev/null +++ b/src/assets/common/lang/en/operateMgr.js @@ -0,0 +1,150 @@ +/** ****************** 操作 ******************************* **/ +export default { + + workOrder: { + choseRole:'choose role', + workOrderId: 'Ticket ID', // 工单ID + applyUser: 'applicant', // 申请人 + organizationName: 'Organization', // 所属组织 + typeDesc: 'Ticket type', // 工单类型 + typeDescplaceholder: 'Please select a ticket type', // 请选择工单类型 + type: 'type', // 类型 + target: 'Ticket object', // 工单对象 + statusDesc: 'state', // 状态 + status: 'work order status', // 工单状态 + statusplaceholder: 'Please select a ticket status', // 请选择工单状态 + applyReason: 'Reason for Application', // 申请原因 + auditOpinion: 'Feedback', // 反馈意见 + applyTime: 'application time', // 申请时间 + auditTime: 'processing time', // 处理时间 + reviewComments: 'Audit opinion', // 审核意见 + commentsNotempty: 'Review comments cannot be empty', // 审核意见不能为空 + commentsspecialChar: 'Review comments cannot contain special characters', // 审核意见不能出现特殊字符 + statusOptions: + { + ALL: "all", + + WAIT_CHECK: "pending review", + + CHECK_PASS: "Review passed", + + CHECK_NO_PASS: "rejected", + }, + + orderTypeOptions: + { + ALL: "all", + + REGISTER_USER: "Register an account", + + MODIFY_USER: "Modify account", + + APPLY_SERVERVM: "Apply for cloud server", + + MODIFY_SERVERVM: "Change cloud server", + + DEFERRED_SERVERVM: "Deferred cloud server", + + MODIFY_VDC: "Change VDC resources", + + }, + ipSet: { + ipBindMac: 'IP/MAC binding', // IP/MAC绑定 + ip: 'IP address', // IP地址 + ipNotNull: 'IP address cannot be empty', // IP地址不能为空 + ipWran: 'IP address entered incorrectly', // IP地址不能为空 + manualSetIp: 'Set IP manually', // 手动设置IP + mask: 'subnet mask', // 子网掩码 + maskNotNull: 'Subnet mask cannot be empty', // 子网掩码不能为空 + maskWran: 'Subnet mask entered incorrectly', // 子网掩码输入有误 + gw: 'default gateway', // 默认网关 + gwWran: 'Gateway input is incorrect', // 网关输入有误 + dns1: 'First DNS', // 首先DNS + dns1Wran: 'Incorrect preferred DNS entry', // 首选DNS输入有误 + dns2: 'Backup DNS', // 备先DNS + dns2Wran: 'Incorrect alternate DNS input', // 备用DNS输入有误 + ipMethod: 'ip method', // ip方式 + automaticDHCP: 'Automatic DHCP', // 自动DHCP + auto: 'automatic', // 自动 + manual: 'manual', // 手动 + tooltip: 'The cloud server does not have the QGA tool installed, and the manual setting does not take effect', // 云服务器未安装QGA工具, 手动设置不生效 + }, + vdcstatus: 'state', // 状态 + oldResouse: 'original source', // 原始资源 + applyResouse: 'Application Resources', // 申请资源 + realResouse: 'Audit resources', // 审核资源 + auditionUser: 'Inspector', // 审核者 + auditionTime: 'Review time', // 审核时间 + deadlineTypeDesc: 'Expiration processing', // 到期处理 + reason: 'reason', // 原因 + mobile: 'phone number', // 手机号 + osMachine: 'operating system', // 操作系统 + posMachine: 'Please select an operating system', // 请选择操作系统 + architecture: 'Architecture', // 架构 + parchitecture: 'Please select a schema', // 请选择架构 + specification: 'Specification', // 规格 + deadLineTime: 'Expire date', // 到期时间 + howtocreate: 'how to create', // 创建方式 + clusterName: 'owning cluster', // 所属集群 + iso: 'mirror', // 镜像 + selectiso: 'Choose an ISO image', // 选择ISO镜像 + isoLabel: 'ISO image name', // ISO镜像名称 + templateName: 'template name', // 模板名称 + applyNum: 'number of applications', // 申请个数 + description: 'description', // 描述 + useMonth: 'usage time', // 使用时间 + useMonthUnit: 'month', // 个月 + oldDeadlineTime: 'original expiry time', // 原到期时间 + newDeadlineTime: 'Delay time', // 延期时间 + realName: 'actual name', // 真实姓名 + newRealName: 'new real name', // 新真实姓名 + pwd: 'password', // 密码 + serverClusterType: 'computing resources', // 计算资源 + serverClusterTypeObj: { + CUSTOM: 'customize', + BIND_RESOURCE: 'bind resources', + AUTO: 'automatic' + }, + pselectCluster: 'Please select a host', // 请选择主机 + pselectTagNames: 'Please bind the resource', // 请绑定资源 + passapplyservervm: 'Apply for cloud server audit', // 申请云服务器审核 + workorderpass: 'examination passed', // 审核通过 + passmodifyservervm: 'Change cloud server audit', // 变更云服务器审核 + aliasName: 'name', // 名称 + aliasNameNotNull: 'Name is required', // 名称不能为空 + aliasNameLength: 'Name length should be controlled between 6 ~ 32 characters', // 名称长度应控制在 6 ~ 32 个字符 + serverNum: 'quantity', // 数量 + serverNumNotNull: 'The number of applications cannot be empty', // 申请个数不能为空 + serverNumIsoRange: 'The number of applications should be controlled within the range of 1 to 4', // 申请个数应控制在 1 ~ 4 范围 + serverNumRange: 'The number of applications should be controlled in the range of 1 ~ 100', // 申请个数应控制在 1 ~ 100 范围 + servertemplate: 'template', // 模板 + systemType: 'type', // 类型 + cloneType: 'create type', // 创建类型 + autoConfiguration: 'automatic placement', // 自动安置 + autoConfigurationOn: 'on', // 自动安置开 + autoConfigurationOff: 'close', // 自动安置关 + storageLocation: 'storage location', // 存储位置 + placstorageLocation: 'Please select a storage location', // 请选择存储位置 + serverVmType: { + ISO: 'ISO image', // ISO镜像 + TEMPLATE: 'template', // 模板 + }, + pserverVmTypeISO: 'Select or search for an ISO image', // 选择或搜索ISO镜像 + sureApproved: "Are you sure the review is passed?", // 确定审核通过? + reviewRejection: "Review rejection", // 审核拒绝 + rejectOpinion: "reject opinion", // 拒绝意见 + chooseComputingRes: "Choose computing resources", // 选择计算资源 + serverAddr: "IP address", // IP地址 + serverArch: "Architecture", // 架构 + serverType: "type", // 类型 + cpuModelName: "CPU type", // CPU类型 + cpuUtil: "CPU", // CPU + memUtil: "RAM", // 内存 + currentSessions: "run cloud server", // 运行云服务器 + loadaverage: "load average", // 平均负载 + pchooseComputingRes: "Please check at least one computing resource node", // 请至少勾选一个计算资源节点 + chooseNetworkInfo: "Select network information", // 选择网络信息 + pchooseNetworkInfo: "Please check at least one network configuration", // 请至少勾选一个网络配置 + + }, +} diff --git a/src/assets/common/lang/en/reliableCenter.js b/src/assets/common/lang/en/reliableCenter.js new file mode 100644 index 0000000000000000000000000000000000000000..baa4746e932d1b657d0078d29cc0287705fcaddf --- /dev/null +++ b/src/assets/common/lang/en/reliableCenter.js @@ -0,0 +1,356 @@ +export default { + drStragtegyInfor:{ + Monday: 'Monday', + Tuesday: 'Tuesday', + Wednesday: 'Wednesday', + Thurday: 'Thurday', + Friday: 'Friday', + Saturday: 'Saturday', + Sunday: 'Sunday', + }, + weekObj: { + MONDAY: "Monday", + TUESDAY: "Tuesday", + WEDNESDAY: "Wednesday", + THURSDAY: "Thurday", + FRIDAY: "Friday", + STAURDAY: "Saturday", + SUNDAY: "Sunday", + }, + configurationGuide:' Configuration guide:', + configurationGuideStep1:'1. Install a new KCP and set the IP address', + configurationGuideStep2:'2. Add the new KCP as the standby KCP. The system automatically synchronizes the configuration and data of the active KCP to this node', + configurationGuideStep3:'3. If the active KCP is faulty, log in to the IP address of the standby KCP and switch the standby KCP to the active KCP', + nodeIp:'Node IP', + password:'password', + addStandyAdd:'The standby KCP is added', + standySlaveShip:'Master/slave relationship', + Switch:'Switch to primary site', + undeleted:'undeleted', + promotedTips:'This operation promotes the standby KCP node to the active node. Do you want to continue?', + promotedSuccess:'The active node is promoted successfully. Procedure', + cancelPromoted:'Cancelled promotion', + delNode:'This operation will delete the standby KCP node. Decide whether to continue', + masterNoe:'Master (current access)', + slave:'slave', + main:'The main', + slaveNow:'slave (current access)', + selectNic:'Select NIC specifications', + net2:'Two-layer network', + net3:'Three-layer network', + netName:'Network name', + netDes:'Network description', + netHie:'Network hierarchy', + nicType:'Nic type', + netType:'Network type', + addPool:'Address pool', + virSwitch:'Virtual switch', + primarySite:'Primary site recovery point list', + secSiteList:'Secondary site recovery point list', + fullBackup:'Full backup', + incBackup:'Incremental backup', + secSite:'Secondary site', + primarySite:'Primary site', + synTo:'Synchronize to', + backName:'Backup file name', + backPath:'Backup path', + backMode:'Backup mode', + backSize:'Backup size', + backComTime:'Backup completion time', + selectRePoint:'Select a recovery point', + mainSlaveSite:'Dr Data at the primary and secondary sites', + disasterPolicy:'Disaster recovery policy', + siteManage:'Site management', + addSite:'Add a site', + siteName:'Site name', + addSiteSuccess:'add Site Success', + linkManage:'Link management', + delSiteTips:'The deletion cannot be restored. Exercise caution when performing this operation', + delSiteTite:'Are you sure to delete data?', + remark:'remark', + + createDrPolicy:'Create a Dr Policy', + executeDrPolicy:'Execute the Dr Policy immediately', + enable:'enable', + disable:'disable', + connectivityTest:'Connectivity test', + probeObj:'Probe object', + detectionRes:'Detection result', + underDete:'Under detection', + probObjectCom:'The probe object communicates properly', + communicationError:'The communication between the probe object is abnormal. Check the network and try again', + linkDetection:'Link detection', + retest:'retest', + addLink:'Add link', + limited:'limited', + unlimited:'unlimited', + edit:'edit', + conTest:'Connectivity test', + delete:'delete', + site1:'Site 1', + site2:'Site 2', + linkStatusSite:'Link status of the site', + transRateLim:'Transmission rate limit', + normal:'normal', + anomaly:'anomaly', + editLink:'Edit link', + sectionDescri:'This section describes how to configure IP addresses for the management nodes of sites and sites so that data can be transmitted between sites.', + linkRestr:'Link broadband restriction', + configureDrIp:'Configure the Dr IP address', + communicationIpAddress:'The communication ip address cannot be empty', + enterNormalIp:'Please enter a normal ip address', + selectThePrimary:'Select the primary site and secondary site', + site1Tips:'Site 1 must not be empty', + site2Tips:'Site 2 must not be empty', + linkBroadBand:'The link broadband limit cannot be empty', + dataCommit:'Data commit, please close the window later', + linkEditSucc:'Link editing succeeded', + linkDete:'Link detection exception', + addLinkSuccess:'add Link Success', + + backupServerLoc: 'Backup server location', + backupServer: 'Backup server', + state: 'State', + totalCapacity: 'Total capacity', + availableSpace: 'Available space', + selectCloudServer: 'Select cloud server', + cloudServerSelected: 'selected', + clear: 'Clear', + noDataSelected: 'No data selected', + packetDataLoading: 'Packet data loading', + cloudServerName: 'Cloud server name', + description: 'Description', + createDrPolicy: 'Create DR policy', + executeDrPolicyImmediately: 'Execute DR policy immediately', + compressedTransmission: 'Compressed transmission', + uncompressedTransmission: 'Uncompressed transmission', + immediately: 'Immediately', + hour: 'Hour', + drPolicyName: 'DR policy name', + primarySite: 'Primary site', + secondarySite: 'Secondary site', + cloudServer: 'Cloud server', + primarySiteBackupLoc: 'Primary site backup location', + primarySiteBackupPeriod: 'Primary site backup period', + secondarySiteDrLoc: 'Secondary site DR location', + drTransmissionMode: 'DR transmission mode', + drPro: 'DR Pro', + enabledState: 'Enabled state', + nextDrTime: 'Next DR time', + enableConfirmation: 'Enable confirmation', + disableConfirmation: 'Disable confirmation', + deletionConfirmation: 'Deletion confirmation', + enabledSuccessfully: 'Enabled successfully', + disabledSuccessfully: 'Disabledsuccessfully', + hourlyBackup: 'Hourly backup', + dailyBackup: 'Daily backup', + everyDay: 'Every day', + startTime: 'Start time', + endTime: 'End time', + weeklyBackup: 'Weekly backup', + everyWeek: 'Every week', + executedSuccessfully: 'Executed successfully', + batchEnabledSuccessfully: 'Batch enabled successfully', + batchDisabledSuccessfully: 'Batch disabled successfully', + disabledStatusPolicySelected: 'Disabled status policy selected, cannot execute immediately', + enabledPolicyExists: 'Enabled policy exists, cannot start', + disabledStatusPolicyExists: 'Disabled status policy exists, cannot disable', + basicInfo: 'Basic information', + drConfig: 'DR configuration', + definiteInfo: 'Definite information', + choose: 'Choose', + schematicDiagram: 'Schematic diagram', + primarySiteLocalBackup: 'Primary site local backup', + backupLoc: 'Backup location', + pleaseEnter: 'Please enter', + backupFreq: 'Backup frequency', + day: 'Day', + weeks: 'Weeks', + backupCycle: 'Backup cycle', + backupPeriod: 'Backup period', + nextDay: 'Next day', + backupStartTime: 'Backup start time', + arbitraryPointInTime: 'Arbitrary point in time', + policyDuration: 'Policy duration', + singleServerTimeoutDuration: 'Single server timeout duration', + backupCopy: 'Backup copy', + secondarySiteRemoteDr: 'Secondary site remote DR', + drLocation: 'DR location', + drRpoPeriod: 'DR RPO period', + transmissionMode: 'Transmission mode', + dataSyncCompressed: 'Data sync compressed to improve transmission efficiency and reduce bandwidth consumption, but may consume more CPU resources. Please choose whether to enable based on bandwidth conditions.', + enterDrPolicyName: 'Enter DR policy name', + policyNameFormat: 'Supports 2-32 characters of Chinese, English, digits, and special characters', + selectPrimarySite: 'Select primary site', + selectSecondarySite: 'Select secondary site', + selectCloudServer: 'Select cloud server', + selectBackupLoc: 'Select backup location', + selectDrLoc: 'Select DR location', + selectStartTime: 'Select start time', + selectEndTime: 'Select end time', + selectBackupPeriod: 'Select backup period', + enterPolicyDuration: 'Enter policy duration', + enterSingleTimeout: 'Enter single timeout duration', + enterBackupCopies: 'Enter backup copies', + selectDrRpoPeriod: 'Select DR RPO period', + cloudServerName: 'Cloud server name', + cloudServerStatus: 'Cloud server status', + createDrPolicy: 'Create DR policy', + editDrPolicy: 'Edit DR policy', + policyCreationSucceeded: 'Policy creation succeeded', + policyModificationSucceeded: 'Policy modification succeeded', + enableConfirmation: 'Confirm enable this policy?', + disableConfirmation: 'Confirm disable this policy?', + deletionConfirmation: 'Confirm delete this policy?', + startTime: 'Start time', + primarySiteBackupMethod: 'primary Site Backup Method', + secondarySiteDrMethod: 'secondary Site Dr Method', + weeklyBackup: 'weekly Backup', + hourlyBackup: 'hourly Backup', + cloudServerList: 'Cloud server list', + cloudServerName: 'Cloud server name', + cloudServerStatus: 'Cloud server status', + drmRecoveryMethod: 'Disaster recovery method', + startPractice: 'Start practice', + endPractice: 'End practice', + practiceCloudServer: 'Practice cloud server', + practiceToSecondarySite: 'Practice to secondary site', + practiceRecoveryPoint: 'Practice recovery point', + selectPracticeRecoveryPoint: 'Select practice recovery point', + automatic: 'Automatic', + storageLocation: 'Storage location', + selectStorageLocation: 'Select storage location', + networkInterface: 'Network interface', + selectNetworkInterfaceData: 'Select network interface data', + drmSubmitSuccess: 'Disaster recovery practice submitted successfully, please check the progress in the task bar', + endDrmSubmitSuccess: 'End disaster recovery practice submitted successfully, please check the progress in the task bar', + notExist: 'Not exist', + rpoSyncing: 'RPO syncing', + deleting: 'Deleting', + allCloudServer: 'All cloud servers', + primarySiteRecovery: 'Primary site recovery', + secondarySiteRecovery: 'Secondary site recovery', + migrateToPrimarySite: 'Migrate to primary site', + differentialDetection: 'Differential detection', + primarySiteName: 'Primary site name', + primarySiteBackupNum: 'Primary site backup number', + primarySiteBackupTotalSize: 'Primary site backup total size', + primarySiteLatestRecoveryTime: 'Primary site latest recovery time', + primarySecondaryDataDiff: 'Primary and secondary site data difference', + secondarySiteName: 'Secondary site name', + secondarySiteBackupTotalSize: 'Secondary site backup total size', + secondarySiteBackupNum: 'Secondary site backup number', + secondarySiteLatestRecoveryTime: 'Secondary site latest recovery time', + cloudServerBackupDiffDetection: 'Cloud server backup differential detection', + prompt: 'Prompt', + confirm: 'Confirm', + cancel: 'Cancel', + cloudServerBackupDiffSubmitSuccess: 'Cloud server backup differential detection submitted successfully, please check the progress in the task bar', + primarySiteRecoveryTaskSubmitSuccess: 'Primary site recovery task submitted successfully, please check the progress in the task center', + migrateToPrimarySiteTip: 'Note: After the migration, the cloud server at the secondary site will be immediately shut down, the latest data will be migrated to the primary site, and the cloud server will be automatically started at the primary site after the data migration is completed. There will be a short interruption in the service during this process. If an error occurs during the migration, the migration will be canceled and the cloud server at the secondary site will be restarted.', + migrateCloudServer: 'Migrate cloud server', + migrateSubmitSuccess: 'Migrate data submitted successfully, please check the progress in the task bar', + secondarySiteStatus: 'Secondary site status', + primarySiteStatus: 'Primary site status', + synchronizeBackupRecoveryPointTo: 'Sync backup recovery point to', + confirmSyncTo: 'Confirm sync to', + data: 'Data', + dataSyncSubmitSuccess: 'Data sync submitted successfully, please check the progress in the task bar', + plannedRecovery: 'Planned recovery (primary site must be online)', + disasterRecovery: 'Disaster recovery', + recoverCloudServer: 'Recover cloud server', + recoverToSecondarySite: 'Recover to secondary site', + recoveryPoint: 'Recovery point', + runningLocation: 'Running location', + plannedRecoverySubmitSuccess: 'Planned recovery submitted successfully, please check the progress in the task bar', + disasterRecoverySubmitSuccess: 'Disaster recovery submitted successfully, please check the progress in the task bar', + "DRTest": "Disaster Recovery Test", + "recoveryMethod": "Recovery Method", + "startTest": "Start Test", + "endTest": "End Test", + startDrNote:" Note: After the drill starts, the cloud server at the primary site shuts down immediately and the Dr Machine is automatically started at the secondary site." , + endDrNote:" Note: After the drill is complete, delete the Dr Machine and clear the Dr Data during the drill." , + endDrNote2:" Ending the drill will not affect cloud server services at the primary site ", + startTestNote: "Note: During scheduled recovery, the cloud server at the primary site will be shut down immediately and the latest data will be synchronized to the secondary site. After data synchronization is complete, the Dr Machine will be automatically started at the secondary site.", + startTestNote1: "There will be a brief interruption of service during this process." , + startTestNote2: "If an error occurs during the recovery, the recovery will be canceled and the primary site cloud server will be restarted." , + endTestNote: "Note: Pull up the Dr Machine at the secondary site immediately after disaster recovery. ", + endTestNote2: "Data that is not synchronized to the secondary site will be lost." , + "testServer": "Test Cloud Server", + "testToBackup": "Test to Backup Site", + "testRecoveryPoint": "Test Recovery Point", + "chooseRecoveryPoint": "Please choose a recovery point for the test", + "auto": "Auto", + "storageLocation": "Storage Location", + "chooseStorageLocation": "Please choose a storage location", + "networkInterface": "Network Interface", + "chooseNetworkInterfaceData": "Please choose network interface data", + "testSubmitted": "The disaster recovery test has been submitted successfully. Please check the progress in the task list.", + "endTestSubmitted": "The end of the disaster recovery test has been submitted successfully. Please check the progress in the tasklist.", + "notExist": "Does not exist", + "RPOSyncing": "RPO syncing", + "deleting": "Deleting", + "allServers": "All Cloud Servers", + "mainSiteDRRecovery": "Primary Site Disaster Recovery Recovery", + "backupSiteDRRecovery": "Backup Site Disaster Recovery Recovery", + "revertToMainSite": "Revert to Primary Site", + "differencesCheck": "Differences Check", + "mainSiteName": "Primary Site Name", + "mainSiteBackupCount": "Number of Backups at Primary Site", + "mainSiteBackupSize": "Total Backup Data Size at Primary Site", + "mainSiteLastRecoveryTime": "Primary Site Last Recovery Time", + "mainBackupDifferences": "Data Differences between Primary and Backup Sites", + "backupSiteName": "Backup Site Name", + "backupSiteBackupSize": "Total Backup Data Size at Backup Site", + "backupSiteBackupCount": "Number of Backups at Backup Site", + "backupSiteLastRecoveryTime": "Backup Site Last Recovery Time", + "performBackupCheck": "Perform backup file differences check between the primary and backup sites?", + "prompt": "Prompt", + "confirm": "Confirm", + "cancel": "Cancel", + "backupCheckSubmitted": "The submission of the backup file differences check has been successful. Please check the progress in the task list.", + "mainSiteDRRecoverySubmitted": "The submission of the primary site disaster recovery recovery task has been successful. Please check the progress in the task list.", + "revertNote": "Note: After the revert, the cloud server at the backup site will immediately shut down, and the latest data will be reverted to the primary site. After the data is reverted, the cloud server will be automatically started at the primary site. During this process, there will be a brief interruption of the business. If an error occurs during the revert, the revert will be canceled, and the cloud server at the backup site will be restarted.", + "revertServer": "Revert Cloud Server", + "revertSubmitted": "The revert data submission has been successful. Please check the progress in the task list.", + "backupSiteStatus": "Backup Site Status", + "mainSiteStatus": "Primary Site Status", + "syncTo": "Sync and overwrite the backup recovery point to", + "confirmSyncTo": "Confirm to sync to", + "data": "Data", + "syncSubmitted": "The data synchronization submission has been successful. Please check the progress in the task list.", + "plannedRecovery": "Planned Recovery (Primary Site Must Be Online)", + "DRRecovery": "Disaster Recovery Recovery", + "recoveryServer": "Recovery Cloud Server", + "recoveryToBackup": "Recovery to BackupSite", + "recoveryPoint": "Recovery Point", + "runLocation": "Run Location", + "plannedRecoverySubmitted": "The submission of the planned backup recovery has been successful. Please check the progress in the task list.", + "DRRecoverySubmitted": "The submission of the disaster recovery backup recovery has been successful. Please check the progress in the task list.", + NORMAL: "Protected", + PLAN_RECOVER: "Planned Recovery", + PLAN_RECOVERING: "Planned Recovery in Progress", + FAIL_RECOVER: "Failover Recovery", + FAIL_RECOVERING: "Failover Recovery in Progress", + BACKUPING: "Backing Up", + DELETEING: "Deleting Backup Files", + PRONG: "Backing Up (pro sync)", + START_DRILL: "Starting Disaster Recovery Drill", + DRILL: "Disaster Recovery Drill in Progress", + END_DRILL: "Ending Disaster Recovery Drill", + MOVE_BACK: "Data Reversion in Progress", + MASTER_RECOVERING: "Primary Site Recovery in Progress", + backupFileStatus:'backup File Status', + chooseMainRecoveryPoint:'choose recover point', + bdStatus:'Disaster recovery status', + backStatus:'backup status', + will:'will', + runnowTips: 'Due to the high resource usage of remote disaster recovery, please operate with caution', + runnowTitleTips: 'Execute disaster recovery strategy immediately for"{name}"?', + serverSearchTips:'Server Name/IP/UUID/Label', + PRONG:'Pro synchronization in progress', + HourBackupTips: 'The first backup is a full backup, and after a successful backup, the backup cycle task is executed.', + DayBackupTips: 'After exceeding the duration, the virtual machine being backed up will continue to be backed up, and virtual machines that have not yet started backup will be backed up first in the next backup cycle', + WeekBackupTips: 'After exceeding the duration, the virtual machine being backed up will continue to be backed up, and virtual machines that have not yet started backup will be backed up first in the next backup cycle', + SingleBackupTimeOut: 'The single backup timeout time refers to the backup timeout time of a single cloud server in the backup strategy. After exceeding the timeout period, the cloud server recognizes it as timeout and executes the next cloud server backup in the backup strategy' +} diff --git a/src/assets/common/lang/en/resourceMgr.js b/src/assets/common/lang/en/resourceMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..f0df437a7137f9ecb636d6962a4c7d5d840c62ee --- /dev/null +++ b/src/assets/common/lang/en/resourceMgr.js @@ -0,0 +1,439 @@ +// 资源管理 resourceMgr +export default { + // 物理集群 + allcluster: "All clusters", // 全部集群 + plccluster: "Please select a cluster", // 请选择集群 + clusterName: "cluster name", // 集群名称 + loginCluster: "Log in to the cluster background", // 登入集群后台 + loginVcenter: "Log in to vCenter", // 登入Vcenter + clusterNameplaceholder: "Please enter a cluster name", // 请输入集群名称 + clusterStatus: "cluster status", // 集群状态 + BMC_IPaddress: "BMC IP Address", + clusterStatusObj: { + ONLINE: "online", // "在线", + OFFLINE: "offline", // "离线", + EXCEPTION: "abnormal", // "异常", + }, + clusterRemark: "describe", // 描述 + zoneName: "Availability Zone", // 可用区 + clusterUrl: "Cluster URL", // 集群URL + clusterUrlWranMsg: "ip or port number entered incorrectly", // ip或端口号输入有误 + clusterUrlIpWranMsg: "wrong ip address", // ip地址输入有误 + clusterUrlPortWranMsg: "Port number entered incorrectly", // 端口号输入有误 + clusterUrlprotocol: "protocol", // 协议 + clusterUrlprotNum: "The port number", // 端口号 + clusterUrlContent: + "Enter the IP of all CM/CM_VDI nodes in http or https format", // 输入所有CM/CM_VDI节点的IP,格式http或https + clustertype: "Cluster type", // 集群类型 + clustertypeplaceholder: "Please select a cluster type", // 集群类型 + clustercpurate: "CPU utilization", // CPU利用率 + clustermemoryrate: "memory utilization", // 内存利用率 + clusterstoragerate: "storage utilization", // 存储利用率 + toCluster: "login", // 登入 + + clusterAdd: "Add a physical cluster", // 添加物理集群 + clusterAddtSussess: "Created physical cluster successfully!", // 添加物理集群 + clusterEdit: "Edit physical clusters", // 编辑物理集群 + clusterEditSussess: "Editing physical cluster succeeded!", // 编辑物理集群 + + clusterEdleteConfirm: + "Are you sure you want to delete this physical cluster?", // 确定删除该物理集群吗? + clusterEdleteSuccess: "Delete physical cluster successfully!", // 删除物理集群成功! + clusterBaseInfo: "Basic Information", // 基本信息 + clusterStorageInfo: "store information", // 存储信息 + clusterSettingInfo: "setting information", // 存储信息 + clusterConfirmInfo: "Confirm information", // 确认信息 + + clusterAdminName: "username", // 用户名 + clusterAdmin: "cluster administrator", // 集群管理员 + clusterAdminPasswordplac: "Please enter the cluster administrator password", // 请输入集群管理员密码 + clusterAdminPassword: "password", // 密码 + clusterEditPassword: "change Password", // 修改密码 + rootPassword: "root password", // root密码 + rootPasswordplac: "Please enter root password", // 请输入root密码 + + clusterStorage: "storage", // 存储 + clusterStorageName: "name", // 名称 + storageName: "storage name", // 存储名称 + storageType: "storage type", // 存储类型 + storageStatus: "storage state", // 存储状态 + storageUsage: "storage use", // 存储用途 + storagetotalSize: "total capacity", // 存储用途 + storageUsedSize: "Available capacity", // 存储用途 + storageUserate: "Utilization", // 存储用途 + clusterSummary: "summary", // 概要 + clusterPhysicalHost: "physical host", // 物理主机 + clusterVersion: "Cluster version", // 集群版本 + clusterCeateTime: "add time", // 添加时间 + cpuModelName: "name", // 名称 + cpuModelstatus: "state", // 状态 + cpuModelType: "CPU type", // CPU类型 + cpuModelserverArch: "server architecture", // 服务器架构 + cpuModelserverType: "server type", // 服务器类型 + cpuModelcpurate: "CPU utilization", // CPU利用率 + cpuModelmemoryrate: "memory utilization", // 内存利用率 + + zoneNameDesc: "Availability Zone Name", // 可用区名称 + zoneRemark: "describe", // 描述 + zoneType: "Resource Type", // 资源类型 + zoneCPUallocationratio: "CPU allocation ratio", // CPU分配比 + zoneMemoryallocationratio: "memory allocation ratio", // 内存分配比 + zoneStorageallocationratio: "storage allocation ratio", // 存储分配比 + cpuTotal: "Total CPU capacity", // CPU总容量 + memTotal: "total memory capacity", // 内存总容量 + storageTotal: "total storage capacity", // 存储总容量 + zoneAdd: "Add Availability Zone", // 添加可用区 + zoneAddSuccess: "Created Availability Zone Successfully!", // 创建可用区成功! + zoneEdit: "Edit Availability Zone", // 编辑可用区 + zoneEditSuccess: "Edit Availability Zone Successfully!", // 编辑可用区成功! + zoneDleteConfirm: "Are you sure you want to delete this Availability Zone??", // 确定删除该可用区吗? + zoneDleteSuccess: "Deleted Availability Zone Successfully!", //删除可用区成功! + + zoneBaseInfo: "Basic Information", // 基本信息 + zoneCluster: "Associated clusters", // 存储信息 + zoneConfirmInfo: "Confirm information", // 确认信息 + zoneNoClusterTo: "Don't have a suitable physical cluster? Go to", // 没有合适的物理集群? 前往 + zoneClusterDesc: "physical cluster", // 物理集群 + zoneSummary: "summary", // 概要 + zoneCreateTime: "add time", // 添加时间 + + vdcName: "name", // 名称 + vdcparentName: "superior vdc", // 上级vdc + vdcorgName: "organization", // 组织机构 + vdcnetworkNum: "The internet", // 网络 + vdcCPUallocationratio: "CPU allocation ratio", // CPU分配比 + vdcmemoryallocationratio: "memory allocation ratio", // 内存分配比 + vdcStorageallocationratio: "storage allocation ratio", // 存储分配比 + vdcAdd: "Create VDC", // 创建虚拟数据中心 + vdcAddSuccess: "Create virtual data center successfully!", // 创建虚拟数据中心成功!' + vdcEdit: "Edit VDC", // 编辑虚拟数据中心 + vdcEditSuccess: "Edit VDC success!", // 编辑虚拟数据中心成功! + cdcDleteConfirm: "Are you sure you want to delete this VDC?", // 创建虚拟数据中心 + cdcDdleteSuccess: "Deleting this VDC succeeded!", // 删除该VDC成功! + vdcBaseInfo: "Basic Information", // 基本信息 + vdcResouse: "resource allocation", // 分配资源 + vdcConfirmInfo: "Confirm information", // 确认信息 + vdcArchitecture: "Architecture", // 架构 + vdcUsable: "available", // 可用 + vdcTotal: "total size", // 总大小 + vdcAllocationChild: "Subordinates assigned", // 总大小 + vdcClusterDesc: "physical cluster", // 物理集群 + vdcNetWorkDesc: "name", // 名称 + vdcallocationCpuEditMsg: + "The number of allocated CPUs cannot be greater than the number of available upper levels, and cannot be less than the number of allocated lower levels", // '分配CPU数不能大于上级可用数,并且不能小于已使用数' + vdcallocationCpuAddMsg: + "The number of allocated CPUs is a positive integer greater than 1 and less than the number of available CPUs", // '分配CPU数不能大于上级可用数,并且不能小于已使用数' + vdcallocationCpuMinMsg: + "The number of allocated CPUs cannot be less than the number of used CPUs", // '分配CPU数不能小于已使用数' + vdcallocationMemEditMsg: + "The number of allocated memory cannot be greater than the number of available upper levels, and cannot be less than the number of allocated lower levels", // '分配内存不能大于上级可用数,并且不能小于已使用数' + vdcallocationMemAddMsg: + "The number of allocated memory is a positive integer greater than 1 and less than the number of available memory", // '分配CPU数不能大于上级可用数,并且不能小于已使用数' + vdcallocationMemMinMsg: + "The number of allocated memory cannot be less than the number of used memory", // '分配内存数不能小于已使用数' + allocationStorageAddMsg: + "The allocated storage size is a positive integer greater than 1 and less than the amount of available storage", // 分配存储大小为大于1的正整数,且小于可用存储数 + allocationStorageEditMsg: + "The number of allocated storage cannot be greater than the number of available upper levels, and cannot be less than the number of allocated lower levels", // 分配存储数不能大于上级可用数,并且不能小于已使用数 + allocationStorageMinMsg: + "The number of allocated storage cannot be less than the number of used", // '分配存储数不能小于已使用数' + vdcNetWorkResouse: " Network resource information", // 网络资源信息 + vdcSummary: "summary", // 概要 + vdccreateTime: "add time", // 添加时间 + vdc: { + nomatchingVDC: "No matching VDC, go to", // 无匹配VDC,前往 No matching VDC, go to + bindVDC: "bind VDC", // 绑定VDC,前往 bind VDC + }, + vdcallocatedtooltip: + "Allocate resource quotas, which can exceed the total amount of resources", // 分配资源额度,其可超过资源总量 + vdcSupCanassigned: "Can be assigned by superiors", // 上级可分配 + firstvdcSupCanassigned: "total resources", // 资源总量 + vdcAllocateCPUused: + "The number of allocated CPUs should be greater than the number of used CPUs", // 分配CPU数应大于已使用CPU数 + vdcAllocateCPUequal: + "The number of allocated CPUs is a positive integer greater than or equal to 1", // 分配CPU数为大于等于1的正整数 + vdcAllocateMemused: + "The amount of allocated memory should be greater than the amount of used memory", // 分配内存数应大于已使用内存数 + vdcAllocateMemequal: + "The number of allocated memory is a positive integer greater than or equal to 1", // 分配内存数为大于等于1的正整数 + vdcAllocateStorageused: + "Allocated storage should be greater than used storage", // 分配存储数应大于已使用存储数 + vdcAllocateStorageequal: + "Allocate storage size as a positive integer greater than or equal to 1", // 分配存储大小为大于等于1的正整数 + vdcauditOpinion: "Reason for change", // 变更原因不能为空 + vdcauditOpinionEmpt: "Change reason cannot be empty", // 变更原因不能为空 + vdcauditOpinionspecialChar: + "The reason for change can only be a combination of Chinese, English and numbers", // 变更原因只能由中文、英文、数字组合 + vdcSubAssigned: "Subordinates assigned", // 已分配下级 + vdcThislevelUsed: "This level has been used", // 本级已使用 + surePowerOffTips: 'Confirm to shut down "{name}"?', + zonelist: "Availability Zone List", // 可用区列表 + zoneerror: "expired", // 已过期 + zonewarn: "Expiring soon", // 即将过期 + rootPasswordCantNull: "The root password cannot be empty", + bmcIpCantNull: "BMC IP cannot be empty", + bmcAccountCantNull: "BMC account cannot be empty", + start_servervm: "boot", // 开机 + shutdown_servervm: "shutdown", // 关机 + shutdownSucc: "Shut down successfully!", // 关机成功! + shutdownErr: "Shutdown failed!", // 关机失败! + hostIpCantNull: "Host management IP must not be empty", + deleteSuccess: "Delete Success", + shutdownTips: "Confirm to shut down the bare metal server '{name}'?", + shutdownManyTips: + "Confirm to shut down the choosen bare metal server '{name}'?", + restart_servervm: "reboot", // 重启 + restartSucc: "restarted successfully!", // 重启成功! + restartErr: "restart failed!", // 重启失败! + servervmmore: "More", // 更多 + batchAbort: "Force shutdown", // 强制关机 + batchForceReboot: "Force restart", // 强制重启 + batchDelete: "delete", // 删除 + deleteSucc: "successfully deleted!", // 删除成功! + deleteErr: "failed to delete!", // 删除失败! + batchstartSucc: "Batch boot successfully!", // 批量开机成功! + batchstartErr: "Batch boot failed!", // 批量开机失败! + batchcloseSucc: "Batch shutdown succeeded!", // 批量关机成功! + batchcloseErr: "Batch shutdown failed!", // 批量关机失败! + batchrebootSucc: "Batch restart succeeded!", // 批量重启成功! + batchrebootErr: "Batch restart failed!", // 批量重启失败! + batchDeleteSucc: "successfully deleted!", // 删除成功! + batchDeleteErr: "failed to delete!", // 删除失败! + deleteconfirmMsg: + "Are you sure you want to delete the selected cloud server?", // 确定要删除所选云服务器? + deleteconfirmTit: "delete", // 删除 + abortconfirmMsg: + "This operation may result in the loss of unsaved data in the cloud server. Do you want to confirm the forced shutdown?", // 此操作可能导致云服务器内尚未保存的数据丢失,是否确认强制关机? + abortconfirmTit: "Force shutdown", // 强制关机 + abortSucc: "Forced shutdown succeeded!", // 强制关机成功! + abortErr: "Forced shutdown failed!", // 强制关机失败! + addBareMetal: "Add Bare Metal Server", + editBareMetal: "edit Bare Metal Server", + BMCAccount: "BMC account", + nameCantNull: "Name cannot be empty", + forcedRestartconfirmMsg: + "This operation may result in the loss of unsaved data in the cloud server. Are you sure you want to force a restart?", // 此操作可能导致云服务器内尚未保存的数据丢失,是否确认强制关机? + forcedRestartconfirmTit: "Force restart", // 强制关机 + forcedRestartSucc: "Force restart succeeded!", // 强制重启成功! + forcedRestartErr: "Force restart failed!", // 强制重启失败! + openVnc: "console", // 控制台 + systemImg: "system", // 系统 + aliasName: "name", // 名称 + zonestatus: "condition", // 状态 + zonetaskStatus: "task status", // 任务状态 + zoneorgName: "Organization", // 所属组织 + zoneuserName: "owning user", // 所属用户 + zoneclusterName: "owning cluster", // 所属集群 + zoneip: "IP address", // IP地址 + zoneos: "operating system", // 操作系统 + architecture: "Architecture", // 操作系统 + zonecpu: "CPU(core)", // CPU(核) + zonememory: "Memory(GB)", // 内存(GB) + zonedisks: "Disk(GB)", // 磁盘(GB) + zoneusage: "Utilization", // 利用率 + zonecreateDate: "creation time", // 创建时间 + zonedeadlineTime: "Expiration time (days)", // 到期时间(天) + zonedescription: "describe", // 描述 + zoneAVAILABLE: "online", // 在线 + zoneOFFLINE: "offline", // 离线 + zoneINSTALLING: "Install", // 安装 + zoneCONNECTED: "connected", // 已连接 + zoneSUSPEND: "pause", // 暂停 + zoneOVERDUE: "expired", // 已过期 + zoneUNKNOWN: "other", // 其他 + startServerVm: "boot successfully", // 开机成功 + startServerVmErr: "Failed to boot", // 开机失败 + zoneLEISURE: "idle", // 空闲 + zoneNEW: "new", // 新建 + zonetaskINSTALLING: "installing", // 安装中 + zoneNEWFAILED: "New failed", // 新建失败 + zoneINSTALLFAILED: "installation failed", // 安装失败 + zoneCREATING: "creating", // 正在创建 + zoneSTARTING: "booting", // 正在开机 + zoneSHUTDOWNING: "shutting down", // 正在关机 + zoneREBOOTING: "restarting", // 正在重启 + zoneSUSPENDING: "Pausing", // 正在暂停 + zoneRESUMING: "waking up", // 正在唤醒 + zoneVOLUME_MIGRATING: "Storage migration in progress", // 正在存储迁移 + zoneHOST_MIGRATING: "Host migration in progress", // 正在主机迁移 + zoneBACKUP_RUNNING: "backing up", // 正在备份 + zoneBACKUP_RECOVERING: "Backup and restore", // 正在备份恢复 + zoneSNAPSHOT_RUNNING: "taking a snapshot", // 正在快照 + zoneSNAPSHOT_RECOVERING: "Snapshot restore in progress", // 正在快照恢复 + zoneIMPORTING: "importing", // 正在导入 + zoneEXPORTING: "exporting", // 正在导出 + zoneCLONING: "cloning", // 正在克隆 + zoneDISK_COPYING: "disk copying", // 正在磁盘复制 + zoneCREATE_KCP_IMAGE: "Template mirroring in progress", // 正在制作模板镜像 + zoneSNAPSHOT_RUNNING: "taking a snapshot", // 正在快照 + zoneOther: "other", // 其他 + type: "type", // 类型 + userName: "owner", // 所有者 + vncAddr: "VNC address", // VNC地址 + operationHours: "boot time", // 开机时间 + powerOnDate: "operation hours", // 运行时间 + selectCluster: "computing resources", // 计算资源 + runMachine: "run host", // 运行主机 + monitor: "monitor", // 监控 + log: "Task", // 任务 + summary: { + summary: "summary", // 概要 + type: "Alert Type", // 告警类型 + date: "Alarm time", // 告警时间 + severity: "Alarm level", // 告警等级 + info: "Alarm info", // 告警详情 + objectName: "Alert object", // 告警对象 + }, + network: { + network: "The internet", // 网络 + modelType: "NIC type", //网卡类型 + macAddress: "MAC address", // MAC地址 + ipAddress: "IP address", // IP地址 + numberOfQueues: "Number of queues", // Number of queues + networkName: "Network Name ", // Network name + virtualSwitch: "virtual switch ", // Virtual switch + portGroup: "Owning port group ", // Owning port group + pool: "address pool ", // Address pool + uploadSpend: "Downstream bandwidth (KB/S)", // Downstream bandwidth (KB/S) + downloadSpend: "Upstream bandwidth (KB/S)", // Upstream bandwidth (KB/S) + setUp: "Network Settings ", // network Settings + cluster: "physical cluster ", // physical cluster + selectcluster: "Please select physical cluster ", // Please select physical cluster + networkName: "Network Name ", // Network name + networkNameplac: "Please enter the network name ", // Please enter the network name + networkNametooltip: + "Support Chinese, English, digital, limited 2~18 words ", // Support Chinese, English, digital, limited 2~18 words + networkCard: "network card ", // network card + modelTypeplac: "Please select NIC type ", // Please select NIC type + addressPool: "address pool ", // Address pool + addressPoolplac: "Please select the address pool ", // Please select the address pool + virtualSwitch: "virtual switch ", // Virtual switch + virtualSwitchplac: "Please select a virtual switch ", // Please select a virtual switch + portGroup: "port group ", // Port group + portGroupplac: "Please select a port group ", // Please select a port group + permission: "security group ", // security group + permissionresouse: "Security group resource ", // Security group resource + effectivepermission: "Effectivesecurity group resource ", // Effectiveresource + networkNamelen: "Name length shall be 2 to 18 characters ", // Name length shall be 2 to 18 characters + securityPolicy: "Security policy ", // Security policy + virtualFirewallName: "Virtual Firewall ", // Virtual firewall + virtualFirewallNamePlc: "Please select Virtual Protection Wall ", // Please select virtual protection wall + networkHierarchy: "Networkhierarchy", + networkType: " Network type ", + none: " No ", + netSpecEditSuccess: "The network specifications were edited successfully", // + netSpecCreatSuccess: "The network specifications are created successfully", //The network specifications are created successfully + advacedSetting: "Advanced Settings", //Advanced Settings + auto: "automatic", //automatic + netSpecSec: "Secondary network", //Secondary network + netSpec3rd: "Three-level network", //Three-level network + netSpecName: " Network specification name ", + selectnetworkType: " Please select a network type ", + addNetTop1: " Don`t have the right network specifications? To ", + addNetTop2: + " Access to Physical Cluster Details -> Network -> Create Network Specifications", + }, + task: { + action: "operate", // 操作 + objName: "object name", // 对象名称 + operUser: "operating user", // 操作用户 + startTime: "Starting time", // 开始时间 + finishTime: "End Time", // 结束时间 + status: "condition", // 状态 + detail: "Details", // 详情 + reason: "reason", // 原因 + }, + bindTheVirtualFirewall: "Bind the virtual firewall", // 绑定虚拟防火墙 + virtualFirewallName: "name", // 名称 + virtualFirewallRemark: "illustrate", // 说明 + + statuscell: { + OVERDUE: "expired", // 已过期 + AVAILABLE: "online", // 在线 + CONNECTED: "connected", // 已连接 + INSTALLING: "Install", // 安装 + SUSPEND: "pause", // 暂停 + UNKNOWN: "other", // other + ONLINE: "online", // 在线 + OFFLINE: "offline", // 离线 + HALT: "abnormal", // 异常 + EXCEPTION: "abnormal", // 异常 + NORMAL: "normal", // 正常 + WARNING: "warn", // 警告 + ERROR: "mistake", // 错误 + POWERED_ON: "online", // 在线 + POWERED_OFF: "closure", // 关闭 + }, + + // VMware纳管 + vMwareMgr: { + name: "name", // 名称 + namePlac: "Name is required", // 名称不能为空 + remark: "describe", // 描述 + vcenterIp: "ip address", // ip地址 + vcenterPort: "port", // 端口 + vcenterAccount: "account", // 账号 + vcenterAdminName: "username", // 用户名 + vcenterAdminNameNot: "Username can not be empty", // 用户名不能为空 + vcenterAdminNamePlac: "Enter the vCenter administrator username", // 输入vCenter管理员用户名 + vcenterAdminPassword: "password", // 密码 + vcenterAdminPasswordNot: "password can not be blank", // 密码不能为空 + vcenterAdminPasswordPlac: "Please enter password", // 请输入密码 + addvMwareMgr: "Add VMware Managed", // 添加VMware纳管 + editvMwareMgr: "Edit VMware Managed", // 编辑VMware纳管 + type: "type", // 类型 + typePlac: "Type cannot be null", // 类型不能为空 + addSucc: "Added successfully", // 添加成功 + editSucc: "Edited successfully", // 编辑成功 + vmlist: "Cloud server list", // 云服务器列表 + powerStatus: "state", // 状态 + memory: "Memory", // 内存 + }, + storage: { + disk: "storage", // 存储 + diskName: "name", // 名称 + device: "storage type", // 存储类型 + targetBus: "storage controller", // 存储控制器 + diskCapacity: "capacity(G)", // 容量(G) + sourceFile: "Storage path", // 存储路径 + raw: "block device", // 块设备 + existed: "Local Disk", // 本地磁盘 + qcow2: "Local Disk", // 本地磁盘 + enable: "enable", + disable: "disable", + enableState: "Enabled state", + sure: "determine", + cancel: "cancel", + disTips: + "After the storage pool is disabled, the cloud server of the self-service user cannot use the storage pool", + enableTips: + "After the storage pool is enabled, the cloud servers of self-service users can use the storage pool", + success: "success", + }, + addSpec: "Add specifications", + delSpec: "Delete Specification", + layerNet2: "2-layer network", + layerNet3: "3-layer network", + delSpecTips: + "This operation will delete the network specification. Do you want to continue?", + delManySpecTips: + "This operation will batch delete the selected network specifications. Do you want to continue?", + prompt: "prompt", + tips: "tips", + pubNet: "Host Managed Public Network", + vpcNet: "VPC network", + netSeg: "Network segment", + editNetSpec: "Edit network specifications", + createNetSpec: "Create network specifications", + ipAcq: "IP acquisition", + selectNetLevel: "Please select a network level", + selectCardType: "Please select a network card type", + selectSecPolicy: "Please select a security policy", + selectVirFirewall: "Please select a virtual firewall", + selectThreeLayerNet: "Please select a three-layer network", + selectEffectGroup: + "Please select the security group that needs to be effective", + macPool: "MAC address pool", + netSepcDetail: "Network specification details", + autoDhcp: "Automatic (DHCP)", +}; diff --git a/src/assets/common/lang/en/serverVirtualization.js b/src/assets/common/lang/en/serverVirtualization.js new file mode 100644 index 0000000000000000000000000000000000000000..23c4ade7f3718a3d79e589fe6c70289366f57e33 --- /dev/null +++ b/src/assets/common/lang/en/serverVirtualization.js @@ -0,0 +1,128 @@ +/** ****************** kcp及自服务云服务器详情-操作日志,参考mc将任务详情,和失败原因,进行国际化转移 *********************************/ +export default { + "ksvd.task.head.type": "type", + "ksvd.task.head.create_time": "create time", + "ksvd.task.head.start_time": "start time", + "ksvd.task.head.finish_time": "finish time", + "ksvd.task.head.action": "action", + "ksvd.task.head.objName": "object", + "ksvd.task.head.operUser": "operation", + "ksvd.task.head.status": "status", + "ksvd.task.head.reason": "reason", + "ksvd.task.head.detail": "detail", + "serverVirutal.deskTop.showAllTask": "show all task", + "serverVirutal.deskTop.allStatus": "all status", + "serverVirutal.deskTop.doingStatus": "doing status", + "serverVirutal.deskTop.failStatus": "fail status", + "serverVirutal.deskTop.successStatus": "success", + "serverVirutal.deskTop.completeStatus": "complete", + "serverVirutal.deskTop.taskProgress": "task progress", + "ksvd.task.action.servervirtual_servervirtauledit": "servervirtaul edit", + "ksvd.task.action.servervirtual_servervirtaulhostmigrate": "host migration", + "ksvd.task.action.servervirtual_servervirtaulhoststoragemigrate": "host and storage migration", + "ksvd.task.action.servervirtual_servervirtualmigrate": "storage migration", + "serverVirtualizationService.ForceReboot": "Force Reboot", + "serverVirtualizationService.Reboot": "Reboot", + "serverVirtualizationService.PowerOn": "Power On", + "serverVirtualizationService.ShutDown": "Shut Down", + "serverVirtualizationService.Resume": "Resume", + "serverVirtualizationService.Suspend": "Suspend", + "serverVirtualizationService.ForceShutDown": "Force Shut Down", + "serverVirtualizationService.HardDelete": "hard delete", + "serverVirtualizationService.DeleteSoft": "Move to recycle bin", + "serverVirtualizationService.fullClone": "Full Clone", + "serverVirtualizationService.linkClone": "Link Clone", + "serverVirtualizationService.createVirtualService": "create Virtual Service", + "serverVirtualizationService.createVirtualServiceByTemplate": "create Virtual Service by Template", + "serverVirtualizationService.setVmExport": "Service Vm Export", + "serverVirtualizationService.importTemplateImage": "", + "server.vm.snapshot.create.memSnapshot": "create memory snapshot", + "server.vm.snapshot.create.noMemSnapshot": "create a non memory snapshot", + "ksvd.task.action.servervirtual_servervirtualdeletesnapshot": "Delete Snapshot", + "ksvd.task.action.servervirtual_servervirtualapplysnapshot": "Apply Snapshot", + "ksvd.task.action.servervirtual_serverbatchvirtualapplysnapshot": "Batch Apply Snapshot", + "ksvd.task.action.servervirtual_serverbatchvirtualcreatesnapshot": "Batch Create Snsapshot", + "ksvd.task.action.servervirtual_servervirtaulbackup": "Create Backup", + "ksvd.task.action.servervirtual_servervirtaulrecoverbackup": "Recover Backup", + "ksvd.task.action.servervirtual_servervirtauldeletebackup": "Delete backup", + "ksvd.task.action.servervirtual_servervirtauldiskcopy": "servervirtaul disk copy", + "serverVirtualizationService.edit.vmName": "Vm Name", + "serverVirtualizationService.Description": "Description", + "serverVirtualizationService.Cluster": "Cluster", + "serverVirtualizationService.edit.vcpuSocket": "VCpu Socket", + "serverVirtualizationService.edit.vcpuCores": "VCpu Cores", + "serverVirtualizationService.edit.cpuMode": "CPU Mode", + "serverVirtualizationService.cpu.schedulingPriority": "scheduling Priority", + "serverVirtualizationService.cpu.limit": "scheduling Priority(MHz)", + "serverVirtualizationService.edit.numaConfig": "NUMA Config", + "serverVirtualizationService.edit.memory": "Memory", + "serverVirtualizationService.edit.memoryHugeConfig": "Memory Huge Config", + "serverVirtualizationService.memory.recovery": "Memory Recovery", + "serverVirtualizationService.edit.addDisk": "add disk", + "serverVirtualizationService.edit.delDisk": "delete disk", + "serverVirtualizationService.Disk": "Disk(GB)", + "serverVirtualizationService.DiskType": "Disk Type", + "serverVirtualizationService.edit.cacheMode": "Cache Mode", + "serverVirtualizationService.edit.provisionType": "Provision Type", + "serverVirtualizationService.edit.disk.ioRange": "Disks IO Range", + "serverVirtualizationService.edit.disk.iopsRange": "Disks IOPS Range", + "serverVirtualizationService.edit.addInterface": "add interface", + "serverVirtualizationService.edit.delInterface": "delete interface", + "serverVirtualizationService.InterfaceType": "InterfaceType", + "serverVirtualizationService.edit.NetworkCardType": "Network Card Type", + "serverVirtualizationService.edit.macAddressPool": "MAC ADDRESS POOL", + "serverVirtualizationService.edit.virtualSwitch": "Virtual Switch", + "serverVirtualizationService.edit.portGroup": "Port Group", + "serverVirtualizationService.edit.ipAddress": "ipAddress", + "serverVirtualizationService.edit.macAddress": "", + "serverVirtualizationService.queueCount": "queue count", + "serverVirtualizationService.mtuCount": "MTU", + "serverVirtualizationService.hotDrawing": "hot drawing", + "serverVirtualizationService.edit.addIso": "add iso", + "serverVirtualizationService.edit.delIso": "delete iso", + "serverVirtualizationService.edit.imageFile": "Image File", + "serverVirtualizationService.edit.editDisk": "disk", + "serverVirtualizationService.edit.editInterface": "interface", + "serverVirtualizationService.edit.editIso": "iso", + "serverVirtualizationService.edit.editUsb": "delete usb", + "serverVirtualizationService.edit.graphicsCardType": "Graphics Card Type", + "serverVirtualizationService.edit.mouseType": "Mouse Type", + "serverVirtualizationService.edit.bios": "BIOS Config", + "serverVirtualizationService.edit.biosFile": "BIOS File", + "serverVirtualizationService.edit.biosWaitTime": "BIOS Wait Time", + "serverVirtualizationService.edit.addUsb": "add usb", + "serverVirtualizationService.edit.delUsb": "delete usb", + "serverVirtualizationService.edit.usbHost": "HOST", + "serverVirtualizationService.edit.vmUsb": "USB", + "serverVirtualizationService.edit.vmHA": "VM HA", + "serverVirtualizationService.edit.hostHA": "HOST HA", + "serverVirutal.dynamicPolicy.enableCpuDynamic": "enable cpu dynamic", + "serverVirutal.dynamicPolicy.enableMemDynamic": "enable memory dynamic", + "serverVirtualizationService.drs.aotuMigrateSwitch": "auto migrate", + "serverVirtualizationService.edit.followHostStartAuto": "Follow Host Start Auto", + "serverVirtualizationService.edit.bootOrder": "Boot Order", + "serverVirtualizationService.edit.remoteOpen": "Remote Open", + "serverVirtualizationService.edit.remotePassword": "Remote Password", + "serverVirtualizationService.wholeness": "wholeness check", + "serverVirtualizationService.edit.existedTime": "existed Time", + "serverVirtualizationService.edit.noTime": "noTime", + "serverVirtualizationService.edit.customizeTime": "customize Time", + "serverVirtualizationService.edit.host-passthrough": "host-passthrough", + "serverVirtualizationService.edit.host-model": "host-model", + "serverVirtualizationService.edit.custom": "custom", + "serverVirtualizationService.cpu.schedulingPriorityLow": "low", + "serverVirtualizationService.cpu.schedulingPriorityMiddle": "middle", + "serverVirtualizationService.cpu.schedulingPriorityHigh": "high", + "serverVirtualizationService.edit.graphicsCardQXL": "QXL GraphicsCard", + "serverVirtualizationService.edit.graphicsCardVGA": "VGA GraphicsCard", + "serverVirtualizationService.edit.graphicsCardCirrus": "Cirrus GraphicsCard", + "serverVirtualizationService.edit.virtio": "virtio GraphicsCard", + "server.virtual.edit.machine.bios.type.legacy": "LEGACY", + "server.virtual.edit.machine.bios.type.uefi": "UEFI", + "server.virtual.edit.machine.bios.type.userUpload": "CUSTOMIZE", + "serverVirtualizationService.noConfig": "no Config", + "serverVirtualizationService.reOpen": "reOpen", + "serverVirtualizationService.byOther": "By Other", + "serverVirtualizationService.close": "close", + "serverVirtualizationService.open": "open" +} \ No newline at end of file diff --git a/src/assets/common/lang/en/taskcenter.js b/src/assets/common/lang/en/taskcenter.js new file mode 100644 index 0000000000000000000000000000000000000000..2e4992e0b9ad34f891b3ca67bc858b05dd5d2292 --- /dev/null +++ b/src/assets/common/lang/en/taskcenter.js @@ -0,0 +1,36 @@ +// taskcenter 任务中心 +export default { + taskcenter: { + task: 'Task', // 任务 + checkTheDetails: 'check the details', // 查看详情 + taskName: 'task name', // 任务名称 + taskObject: 'object', // 对象 + taskObjectType: 'object type', // 对象类型 + taskStatus: 'state', // 状态 + startingTime: 'Starting time', // 开始时间 + endTime: 'End Time', // 结束时间 + operator: 'operator', // 操作者 + operatorIp: 'Operation user IP', // 操作用户IP + organization: 'Organization', // 所属组织 + availabilityZone: 'Availability Zone', // 可用区 + canceling: 'canceling', // 取消中 + processing: 'processing', // 进行中 + tobestarted: 'to be started', // 待开始 + fail: 'fail', // 失败 + success: 'success', // 成功 + running: 'in execution', // 执行中 + canceled: 'Cancelled', // 已取消 + timeout: 'time out', // 超时 + unknown: 'unknown', // 未知 + allTasksPlac: 'Please select a task', // 请选择任务 + allTasks: 'all tasks', // 全部任务 + allStatusPlac: 'Please select a status', // 请选择状态 + allStatus: 'all status', // 全部状态 + taskDescription: 'task description', // 任务描述 + failureReason: 'Failure reason', // 失败原因 + taskDesk: 'task desk', // 任务台 + viewHistoricalTasks: 'View historical tasks', // 查看历史任务 + allTypes: 'All task types', // 全部任务类型 + allTypePlac: 'Please select a task type', // 请选择任务类型 + } +} \ No newline at end of file diff --git a/src/assets/common/lang/en/transferMgr.js b/src/assets/common/lang/en/transferMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..b20bf6094edad4525381642e515b14d3548c2ddd --- /dev/null +++ b/src/assets/common/lang/en/transferMgr.js @@ -0,0 +1,20 @@ +// transferMgr 云服务器转移 +export default { + transferMgr: { + transferMsg: 'Transferring a cloud server across organizations will disconnect the cloud server network; you need to configure the network for the cloud server.', // 跨组织转移云服务器,会断开云服务器网络;需为云服务器配置网络。 + userName: 'user name', // 用户名称 + realName: 'actual name', // 真实姓名 + roleName: 'Role Name', // 角色名称 + orgName: 'Organization', // 所属组织 + type: 'type', // 类型 + selectUser: 'select user', // 选择用户 + selectUserPlac: 'Please select a user', // 选择用户 + selectOrg: 'Choose an organization', // 选择组织 + selectOrgPlac: 'Please select an organization', // 请选择组织 + selectOrgUser: 'Select Organization User', // 选择组织用户 + selectOrgUserPlac: 'Please select an organization user', // 请选择组织用户 + sameOrgTransfer: 'same organization transfer', // 同组织转移 + transferAcrossOrg: 'Transfer across organizations', // 跨组织转移 + transfer: 'transfer' + } +} \ No newline at end of file diff --git a/src/assets/common/lang/index.js b/src/assets/common/lang/index.js new file mode 100644 index 0000000000000000000000000000000000000000..30876a9386b4b7e70bebabee5b5796c3f9b6a3c7 --- /dev/null +++ b/src/assets/common/lang/index.js @@ -0,0 +1,27 @@ +import Vue from 'vue' +import VueI18n from 'vue-i18n'// 国际化 +import elementEnLocale from 'element-ui/lib/locale/lang/en' // element英文语言包 +import elementZhLocale from 'element-ui/lib/locale/lang/zh-CN' // element中文语言包 +import enLocale from './en/index.js' // 英文语言包 +import zhLocale from './zh/index.js' // 中文语言包 + +Vue.use(VueI18n) // 通过插件的形式挂载 +let locale = localStorage.getItem("kcp-lang") || 'zh' +localStorage.setItem("kcp-lang", locale); +const i18n = new VueI18n({ + locale: locale, // 语言标识 + messages: { + // 中文语言包 + 'zh': { + ...elementZhLocale, + ...zhLocale + }, + // 英文语言包 + 'en': { + ...elementEnLocale, + ...enLocale + } + } +}) + +export default i18n diff --git a/src/assets/common/lang/zh/alarmevents.js b/src/assets/common/lang/zh/alarmevents.js new file mode 100644 index 0000000000000000000000000000000000000000..cfc15e7519e3d9e82ed486a65bf549868cf2470f --- /dev/null +++ b/src/assets/common/lang/zh/alarmevents.js @@ -0,0 +1,104 @@ +/** ****************** 日志告警—告警事件 *********************************/ +export default { + 'monitoring.alarmSeverity.ALL': '全部告警级别', + 'monitoring.alarmSeverity.URGENT': '紧急', + 'monitoring.alarmSeverity.SERIOUS': '严重', + 'monitoring.alarmSeverity.ORDINARY': '一般', + 'monitoring.alarmSeverity.label': '告警级别', + 'monitoring.alarmType.label': '告警名称', + 'monitoring.alarmObjType.label': '对象类型', + 'monitoring.alarmObjType.ALL': '全部对象类型', + 'monitoring.alarmObjType.LOCAL_SERVER': '本地服务器', + 'monitoring.alarmObjType.BRANCH_SERVER': '分支服务器', + 'monitoring.alarmObjType.VM': '桌面虚拟机', + 'monitoring.alarmObjType.SERVER': '服务器', + 'monitoring.alarmObjType.USER': '用户', + 'monitoring.alarmObjType.SERVERVIRTUAL': '服务器虚拟化', + 'monitoring.serverType.ALL': '全部服务器', + 'monitoring.serverType.LOCAL': '本地服务器', + 'monitoring.serverType.BRANCH': '分支服务器', + 'monitoring.alarmEvent.type.ALL': '全部告警名称', + 'monitoring.alarmEvent.type.LS_CPU_USAGE': '本地服务器CPU使用率告警', + 'monitoring.alarmEvent.type.LS_MEM_USAGE': '本地服务器内存使用率告警', + 'monitoring.alarmEvent.type.LS_NET_USAGE': '本地服务器网络资源使用率告警', + 'monitoring.alarmEvent.type.BS_CPU_USAGE': '分支服务器CPU使用率告警', + 'monitoring.alarmEvent.type.BS_MEM_USAGE': '分支服务器内存使用率告警', + 'monitoring.alarmEvent.type.BS_NET_USAGE': '分支服务器网络资源使用率告警', + 'monitoring.alarmEvent.type.VM_CPU_USAGE': '虚拟机CPU使用率告警', + 'monitoring.alarmEvent.type.VM_SWAP_USAGE': '虚拟机交换区使用率告警', + 'monitoring.alarmEvent.type.VM_SYS_DISK_USAGE': '虚拟机系统磁盘使用率告警', + 'monitoring.alarmEvent.type.VM_USER_DISK_USAGE': '虚拟机用户磁盘使用率告警', + 'monitoring.alarmEvent.type.SERVER_OFFLINE': '服务器脱机', + 'monitoring.alarmEvent.type.VM_ERROR': '虚拟机错误', + 'monitoring.alarmEvent.type.VM_MEM_USAGE': '虚拟机内存使用率告警', + 'monitoring.alarmEvent.type.S_CPU_USAGE': '服务器CPU使用率告警', + 'monitoring.alarmEvent.type.S_MEM_USAGE': '服务器内存使用率告警', + 'monitoring.alarmEvent.type.S_NET_USAGE': '服务器网络资源使用率告警', + 'monitoring.alarmEvent.type.CM_ACTIVE': '集群主机活动', + 'monitoring.alarmEvent.type.CM_STANDBY': '集群主机待机', + 'monitoring.alarmEvent.type.S_DISK_SHARE': '服务器镜像存储使用率告警', + 'monitoring.alarmEvent.type.S_DISK_ROOT': '服务器根分区使用率告警', + 'monitoring.alarmEvent.type.S_DISK_LOG': '服务器日志分区使用率告警', + 'monitoring.alarmEvent.type.S_DISK_HOME': '服务器镜像缓存分区使用率告警', + 'monitoring.alarmEvent.type.BACKUP_FAIL': '虚拟机备份失败', + 'monitoring.alarmEvent.type.AUTHENTICATE_FAIL': '认证失败', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_CPU_USAGE': '服务器虚拟化CPU使用率告警', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_MEM_USAGE': '服务器虚拟化内存使用率告警', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_NET_USAGE': '服务器虚拟化网络资源使用率告警', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_DISK_USAGE': '服务器虚拟化硬盘使用率告警', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_EXPIRED': '服务器虚拟化有效期告警', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_BACKUP_SERVER_AVAILABLE_SPACE_NOT_ENOUGH': '备份服务器剩余空间不足', + 'monitoring.alarmEvent.type.SERVERVIRTUAL_DYNAMIC_ADD': '动态热添加', + 'monitoring.alarmEvent.type.BRANCH_AUTHENTICATE_FAIL': '分支认证错误', + 'monitoring.alarmEvent.type.BRANCH_REQUEST_FAIL': '分支请求错误', + 'monitoring.alarmEvent.type.branch.invalid_username': '分支用户名错误', + 'monitoring.alarmEvent.type.branch.invalid_password': '分支密码错误', + 'monitoring.alarmEvent.type.branch.error': '分支认证错误', + 'monitoring.alarmEvent.storage.log': '存储日志', + 'monitoring.alarmEvent.log': '日志', + 'monitoring.alarmObjType.STORAGE': '存储', + 'monitoring.alarmEvent.type.S_GPU_TEMPERATURE': '服务器显卡温度告警', + 'monitoring.alarmEvent.type.STORAGE_USAGE': '存储容量告警', + 'monitoring.alarmEvent.type.BRICK_OFFLINE': '副本掉线告警', + 'monitoring.alarmEvent.type.IPMI': '服务器IPMI事件告警', + 'monitoring.alarmEvent.type.VIRTUALSERVER_DYNAMIC_ADD': '动态热添加', + 'monitoring.alarmEvent.type.RABBIT_CONNECT_FAIL': 'RabbitMQ连接错误', + 'monitoring.alarmEvent.type.VIRTUALSERVER_KYLINTOOL': 'qga版本', + 'monitoring.alarmEvent.type.VIRTUALSERVER_KSVDTOOL_EVENT': '设置IP/用户名/密码', + 'monitoring.alarmEvent.type.MARIADB': '数据库告警', + 'monitoring.alarmEvent.type.RESOURCE_ALLOCATION': '资源达到配额阈值', + alarmSetting: { + type: '类型', + urgentValue: '紧急告警', + seriousValue: '严重告警', + ordinaryValue: '一般告警', + interval: '告警持续时间设置(分钟):', + smtpName: '邮件地址:', + intervalEmpty: '间隔时间不能为空!', + intervalInput: '无效的间隔时间,间隔时间有效范围:1~60!', + smtpEmpty: '邮件地址不能为空', + 'seriousInput': '严重告警阈值必须小于紧急告警阈值!', + 'ordinaryInput': '一般告警阈值必须小于严重告警阈值!', + 'thresholdInput': '无效的告警阈值,告警阈值有效范围:0~99!', + cloudServerAlarmPolicy: '云服务器告警策略', // 云服务器告警策略 + physicalServerAlertPolicy: '物理服务器告警策略', // 物理服务器告警策略 + siteLickCheck:'异地容灾-链路检测', + machineExpire:'云服务器使用到期', + clusterAlarmSettings: '集群告警设置', // 集群告警设置 + platformAlarmSettings: '平台告警设置', // 平台告警设置 + clusterAlarmlog: '集群告警日志', // 集群告警日志 + platformAlarmlog: '平台告警日志', // 平台告警日志 + indicatorItem: '指标项', // 指标项 + allZone: '全部可用区', // 全部可用区 + allOrganization: '全部组织', // 全部组织 + zoneName: '可用区', // 可用区 + orgName: '所在组织', // 所在组织 + vdcCpuAlarm: 'VDC-CPU分配比告警', // 所在组织 + vdcEmeAlarm: 'VDC-内存使用率告警', // 所在组织 + vdcStorageAlarm: 'VDC-存储使用率告警', // 所在组织 + general: '一般告警', // 一般告警 + severity: '严重告警', // 严重告警 + urgent: '紧急告警', // 紧急告警 + platform: '平台', // 紧急告警 + }, +} diff --git a/src/assets/common/lang/zh/authorityMgr.js b/src/assets/common/lang/zh/authorityMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..ad99b7261b3333fdb9399f92904c0f363695fe1a --- /dev/null +++ b/src/assets/common/lang/zh/authorityMgr.js @@ -0,0 +1,128 @@ +// authorityMgr 权限管理 +export default { + orgList: '组织列表', // 组织列表 + userList: '用户列表', // 用户列表 + userName: '用户名', // 用户名 + realName: '真实姓名', // 真实姓名 + role: '角色', // 角色 + mobile: '手机号', // 手机号 + avtstatus: '激活状态', // 激活状态 + createTime: '创建时间', // 创建时间 + SYSTEM: "系统管理", // 系统管理 + ORG: "组织管理", // 组织管理 + SELF_SERVICE: "自服务", // 自服务 + PLATFORM: "平台管理", // 平台管理 + ACTIVATE: "激活", // 激活 + NO_ACTIVATE: "未激活", // 未激活 + creatUser: "创建用户", // 创建用户 + modifyUser: "编辑用户", // 编辑用户 + deleteUsers: "删除用户", // 删除用户 + deleteTipMsg: "确定删除该用户吗?", // 确定删除该用户吗? + deleteSuccessMsg: "删除用户成功!", // 确定删除该用户吗? + deletesTipMsg: "确定批量删除该用户嘛?", // 确定批量删除该用户组吗? + deletesSuccessMsg: "批量删除用户成功!", // 确定批量删除该用户组吗? + + + userNameplaceholder: "请输入用户名", // 请输入用户名 + userNametootip: "用户名支持数字、字母进行组合,字符长度为6 ~ 18位", // 用户名支持数字、字母进行组合,字符长度为6 ~ 18位 + + realNameplaceholder: "请输入真实姓名", // 请输入真实姓名 + loginPwd: "登录密码", // 登录密码 + loginPwdplaceholder: "请输入登录密码", // 请输入登录密码 + editpassword: "修改密码", // 修改密码 + confirmPwd: "确认密码", // 确认密码 + confirmPwdplaceholder: "请输入确认密码", // 请输入确认密码 + loginNewPwd: "新密码", // 新密码 + loginNewPwdplaceholder: "请输入新密码", // 请输入新密码 + bindorgName: "绑定组织", // 绑定组织 + bindorgNameplaceholder: "请绑定组织", // 请绑定组织 + noorgName: "没有组织前往", // 没有组织前往 + bindroleName: "绑定角色", // 绑定角色 + bindroleNameplaceholder: "请绑定角色", // 请绑定角色 + mobileplaceholder: "请输入手机号", // 请输入手机号 + userStatus: "激活", // 激活 + pwdInconsistent: "两次输入密码不一致!", // 两次输入密码不一致 + userNameNotNull: "用户名不能为空!", // 用户名不能为空 + userNameLength: "用户名长度应控制在 6 ~ 18 个字符!", // 用户名长度应控制在 6 ~ 18 个字符 + userNamecombination: "用户名只能由英文字母、数字组合!", // 用户名只能由英文字母、数字组合! + orgNamecombination: "组织名只能由英文字母、数字组合!", // 组织名只能由英文字母、数字组合! + realNameNotNull: "真实姓名不能为空!", // 真实姓名不能为空 + realNameLength: "真实姓名长度应控制在 6 ~ 18 个字符!", // 真实姓名长度应控制在 6 ~ 18 个字符 + realNamecombination: "真实姓名只能由英文字母、数字组合!", // 真实姓名只能由英文字母、数字组合! + pwdNotNull: "密码不能为空!", // 密码不能为空! + pwdNotLength: "密码长度应控制在 6 ~ 18 个字符!", // 密码长度应控制在 6 ~ 18 个字符! + pwdNotcombination: "密码只能由英文字母、数字组合!", // 密码只能由英文字母、数字组合! + confirmpwdNotNull: "确认密码不能为空!", // 确认密码不能为空! + confirmpwdInconsistent: "确认密码和密码输入不一致!", // 确认密码和密码输入不一致! + modifyUsersuccess: "编辑用户成功!", // 编辑用户成功! + createUsersuccess: "创建用户成功!", // 创建用户成功! + + roleList: '角色列表', // 角色列表 + roleName: '角色名称', // 角色名称 + roleType: '角色类型', // 角色名称 + remark: '描述', // 描述 + createRole: '创建角色', // 创建角色 + roleDetail: '角色详情', // 角色详情 + modifyRole: '编辑角色', // 编辑角色 + deleteRoleMsg: '确定删除该角色吗?', // 确定删除该角色吗? + deleteRoleSuccMsg: '删除角色成功!', // 删除角色成功! + createRoleSuccMsg: '创建角色成功!', // 创建角色成功! + modifyRoleSuccMsg: '编辑角色成功!', // 编辑角色成功! + boundorg: '绑定组织', // 绑定组织 + setPermission: '权限设置', // 权限设置 + roleNameplaceholder: '请输入角色名称', // 请输入角色名称 + roleNametooltip: '支持中文、数字、字母进行组合,字符长度为2 ~ 18位', // 支持中文、数字、字母进行组合,字符长度为2 ~ 18位 + boundorgplaceholder: '请绑定组织', // 请绑定组织 + optionalPermissions: '可选权限', // 可选权限 + selectedPermissions: '已选权限', // 已选权限 + roleTypeplaceholder: ' 请选择角色类型', // 请选择角色类型 + roleNameNotNull: '角色名称不能为空', // 角色名称不能为空 + roleNameLength: '名称长度应控制在 2 ~ 18 个字符', // 名称长度应控制在 2 ~ 18 个字符 + setPermissionplaceholder: '请设置权限', // 请设置权限 + + // 组织管理 + cpu: '核', // 核 + mem: '内存', // 内存 + disk: '存储', // 存储 + organizationName: '组织名称', // 组织名称 + userNum: '用户数', // 用户数 + serverVmNum: '云服务器',// 云服务器 + parentName: '上级组织', // 上级组织 + CPUallocationratio: 'CPU分配比', // CPU分配比 + memoryallocationratio: '内存分配比', // 内存分配比 + Storageallocationratio: '存储分配比', // 存储分配比 + editOrg: '编辑组织',// 编辑组织 + createOrg: '创建组织',// 创建组织 + delereOrgconfirm: "确定删除该组织吗?", // 确定删除该组织吗 + delereOrgSucc: '删除组织成功!', // 删除组织成功! + organizationNameplc: '请输入组织名称',// 请输入组织名称 + parentNameSelect: '请选择上级组织', // 请选择上级组织 + selectSarentName: '选择上级组织', // 选择上级组织 + vdcId: '选择VDC', // 选择VDC + vdcIdPlc: '未选默认为一级VDC',// 未选默认为一级VDC + vdcIdPlcInput: '请选择VDC',// 未选默认为一级VDC + createLeader: '组织管理员',// 组织管理员 + createLeaderis: '创建组织管理员',// 创建组织管理员 + createLeaderselect: '请选择是否创建组织管理员',// 请选择是否创建组织管理员 + createLeadernot: '暂不创建',// 暂不创建 + organizationNameNotNull: '组织名称不能为空', // 组织名称不能为空 + editOrgSucc: '编辑组织成功!',// 编辑组织成功! + createOrgSucc: '创建组织成功!', // 创建组织成功! + vdcName: 'VDC名称', // VDC名称 + vdcConfigure: '配置', // 配置 + editOrgName: '修改组织名称', // 修改组织名称 + editOrgNamesuccessMsg: '修改组织名称', // 修改组织名称 + bindOrgNamePlc: '请选择绑定组织', // 请选择绑定组织 + + netWorkSet: { + ID: 'ID', // ID + networkName: '网络名称', // 网络名称 + interfaceType: '网络类型', // 网络类型 + virtualSwitch: '虚拟交换机', // 虚拟交换机 + modelType: '网卡类型', // 网卡类型 + addressPool: '地址池', // 地址池 + portGroup: '端口组', // 端口组 + securityGroup: '安全组', // 端口组 + clusterName: '集群名称', // 集群名称 + }, +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/common.js b/src/assets/common/lang/zh/common.js new file mode 100644 index 0000000000000000000000000000000000000000..e55de877ccb3c9a6fb790ff4501348090bfcb265 --- /dev/null +++ b/src/assets/common/lang/zh/common.js @@ -0,0 +1,318 @@ +// common 公共模块 +export default { + canceled: "已取消!", // 已取消! + delete: "删除", + operation: "操作", + save: "保存", + saveSuccess: "保存成功", + saveFail: "保存失败", + sureDel: "确认删除", + open: "开启", + openSuccess: "开启成功", + openFail: "开启失败", + cancellation: "注销", + tips: "提示", // 提示 + delTips: "删除后不可恢复,请谨慎操作", + delLotSure: "确认批量删除", + passwordCantNull: "密码不得为空", + hostSubmitSuccess: "主机纳管任务提交成功", + hostEditSuccess: "主机纳管编辑成功", + password: "密码", + loadingText: "拼命加载中", // 拼命加载中 + refresh: "刷新", // 刷新 + select: "选择", // 选择 + create: "创建", // 创建 + createSuccess: "创建成功", + editSuccess: "编辑成功", + open: "开", // 开 + close: "关", // 关 + placeholder: "请输入内容", // 请输入内容 + view: "查看", // 查看 + add: "添加", // 添加 + nametooltip: "支持中文、数字、字母进行组合,字符长度为2 ~ 18位", // 支持中文、数字、字母进行组合,字符长度为2 ~ 18位 + nameLength: "长度应控制在 2 ~ 18 个字符", // 长度应控制在 2 ~ 18 个字符 + cpuValtip: "cpu仅支持输入偶数或1", + vmName: "仅支持用英文、字母、数字、下划线及-", + adminNameLength: "长度应控制在 6 ~ 20 个字符", // 长度应控制在 6 ~ 20 个字符 + adminNameWranMsg: "只能由英文字母、数字组合", // 只能由英文字母、数字组合 + createTime: "创建日期", + adminPwdLength: "长度应控制在 6 ~ 18 个字符", // 长度应控制在 6 ~ 18 个字符 + adminPwdWranMsg: "密码只能由英文字母、数字组合", // 密码只能由英文字母、数字组合 + pleaseEnter: "请输入", // 请输入 + pleaseSelsect: "请选择", // 请选择 + pleaseSet: "请设置", // 请设置 + set: "设置", // 设置 + previous: "上一步", // 上一步 + nextStep: "下一步", // 下一步 + confirmation: "确认", // 确认 + notNull: "不能为空", // 不能为空 + cpu: "核", // 核 + mem: "内存", // 内存 + disk: "存储", // 存储 + diskSize: "存储大小", // 存储大小 + hard: "磁盘", // 磁盘 + addhardMsg: "该云服务器没有申请磁盘,请按需添加", // 该云服务器没有申请磁盘,请按需添加 + diskNumMaxMsg: "磁盘数目已达上限", // 磁盘数目已达上限 + diskNumMsg: "磁盘大小不能为小于1的正整数", // "磁盘大小不能为小于1的正整数"; + diskNumSizeMsg: "磁盘大小不能为空", // "磁盘大小不能为空"; + diskNumMinMsg: "至少添加一块磁盘", // "至少添加一块磁盘"; + cdRom: "光驱", // 光驱 + newDisk: "新增磁盘", // 新增磁盘 + network: "网卡", // 网卡 + newnetwork: "新增网卡", // 新增网卡 + addnetworkMsg: "该云服务器没有申请,请按需添加网卡", // 该云服务器没有申请,请按需添加网卡 + networkNumMaxMsg: "网卡数目已达上限", // 网卡数目已达上限 + networkpurpose: "请选择网络配置", // 请选择网络配置 + networkSet: "设置网络", // 设置网络 + newnetwork: "新建网络", // 新建网络 + upperNetwork: "选择上级网络", // 选择上级网络 + to: "至", // 至 + enddate: "结束日期", // 结束日期 + startdate: "开始日期", // 开始日期 + people: "人", // 人 + confirm: "确定", + cancel: "取消", + success: "成功", + fail: "失败", + modify: "编辑", + batchModify: "批量编辑", + build: "新建", + operation: "操作", + save: "保存", + startUp: "启动", + saveSuccess: "保存成功", + saveFail: "保存失败", + open: "开启", + openSuccess: "开启成功", + openFail: "开启失败", + close: "关闭", + closeSuccess: "关闭成功", + closeFail: "关闭失败", + updateSuccess: "内容更新成功", + export: "导出", + exportCsv: "导出CSV", + exportElef: "导出ELFF", + startTIme: "开始日期", + endTIme: "结束日期", + recentWeek: "最近一周", + lastMonth: "最近一个月", + lastThreeMonths: "最近三个月", + filter: "筛选条件:", + emptyFilter: "清空筛选", + enter: "请输入", + select: "请选择", + to: "至", + date: "日期", + user: "用户", + userName: "用户名", + type: "类型", + server: "服务器", + organization: "组织", + information: "信息", + name: "名称", + status: "状态", + normal: "正常", + desc: "描述", + warn: "警告", + notAvailable: "不可用", + tips: "提示", + hour: "小时", + add: "添加", + delete: "删除", + notRunning: "未运行", + startSession: "开机", + startSessionSuccess: "开机成功", + closeSession: "关机", + closeSessionSuccess: "关机成功", + forcedCloseSession: "强制关机", + restart: "重启", + forcedRestart: "强制重启", + sendMessage: "发送消息", + createSnapshot: "创建快照", + migration: "迁移", + extractionLog: "提取日志", + detection: "检测", + systemRecovery: "系统还原", + power: "电源", + offline: "离线", + loadingText: "拼命加载中...", + moreLabel: "更多", + validateNull: "不能为空", + validateNumber: "必须为数字", + validateLeng3_15: "长度应在 3 到 15 个字符", + column_Dispaly: "列显示设置", + refreshTable: "刷新表格", + selected_label: "已选中", + to_select_label: "待选择", + operation_control: "管理控制台:", + download_all: "批量下载", + all: "全部", + sureDelete: "确认删除吗?", + deleteSuccess: "删除成功!", + sureModify: "确认修改吗?", + modifySuccess: "修改成功!", + sureSubmmit: "确认提交吗?", + submmitSuccess: "提交成功!", + tableSetting: "表格设置", + apply: "应用", + reset: "重置", + remoteControl: "远程控制", + isSure: "确认", + notice: "通知", + approved: "审批", // 审批 + alarm: "告警", // 告警 + search: "搜索", // 搜索 + createTime: "创建时间", // 创建时间 + changeTheme: "切换皮肤", // 切换皮肤 + changeLangEvent: "切换语言", // 切换语言 + changeLangok: "确定切换语言吗?", // 确定切换语言吗? + changePassword: "修改密码", // 修改密码 + detailsInfo: "详情", // 详情 + changeSpec: "变更规格", // 变更规格 + pass: "通过", // 通过 + refuse: "拒绝", // 拒绝 + time: "时间", // 时间 + batchPass: "批量通过", // 批量通过 + batchRefuse: "批量拒绝", // 批量拒绝 + batchReviewsucc: "批量审核成功", // 批量审核成功 + reviewsucc: "审核成功", // 审核成功 + refusesucc: "拒绝成功", // 拒绝成功 + applyDelete: "申请删除", // 申请删除 + originalSize: "原大小", // 原大小 + strip: "条", // 条 + alreadyAllocate: "已分配", // 已分配 + noAllocate: "未分配", // 已分配 + + details: { + summary: "概要", // 概要 + resourceAllocation: "资源分配情况", // 资源分配情况 + CPUallocationRatio: "cpu分配比", // cpu分配比 + totalcapacity: "总容量", // 总容量 + used: "已用", // 已用 + available: "可用", // 可用 + memoryAllocationRatio: "内存分配比", // 内存分配比 + storageAllocationRatio: "存储分配比", // 存储分配比 + resourceStatistics: "资源统计", // 资源统计 + total: "总数", // 总数 + activated: "已激活", // 已激活 + inactivated: "未激活", // 未激活 + online: "在线", // 在线 + offline: "离线", // 离线 + resourceUsage: "资源使用情况", // 资源使用情况 + CPUUtilization: "CPU利用率", // CPU利用率 + memoryUtilization: "内存利用率", // 内存利用率 + storageUtilization: "存储利用率", // 存储利用率 + cpuCount: "cpu数", // cpu数: + disk: "磁盘", // 磁盘 + diskIOwrites: "磁盘I/O写入", // 磁盘I/O写入 + diskIOread: "磁盘I/O读取", // 磁盘I/O读取 + network: "网络", // 网络 + netWorkInSpeedData: "网络流入速度", // 网络流入速度 + netWorkOutSpeedData: "网络流出速度", // 网络流出速度 + }, + route: { + homePage: "首页", // 首页 + resource: "资源", // 资源 + operator: "运营", // 运营 + monitor: "监控", // 监控 + zone: "可用区", // 可用区 + zoneDetail: "可用区详情", // 可用区详情 + cluster: "物理集群", // 物理集群 + clusterDetail: "物理集群详情", // 物理集群详情 + vdc: "虚拟数据中心(VDC)", // 虚拟数据中心(VDC) + vdcDetail: "虚拟数据中心(VDC)详情", // 虚拟数据中心(VDC)详情 + servervm: "云服务器", // 云服务器 + servervmDetail: "云服务器详情", // 云服务器详情 + org: "组织管理", // 组织管理 + orgDetail: "组织详情", // 组织详情 + permission: "权限管理", // 权限管理 + userMgr: "用户管理", // 用户管理 + roleMgr: "角色管理", // 用户管理 + workorder: "工单管理", // 工单管理 + WorkorderReview: "工单审核", // 工单审核 + workorderDetail: "工单详情", // 工单详情 + networkconfig: "网络设置", // 网络设置 + alarmEvent: "告警事件", // 告警事件 + alarmLog: "告警日志", // 告警日志 + settingAlarm: "告警设置", // 告警设置 + operateLog: "操作日志", // 操作日志 + serverEvent: "物理主机事件", // 物理主机事件 + cloudServerEvent: "云服务器事件", // 云服务器事件 + vMwareMgr: "VMware纳管", // VMware纳管 + vMwareMgrDetail: "VMware纳管详情", // VMware纳管详情 + imageMgr: "镜像管理", // 镜像管理 + imageMgrUpload: "上传镜像", // 上传镜像 + imageMgrDetail: "镜像详情", // 镜像详情 + taskcenter: "任务中心", // 任务中心 + externalCloud: "外部云", + vcenter: "纳管vCenter", + vcenterDetail: "vCenter详情", + reliableCenter: "可靠中心", + linkManagement: "链路管理", + remoteDisasterRecovery: "异地容灾", + mainAndBackupKcp: "主备kcp", + bareMetal: "裸金属服务器", + }, + login: { + resetPassword: "重置密码", // 重置密码 + oldPwd: "原密码", // 原密码 + placeholder: "密码长度应控制在 6 ~ 18 个字符", // 长度6~18位 + newPwd: "新密码", // 新密码 + confirmPwd: "确认密码", // 确认密码 + confirmPwdErr: "两次输入密码不一致!", // 两次输入密码不一致! + pwdMsg: "密码不能为空", // 密码不能为空 + confirmPwdlenMsg: "密码只能由英文字母、数字组合", // 密码只能由英文字母、数字组合 + confirmPwdMsg: "确认密码和密码输入不一致", // 确认密码和密码输入不一致 + }, + home: { + homeText: "资源池化与标准化,智能规划与管理", // 资源池化与标准化,智能规划与管理 + homeSubText: + "单个中立的控制台对下纳管异构的基础设施,对接已有业务流程平台。将云上的资源进行逻辑池化,从而基于企业组织架构来实行资源分配,并提供标准的流程和规范的云服务", // 单个中立的控制台对下纳管异构的基础设施,对接已有业务流程平台。将云上的资源进行逻辑池化,从而基于企业组织架构来实行资源分配,并提供标准的流程和规范的云服务 + createZone: "添加可用区", // 添加可用区 + createCluster: "添加集群", // 添加集群 + createVdc: "添加VDC", // 添加VDC + cpuUseRatio: "CPU使用率", // CPU使用率 + memUseRatio: "内存使用率", // 内存使用率 + owningCluster: "所属集群", // 所属集群 + cloudHosting: "云服务器", // 云服务器 + physicalMachine: "物理主机", // 物理主机 + workerOrder: "工单审核", // 工单审核 + alarm: "告警", // 告警 + cpuUtilization: "CPU利用率", // CPU利用率 + memoryUtilization: "内存利用率", // 内存利用率 + storageUtilization: "存储利用率", // 存储利用率 + accountOverview: "账户总览", // 账户总览 + platformManage: "平台管理用户", // 平台管理用户 + orgManage: "组织管理用户", // 组织管理用户 + selfService: "自服务用户", // 自服务用户 + used: "已用", // 已用 + totalCpu: "CPU总容量", // CPU总容量 + usable: "可用", // 可用 + totalMem: "内存总容量", // 内存总容量 + totalStorage: "存储总容量", // 存储总容量 + zone: "可用区", // 可用区 + zoneNum: "可用区数量", // 可用区数量 + cluster: "集群", // 集群 + clusterNum: "集群总数", // 集群总数 + physicalHost: "物理机", // 物理机 + physicalHostNum: "物理机总数", // 物理机总数 + VDC: "VDC", // VDC + VDCNum: "VDC总数", // VDC总数 + serverVm: "云服务器", // 云服务器 + serverVmNum: "云服务器总数", // 云服务器总数 + total: "总数", // 总数 + }, + + cloneTypeArr: { + LINK_CLONE: "链接克隆", // 链接克隆 + FULL_CLONE: "完整克隆", // 链接克隆 + }, + securityPolicyArr: { + NONE: "无", // 无 + SECURITY_GROUP: "安全组", // 安全组 + VIRTUAL_FIREWALL: "虚拟防火墙", // 虚拟防火墙 + }, + successfulOperation: "操作成功!", // 操作成功 + operationFailed: "操作失败!", // 操作失败 + noMoreOperations: "暂无更多操作", +}; diff --git a/src/assets/common/lang/zh/externalCloud.js b/src/assets/common/lang/zh/externalCloud.js new file mode 100644 index 0000000000000000000000000000000000000000..c603a7025afeff780b2892d3baff75e91c1ba120 --- /dev/null +++ b/src/assets/common/lang/zh/externalCloud.js @@ -0,0 +1,246 @@ +// 外部云 +export default { + clusterEdleteConfirm: '确定删除该物理集群吗?', // 确定删除该物理集群吗? + clusterEdleteSuccess: '删除物理集群成功!', // 删除物理集群成功! + transVmTips1:'在迁移的过程中云服务器仍然正常对外提供服务,在迁移最后阶段系统自动将云服务器关机,并同步迁移过程中产生的增量数据完成迁移;', + transVmTips2:'迁移完成后,在目标集群自动启动云服务器', + overCpuMaxRes:'超出Vcenter可用最大资源,最大允许Cpu核数为{maxCpuCore}核', + overDiskMaxRes:'磁盘总大小大于超出Vcenter可用最大资源,最大允许磁盘大小为{max}GB', + overMemMaxRes:'超出Vcenter可用最大资源,最大允许内存大小为{max}GB', + nameExiseted:'该名称已存在', + statuscell: { + OVERDUE: '已过期', // 已过期 + AVAILABLE: '在线', // 在线 + CONNECTED: '已连接', // 已连接 + INSTALLING: '安装', // 安装 + SUSPEND: '暂停', // 暂停 + UNKNOWN: '其他', // 其他 + ONLINE: '在线', // 在线 + OFFLINE: '离线', // 离线 + HALT: '异常', // 异常 + EXCEPTION: '异常', // 异常 + NORMAL: '正常', // 正常 + WARNING: '警告', // 警告 + ERROR: '错误', // 错误 + POWERED_ON: '在线', // 在线 + POWERED_OFF: '关闭', // 关闭 + TASK_EXECUTION: '执行中', + INIT: '初始化中', + }, + vcenter: { + name: '名称', + status: '状态', + remark: '描述', + clusterUrl: '集群URL', + clustercpurate: 'CPU利用率', + clustermemoryrate: '内存利用率', + useRate:'使用率', + clusterstoragerate: '存储利用率', + addVcenter: '添加vCenter', + versionNumber: '版本号', + editVcenter: '编辑vCenter', + nameLength: '长度应控制在 2 ~ 32 个字符',//The value contains 2 to 32 characters + loginFalse: 'vcenter登录账号校验失败,请检查账号密码是否正确',//The vcenter login account fails to be verified. Check whether the account password is correct + nametooltip: '支持中文、数字、字母进行组合,字符长度为2 ~ 32位',//The value can contain 2 to 32 characters, including digits, and letters + type: '类型', + storageTotalCapacity: '总容量', + storageCapacityUsedRate: '容量利用率', + clusterEditSussess: 'VCenter信息编辑成功', + clusterAddtSussess: 'VCenter信息添加成功', + clusterSummary: '概要', // 概要 + clusterPhysicalHost: '物理主机', // 物理主机 + clusterVersion: '集群版本', // 集群版本 + clusterCeateTime: '添加时间', // 添加时间 + cpuModelName: '名称', // 名称 + cpuModelstatus: '状态', // 状态 + cpuModelType: 'CPU类型', // CPU类型 + cpuModelserverArch: '服务器架构', // 服务器架构 + cpuModelserverType: '服务器类型', // 服务器类型 + cpuModelcpurate: 'CPU利用率', // CPU利用率 + cpuModelmemoryrate: '内存利用率', // 内存利用率 + vmNumber: '云服务器数量', + storageModelmemoryrate: '存储利用率', // 内存利用率 + cloudServer: '云服务器', + clusterStorage: '存储', // 存储 + domainName:'域名', + domainNameUrlWranMsg:'请输入域名Ip', + clusterEditPassword:'请输入密码', + enterPort:'请输入端口号', + enterProtocol:'请选择地址协议类型', + }, + // VMware纳管 + vMwareMgr: { + name: '名称', // 名称 + namePlac: '名称不能为空', // 名称不能为空 + remark: '描述', // 描述 + vcenterIp: 'ip地址', // ip地址 + vcenterPort: '端口', // 端口 + vcenterAccount: '账号', // 账号 + vcenterAdminName: '用户名', // 用户名 + vcenterAdminNameNot: '用户名不能为空', // 用户名不能为空 + vcenterAdminNamePlac: '输入vCenter管理员用户名', // 输入vCenter管理员用户名 + vcenterAdminPassword: '密码', // 密码 + vcenterAdminPasswordNot: '密码不能为空', // 密码不能为空 + vcenterAdminPasswordPlac: '请输入密码', // 请输入密码 + addvMwareMgr: '添加VMware纳管', // 添加VMware纳管 + editvMwareMgr: '编辑VMware纳管', // 编辑VMware纳管 + type: '类型', // 类型 + typePlac: '类型不能为空', // 类型不能为空 + addSucc: '添加成功', // 添加成功 + editSucc: '编辑成功', // 编辑成功 + vmlist: '云服务器列表', // 云服务器列表 + powerStatus: '状态', // 状态 + memory: '内存', // 内存 + }, + network: { + networkName: '网络设备名称',// 网络设备名称 + modelType: '网卡型号', //网卡类型 + network: '网络',// 网络 + macAddress: 'MAC地址',// MAC地址 + ipAddress: 'IP地址',// IP地址 + }, + disk: { + provisionMode: '置备方式',//Provision mode + provisioningDeferredZeroing: '厚置备延迟置零',//Thick provisioning deferred zeroing + setForQuickZeroing: '厚置备快速置零',//set for quick zeroing + sourceFile: '磁盘文件', + leanProvisioning: '精简置备'//Lean provisioning + }, + task: { + type: '类型', + operation: '操作', + objectName: '对象名称', + operationUser: '操作用户', + startTime: '开始时间', + finishTime: '结束时间', + status: '状态', + detail: '详情', + reason: '原因', + }, + vmList: { + shutdown: '关机', + wakeUp: '唤醒', + pause: '暂停', + restart: '重启电源', + powerOff: '关闭电源', + clone: '克隆', + edit: '编辑', + migration: '迁移', + delete: '删除', + migrationMc:'迁入MC', + create: '创建', + cancelled: '已取消', + turnOn: '开机', + cancel: "取消", + shutDown: '关机', + reboot: '重启', + ipAddress: 'ip地址', + cpuCore: "cpu(核)", + memorySize: "内存(GB)", + storageSize: "存储(GB)", + hasOpenVmTips: '已选中虚拟机中存在非关机状态虚拟机,请查验', + hasCloseVmTips: "已选中虚拟机中存在非开机状态虚拟机,请查验", + opensuccess: "开机任务下发成功,请在任务控制台查看", + closesuccess: "关机任务下发成功,请在任务控制台查看", + sureclose: "确认关机", + delsuccess: "删除成功", + wakeupsuccess: "唤醒任务下发成功,请在任务控制台查看", + pausesuccess: "暂停成功", + poweroffsuccess: "关闭电源任务下发成功,请在任务控制台查看", + rebootsuccess: "重启成功", + + sureShutUpTips: "该操作将关机该云服务器,是否继续?", + sureWeakUpTips: "该操作将唤醒该云服务器,是否继续?", + sureDelTips: "该操作将删除该云服务器,是否继续?", + sureBatchRebootTips: "该操作将批量重启云服务器,是否继续?", + surePauseTips: "该操作将暂停该云服务器,是否继续?", + sureRebootTips: "该操作将重启该云服务器,是否继续?", + sureCloseTips: "该操作将关闭该云服务器电源,是否继续?", + sureBatchDelTips: "该操作将批量删除该云服务器,是否继续?", + sureWeakeUp: "确认唤醒", + surePause: "确认暂停", + sureReboot: "确认重启", + surePowerOff: "确认关闭电源", + powerOff: "关闭电源", + sureDel: "确认删除", + batchReboot: "批量重启", + batchDel: "批量删除", + }, + vmOperate: { + createVm: '创建云服务器', + physicalCluster: "物理集群", + name: "名称", + description: "描述", + runningPosition: "运行位置", + storageLocation: "存储位置", + choose: "选择", + MirrorFir: "镜像文件", + core: "核", + custom: "自定义", + memory: "内存", + diskCnatNull: '磁盘不得为空', + disk: '磁盘', + netCardCantNull: '网卡不得为空', + netCard: '网卡', + addntCard: "添加网卡", + basicInfo: "基本信息", + os: "操作系统", + configInfo: "配置信息", + network: '网络', + networkName: '网络名称', + ntAdapter: '网络适配器', + cpuCore: "CPU核数", + memSize: "内存大小", + createSuccess: "虚拟机创建成功,请在任务台中查看进度", + chooseRunWayTips: "请先选择虚拟机运行位置", + cantMoreDisk: "磁盘数目已达上限", + cantMoreNt: "网卡数目已达上限", + chooseLocation: "选择存储位置", + chooseMirFile: "选择镜像文件", + sure: "确 定", + cancel: "取 消", + mirName: "镜像名称", + opType: "操作类型", + osType: "镜像类型", + osSize: "镜像大小", + host:'主机', + editVm: '编辑云服务器', + cantChangeOnlineCpu: '在线虚拟机无法修改CPU大小', + cantChangeOnlineMem: '在线虚拟机无法修改内存大小', + cantDelOnlineDisk: '在线虚拟机无法删除已添加磁盘', + diskCantNull: '磁盘不得为空', + willDelDisk: '该磁盘将删除', + delThisDisk: '删除该磁盘', + cancelThisDisk: '撤销删除磁盘', + diskCantNull: '磁盘不得为空', + addNewDisk: '新增磁盘', + delNetCard: '该网卡将删除', + recoverNetCard: '撤销删除网卡', + cpuCantNull: 'cpu不能为空', + memCantNull: '内存不能为空', + cantChangeLessBefor: '修改后磁盘大小不得小于原磁盘大小', + editSuccessTips: '编辑修改任务提交成功,请在任务台中查看具体信息', + cloneVm: '克隆云服务器', + chooseHost: '选择主机', + cluster: '集群', + cloneSuccess: '克隆任务提交成功,请在任务台中查看具体信息', + chooseHostTips: '请先选择主机', + + autoPlace:'自动安置', + computingRes:'计算资源', + automatic:'自动', + customize:'自定义', + bindRes:'绑定资源', + modeMig:'迁移方式', + shutDownTips:'迁移完成后,自动关闭vCenter云服务器', + stopTips:'迁移完成后,自动关闭原虚拟机', + startMoving:'迁入后启动', + addNicTips:'未添加网卡,请按需添加网卡', + nic:'网卡', + phyTips:'物理集群不得为空', + storageTips:'存储位置不得为空', + nicTips:'网卡规格不得为空', + offlineMig:'离线迁移提交成功,请在任务台中查看具体进度', + } + +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/imageMgr.js b/src/assets/common/lang/zh/imageMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..485920fcea71ca08d29af0cbd80f448e92614013 --- /dev/null +++ b/src/assets/common/lang/zh/imageMgr.js @@ -0,0 +1,75 @@ +// imageMgr 镜像管理 +export default { + imageMgr: { + publicImage: '公共镜像', // 公共镜像 + sharedMirror: '共享镜像', // 共享镜像 + privateImage: '私有镜像', // 私有镜像 + status: '状态', // 状态 + imageName: '镜像名称', // 镜像名称 + imageNameplac: '请输入镜像名称', // 请输入镜像名称 + imageRemark: '描述', // 描述 + imageRemarkplac: '请输入描述', // 请输入描述 + imageSize: '容量', // 容量 + orgNameDesc: '所属组织', // 所属组织 + typeDesc: '镜像类型', // 镜像类型 + imageFromDesc: '来源', // 来源 + zoneName: '可用区', // 可用区 + zoneNameplac: '请选择可用区', // 可用区 + createTime: '创建时间', // 创建时间 + createUser: '创建者', // 创建者 + imageDownload: '导出镜像', // 导出镜像 + syncImage: '同步镜像', // 同步镜像 + syncImageSuccess: '同步镜像成功', // 同步镜像 + deleteImage: '删除', // 删除 + deleteConfirm: '确定删除该镜像?', // 确定删除该镜像? + deletebatchConfirm: '确定删除所选镜像?', // 确定删除所选镜像? + deleteSuccess: '删除镜像成功!', // 删除镜像成功! + tosharedImage: '转为共享镜像', // 转为共享镜像 + topublicMirror: '转为公共镜像', // 转为公共镜像 + editImage: '编辑镜像', // 编辑镜像 + editImageSuccess: '编辑镜像成功!', // 编辑镜像成功! + makeImage: '制作镜像', // 制作镜像 + makeImageSuccess: '制作镜像成功!', // 制作镜像成功! + uploadImage: '上传镜像', // 上传镜像 + orgName: '组织', // 组织 + orgNameplac: '请选择组织', // 请选择组织 + imageupload: '上传本地镜像文件到KCP云平台', // 上传本地镜像文件到KCP云平台 + fileName: '选择镜像', // 选择镜像 + fileNameplac: '请选择镜像文件!', // 请选择镜像文件! + uploadFileFormat: '上传文件只能是 .iso、.gvm格式!', // 上传文件只能是 .iso、.gvm格式! + uploadFileSize: '上传文件大小不能超过 50GB!', // 上传文件大小不能超过 50GB! + uploadingFile: '正在上传文件', // 正在上传文件: + notCloseThisPage: '请不要关闭此页面', // ,请不要关闭此页面 + filetatalSize: '文件总大小', // ,请不要关闭此页面 + uploaded: '已上传', // ,请不要关闭此页面 + uploadSpeed: '上传速度', // 上传速度 + timeSpent: '已花费时间', // 已花费时间 + timeRemaining: '预计剩余时间', // 预计剩余时间 + cancelUpload: '取消上传', // 取消上传 + imgstatus: { + NORMAL: '正常', // 正常 + ERROR: '异常', // 异常 + SYNCING: '同步中', // 同步中 + }, + imageFrom: { + UPLOAD: '上传', // 上传 + MACHINE_MAKE: '云服务器制作', // 云服务器制作 + SHARE_CHANGE: '共享镜像转换', // 共享镜像转换 + PRIVATE_CHANGE: '私有镜像转换', // 私有镜像转换 + }, + imageActionList: { + IMAGE_UPLOAD: '上传镜像', // 上传镜像 + IMAGE_SYNC: '镜像同步', // 镜像同步 + IMAGE_CREATE_TEMPLATE: '生成模板镜像', // 生成模板镜像 + IMAGE_MODIFY: '编辑镜像', // 编辑镜像 + IMAGE_PRIVATE_TO_SHARE: '私有镜像提升为共享镜像', // 私有镜像提升为共享镜像 + IMAGE_SHARE_TO_PUBLIC: '共享镜像提升为公共镜像', // 共享镜像提升为公共镜像 + IMAGE_MAKE: '制作镜像', // 制作镜像 + IMAGE_CREATE_GVM_FILE: '生成镜像文件', // 生成镜像文件 + IMAGE_ERROR_SYNC: '镜像异常-同步镜像', // 镜像异常-同步镜像 + IMAGE_DELETE: '删除镜像', // 删除镜像 + IMAGE_DOWNLOAD: '镜像下载', // 镜像下载 + }, + makeImageMsg: '镜像中只包含选择云服务器的系统盘,为了避免镜像数据的不全面,请将云服务器的其他磁盘的重要数据迁移到系统盘中再来制作镜像!', // 镜像中只包含选择云服务器的系统盘,为了避免镜像数据的不全面,请将云服务器的其他磁盘的重要数据迁移到系统盘中再来制作镜像! + } +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/index.js b/src/assets/common/lang/zh/index.js new file mode 100644 index 0000000000000000000000000000000000000000..a0e63b53c5980d47e0e67ef7899a1661a5cef3f7 --- /dev/null +++ b/src/assets/common/lang/zh/index.js @@ -0,0 +1,28 @@ +import common from './common.js' +import authorityMgr from './authorityMgr.js' +import resourceMgr from './resourceMgr.js' +import monitorMgr from './monitorMgr' +import alarmevents from './alarmevents' +import serverVirtualization from './serverVirtualization' +import operateMgr from './operateMgr.js' +import imageMgr from './imageMgr.js' +import operateLog from './operateLog.js' +import transferMgr from './transferMgr.js' +import taskcenter from './taskcenter.js' +import externalCloud from './externalCloud.js' +import reliableCenter from './reliableCenter.js' +export default { + common,// 公共模块 + authorityMgr, //权限管理 + resourceMgr, // 资源管理 + ...monitorMgr, // 监控 + ...alarmevents, // 告警事件 + ...serverVirtualization, // kcp及自服务云服务器详情-操作日志,参考mc将任务详情,和失败原因,进行国际化转移 + ...operateMgr, // 操作 + ...imageMgr, // 镜像管理 + ...operateLog, // 操作日志 + ...transferMgr, // 云服务器转移 + ...taskcenter, // 任务中心 + externalCloud,//外部云 + reliableCenter,//可靠中心 +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/monitorMgr.js b/src/assets/common/lang/zh/monitorMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..99e314c375ab9ee763d9ba5289363aae3a4199a4 --- /dev/null +++ b/src/assets/common/lang/zh/monitorMgr.js @@ -0,0 +1,86 @@ +export default { + /** ****************** 日志告警—服务器事件 *********************************/ + monitoring: { + evtSeverity: { + ALL: '全部级别', + INFO: '信息', + WARN: '警告', + ERROR: '错误' + }, + event: { + type: { + "ALL": "全部类型", + "SERVER_ONLINE": "服务器联机", + "SERVER_OFFLINE": "服务器脱机", + "SERVER_STATUS": "服务器状态", + "SERVER_KSVD_START": "KSVD服务启动", + "SERVER_KSVD_STOP": "KSVD服务停止", + "SERVER_KSVD_MSG": "KSVD消息", + "CM_ACTIVE": "集群主机活动", + "CM_STANDBY": "集群主机待机", + "DBMONITOR_OUT_SYNC": "服务器时间不同步", + "MC_SERVICE_ALERT": "MC 服务警报", + "SESSION_MIGRATE": "会话迁移", + "KSVDCMD_RESTART": "ksvd-cmd进程重启", + "KSVDCMD_DOWN": "ksvd-cmd进程退出", + "KSVDMPCD_RESTART": "ksvdmpcd进程重启", + "KSVDMPCD_DOWN": "ksvdmpcd进程退出", + "KSVDSMARTD_RESTART": "ksvdsmartd进程重启", + "KSVDSMARTD_DOWN": "ksvdsmartd进程退出", + "KSVDBRANCHD_RESTART": "ksvdbranchd进程重启", + "KSVDBRANCHD_DOWN": "ksvdbranchd进程退出", + "DHCPD_RESTART": "dhcpd进程重启", + "DHCPD_DOWN": "dhcpd进程退出", + "KSVDUDPD_RESTART": "ksvdudp进程重启", + "KSVDUDPD_DOWN": "ksvdudp进程退出", + "KSVDP2P_RESTART": "ksvdp2p进程重启", + "KSVDP2P_DOWN": "ksvdp2p进程退出", + "KSVDCACHEIO_RESTART": "ksvdcacheio进程重启", + "KSVDCACHEIO_DOWN": "ksvdcacheio进程退出", + "KSVD_NETD_RESTART": "ksvdnetd进程重启", + "KSVD_NETD_DOWN": "ksvdnetd进程退出", + "KSVD_DPM_WAKEUP": "DPM唤醒主机", + "KSVD_DPM_POWEROFF": "DPM回收主机", + "VITUALSERVER_START": "开机", + "VITUALSERVER_SHUTDOWN": "关机", + "VITUALSERVER_INSTALL": "安装", + "VITUALSERVER_REBOOT": "重启", + "VITUALSERVER_FORCEREBOOT": "强制重启", + "VITUALSERVER_SUSPEND": "暂停", + "VITUALSERVER_WAKEUP": "唤醒", + "VITUALSERVER_DELETE": "删除", + "VITUALSERVER_ABORT": "强制关机", + "VIRTUALSERVER_ERROR": "错误", + "VIRTUALSERVER_WARN": "警告", + "VITUALSERVER_IMAGE": "云服务器创建", + "VITUALSERVER_CLONEIMAGE": "模版创建云服务器", + "VIRTUALSERVER_INSTALL_ERROR": "安装失败", + "VIRTUALSERVER_CONNECT_STATUS": "VNC连接", + "VIRTUALSERVER_ONLINE_ERROR": "在线编辑失败", + "VIRTUALSERVER_CLONE_VM": "克隆云服务器", + "VIRTUALSERVER_DYNAMIC_ADD": "动态热添加", + "VIRTUALSERVER_KYLINTOOL": "qga状态", + "VIRTUALSERVER_KSVDTOOL_EVENT": "设置IP/用户名/密码" + } + }, + serverEvtMap: { + severity: '严重性', // 严重性 + desktopName: '云服务器名称', // 云服务器名称 + type: '类型', // 类型 + username: '用户', // 用户 + hostname: '运行主机', // 运行主机 + timestamp: '日期', // 日期 + info: '信息', // 信息 + server: '服务器', // 服务器 + mutableTags: '资源', // 资源 + }, + alarmEvtMap: { + severity: '告警级别', + date: '告警时间', + type: '告警名称', + objectName: '告警对象', + objectType: '对象类型', + info: '详情' + }, + } +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/operateLog.js b/src/assets/common/lang/zh/operateLog.js new file mode 100644 index 0000000000000000000000000000000000000000..575bac4115ed9b56545f97d0a0a795039e2a71ee --- /dev/null +++ b/src/assets/common/lang/zh/operateLog.js @@ -0,0 +1,17 @@ +// operateLog 操作日志 +export default { + operateLog: { + logStatus: { + SUCCESS: "成功", + FAIL: "失败", + RUNNING: "执行中", + }, + logType: { + IMAGE: "镜像管理", + CLUSTER: "集群管理", + VDC: "VDC管理", + ZONE: "可用区管理", + ORG: "组织管理", + }, + } +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/operateMgr.js b/src/assets/common/lang/zh/operateMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..c89e233f428659738f7ec82aefd0e036f3884602 --- /dev/null +++ b/src/assets/common/lang/zh/operateMgr.js @@ -0,0 +1,150 @@ +/** ****************** 操作 ******************************* **/ +export default { + + workOrder: { + choseRole:'选择角色', + workOrderId: '工单ID', // 工单ID + applyUser: '申请人', // 申请人 + organizationName: '所属组织', // 所属组织 + typeDesc: '工单类型', // 工单类型 + typeDescplaceholder: '请选择工单类型', // 请选择工单类型 + type: '类型', // 类型 + target: '工单对象', // 工单对象 + statusDesc: '状态', // 状态 + status: '工单状态', // 工单状态 + statusplaceholder: '请选择工单状态', // 请选择工单状态 + applyReason: '申请原因', // 申请原因 + auditOpinion: '反馈意见', // 反馈意见 + applyTime: '申请时间', // 申请时间 + auditTime: '处理时间', // 处理时间 + reviewComments: '审核意见', // 审核意见 + commentsNotempty: '审核意见不能为空', // 审核意见不能为空 + commentsspecialChar: '审核意见不能出现特殊字符', // 审核意见不能出现特殊字符 + statusOptions: + { + ALL: "全部", + + WAIT_CHECK: "待审核", + + CHECK_PASS: "审核已通过", + + CHECK_NO_PASS: "已拒绝", + }, + + orderTypeOptions: + { + ALL: "全部", + + REGISTER_USER: "账号注册", + + MODIFY_USER: "修改账号", + + APPLY_SERVERVM: "申请云服务器", + + MODIFY_SERVERVM: "变更云服务器", + + DEFERRED_SERVERVM: "延期云服务器", + + MODIFY_VDC: "变更VDC资源", + + }, + ipSet: { + ipBindMac: 'IP/MAC绑定', // IP/MAC绑定 + ip: 'IP地址', // IP地址 + ipNotNull: 'IP地址不能为空', // IP地址不能为空 + ipWran: 'IP地址输入有误', // IP地址不能为空 + manualSetIp: '手动设置IP', // 手动设置IP + mask: '子网掩码', // 子网掩码 + maskNotNull: '子网掩码不能为空', // 子网掩码不能为空 + maskWran: '子网掩码输入有误', // 子网掩码输入有误 + gw: '默认网关', // 默认网关 + gwWran: '网关输入有误', // 网关输入有误 + dns1: '首先DNS', // 首先DNS + dns1Wran: '首选DNS输入有误', // 首选DNS输入有误 + dns2: '备先DNS', // 备先DNS + dns2Wran: '备用DNS输入有误', // 备用DNS输入有误 + ipMethod: 'ip方式', // ip方式 + automaticDHCP: '自动DHCP', // 自动DHCP + auto: '自动', // 自动 + manual: '手动', // 手动 + tooltip: '云服务器未安装QGA工具, 手动设置不生效', // 云服务器未安装QGA工具, 手动设置不生效 + }, + vdcstatus: '状态', // 状态 + oldResouse: '原始资源', // 原始资源 + applyResouse: '申请资源', // 申请资源 + realResouse: '审核资源', // 审核资源 + auditionUser: '审核者', // 审核者 + auditionTime: '审核时间', // 审核时间 + deadlineTypeDesc: '到期处理', // 到期处理 + reason: '原因', // 原因 + mobile: '手机号', // 手机号 + osMachine: '操作系统', // 操作系统 + posMachine: '请选择操作系统', // 请选择操作系统 + architecture: '架构', // 架构 + parchitecture: '请选择架构', // 请选择架构 + specification: '规格', // 规格 + deadLineTime: '到期时间', // 到期时间 + howtocreate: '创建方式', // 创建方式 + clusterName: '所属集群', // 所属集群 + iso: '镜像', // 镜像 + selectiso: '选择ISO镜像', // 选择ISO镜像 + isoLabel: 'ISO镜像名称', // ISO镜像名称 + templateName: '模板名称', // 模板名称 + applyNum: '申请个数', // 申请个数 + description: '描述', // 描述 + useMonth: '使用时间', // 使用时间 + useMonthUnit: '个月', // 个月 + oldDeadlineTime: '原到期时间', // 原到期时间 + newDeadlineTime: '延期时间', // 延期时间 + realName: '真实姓名', // 真实姓名 + newRealName: '新真实姓名', // 新真实姓名 + pwd: '密码', // 密码 + serverClusterType: '计算资源', // 计算资源 + serverClusterTypeObj: { + CUSTOM: '自定义', + BIND_RESOURCE: '绑定资源', + AUTO: '自动' + }, + pselectCluster: '请选择主机', // 请选择主机 + pselectTagNames: '请绑定资源', // 请绑定资源 + passapplyservervm: '申请云服务器审核', // 申请云服务器审核 + workorderpass: '审核通过', // 审核通过 + passmodifyservervm: '变更云服务器审核', // 变更云服务器审核 + aliasName: '名称', // 名称 + aliasNameNotNull: '名称不能为空', // 名称不能为空 + aliasNameLength: '名称长度应控制在 6 ~ 32 个字符', // 名称长度应控制在 6 ~ 32 个字符 + serverNum: '数量', // 数量 + serverNumNotNull: '申请个数不能为空', // 申请个数不能为空 + serverNumIsoRange: '申请个数应控制在 1 ~ 4 范围', // 申请个数应控制在 1 ~ 4 范围 + serverNumRange: '申请个数应控制在 1 ~ 100 范围', // 申请个数应控制在 1 ~ 100 范围 + servertemplate: '模板', // 模板 + systemType: '类型', // 类型 + cloneType: '创建类型', // 创建类型 + autoConfiguration: '自动安置', // 自动安置 + autoConfigurationOn: '开', // 自动安置开 + autoConfigurationOff: '关', // 自动安置关 + storageLocation: '存储位置', // 存储位置 + placstorageLocation: '请选择存储位置', // 请选择存储位置 + serverVmType: { + ISO: 'ISO镜像', // ISO镜像 + TEMPLATE: '模板', // 模板 + }, + pserverVmTypeISO: '选择或搜索ISO镜像', // 选择或搜索ISO镜像 + sureApproved: "确定审核通过?", // 确定审核通过? + reviewRejection: "审核拒绝", // 审核拒绝 + rejectOpinion: "拒绝意见", // 拒绝意见 + chooseComputingRes: "选择计算资源", // 选择计算资源 + serverAddr: "IP地址", // IP地址 + serverArch: "架构", // 架构 + serverType: "类型", // 类型 + cpuModelName: "CPU类型", // CPU类型 + cpuUtil: "CPU", // CPU + memUtil: "内存", // 内存 + currentSessions: "运行云服务器", // 运行云服务器 + loadaverage: "平均负载", // 平均负载 + pchooseComputingRes: "请至少勾选一个计算资源节点", // 请至少勾选一个计算资源节点 + chooseNetworkInfo: "选择网络信息", // 选择网络信息 + pchooseNetworkInfo: "请至少勾选一个网络配置", // 请至少勾选一个网络配置 + + }, +} diff --git a/src/assets/common/lang/zh/reliableCenter.js b/src/assets/common/lang/zh/reliableCenter.js new file mode 100644 index 0000000000000000000000000000000000000000..1ae817ad9559fa76509abf91b434e4653dd08dad --- /dev/null +++ b/src/assets/common/lang/zh/reliableCenter.js @@ -0,0 +1,338 @@ +//$t('reliableCenter') +export default { + drStragtegyInfor:{ + Monday: '星期一', + Tuesday: '星期二', + Wednesday: '星期三', + Thurday: '星期四', + Friday: '星期五', + Saturday: '星期六', + Sunday: '星期日', + enable:'启用', + deactivate:'停用' + }, + weekObj: { + MONDAY: "周一", + TUESDAY: "周二", + WEDNESDAY: "周三", + THURSDAY: "周四", + FRIDAY: "周五", + STAURDAY: "周六", + SUNDAY: "周天", + }, + configurationGuide:'配置指引:', + configurationGuideStep1:'1.请安装一个全新的KCP,并设置IP', + configurationGuideStep2:'2.比处填写相应的信息将新KCP添加进来作为备KCP,系统将自动同步主KCP的相关配置和数据到该节点', + configurationGuideStep3:'3.当主KCP故障后,可登录备KCP的IP,将备KCP切换成主KCP', + nodeIp:'节点IP', + password:'密码', + addStandyAdd:'添加备KCP', + standySlaveShip:'主备关系', + Switch:'切换为主站点', + undeleted:'已取消删除', + promotedTips:'此操作将该KCP备节点提升为主节点, 是否继续?', + promotedSuccess:'提升主节点成功', + cancelPromoted:'已取消提升', + delNode:'此操作将删除该KCP备节点, 是否继续', + masterNoe:'主(当前访问)', + slave:' 备', + main:'主', + slaveNow:'备(当前访问)', + selectNic:'选择网卡规格', + net2:'2层网络', + net3:'3层网络', + netName:'网络名称', + netDes:'网络描述', + netHie:'网络层级', + nicType:'网卡类型', + netType:'网络类型', + addPool:'地址池', + virSwitch:'虚拟交换机', + primarySite:'主站点恢复点列表', + secSiteList:'备站点恢复点列表', + fullBackup:'全量备份', + incBackup:'增量备份', + secSite:'备站点', + primarySite:'主站点', + synTo:'同步至', + backName:'备份文件名称', + backPath:'备份路径', + backMode:'备份方式', + backSize:'备份大小', + backComTime:'备份完成时间', + selectRePoint:'请选择恢复点', + mainSlaveSite:'主备站点容灾数据', + disasterPolicy:'容灾策略', + siteManage:'站点管理', + addSite:'添加站点', + siteName:'站点名称', + addSiteSuccess:'站点添加成功', + linkManage:'链路管理', + delSiteTips:'删除后不可恢复,请谨慎操作', + delSiteTite:'确定删除数据?', + remark:'备注', + createDrPolicy:'创建容灾策略', + executeDrPolicy:'立即执行容灾策略', + enable:'启用', + disable:'禁用', + connectivityTest:' 连通性检验', + probeObj:'探测对象', + detectionRes:'探测结果', + underDete:'检测中', + probObjectCom:'探测对象通信正常', + communicationError:'探测对象通信异常,请检测网络后重试', + linkDetection:'链路检测中', + retest:'重新检测', + addLink:'添加链路', + unlimited:'不限制', + limited:'限制', + edit:'编辑', + conTest:'连通性测试', + delete:'删除', + site1:'站点1', + site2:'站点2', + linkStatusSite:'站点链路连接状态', + transRateLim:'传输速率限制', + normal:'正常', + anomaly:'异常', + editLink:'编辑链路', + sectionDescri:'配置站点与站点的管理节点主机IP,使站点与站点链路宽带限制之间能正常通信和传输数据。', + linkRestr:'链路宽带限制', + configureDrIp:'容灾IP配置', + communicationIpAddress:'该通信ip不得为空', + enterNormalIp:'请输入正常ip地址', + selectThePrimary:'请选择主站点和备站点', + site1Tips:'主站点不得为空', + site2Tips:'备站点不得为空', + linkBroadBand:'链路宽带限制不得为空', + dataCommit:'数据提交中,请稍后关闭窗口', + linkEditSucc:'链路编辑成功', + linkDete:'链路检测异常', + addLinkSuccess:'链路添加成功', + + backupServerLoc: '选择备份服务器位置', + backupServer: '备份服务器', + state: '状态', + totalCapacity: '总容量', + availableSpace: '可用空间', + selectCloudServer: '选择云服务器', + cloudServerSelected: '已选', + clear: '清除', + noDataSelected: '暂无选中数据', + packetDataLoading: '分组数据加载中', + cloudServerName: '云服务器名称', + description: '描述', + createDrPolicy: '创建容灾策略', + executeDrPolicyImmediately: '立即执行容灾策略', + compressedTransmission: '压缩传输', + uncompressedTransmission: '无压缩传输', + hour: '小时', + drPolicyName: '容灾策略名称', + primarySite: '主站点', + secondarySite: '备站点', + cloudServer: '云服务器', + primarySiteBackupLoc: ' 主站点备份位置', + primarySiteBackupPeriod: '主站点备份周期', + secondarySiteDrLoc: '备站点容灾位置', + drTransmissionMode: '容灾传输方式', + drPro: '容灾pro', + enabledState: '启用状态', + nextDrTime: '下次容灾时间', + + backupServerLoc: '选择备份服务器位置', + backupServer: '备份服务器', + state: '状态', + totalCapacity: '总容量', + availableSpace: '可用空间', + selectCloudServer: '选择云服务器', + clear: '清除', + noDataSelected: '暂无选中数据', + packetDataLoading: '分组数据加载中', + cloudServerName: '云服务器名称', + description: '描述', + + createDrPolicy: '创建容灾策略', + executeDrPolicyImmediately: '立即执行容灾策略', + compressedTransmission: '压缩传输', + uncompressedTransmission: '无压缩传输', + immediately: '即时同步', + hour: '小时', + drPolicyName: '容灾策略名称', + primarySite: '主站点', + secondarySite: '备站点', + cloudServer: '云服务器', + primarySiteBackupLoc: '主站点备份位置', + primarySiteBackupPeriod: '主站点备份周期', + secondarySiteDrLoc: '备站点容灾位置', + drTransmissionMode: '容灾传输方式', + drPro: '容灾pro', + enabledState: '启用状态', + nextDrTime: '下次容灾时间', + enableConfirmation: '启用确认', + disableConfirmation: '禁用确认', + deletionConfirmation: '删除确认', + enabledSuccessfully: '启用成功', + disabledSuccessfully: '禁用成功', + hourlyBackup: '小时备份', + dailyBackup: '每天备份', + everyDay: '每天', + startTime: '开始时间', + endTime: '结束时间', + weeklyBackup: '每周备份', + everyWeek: '每周', + executedSuccessfully: '执行成功', + batchEnabledSuccessfully: '批量启用成功', + batchDisabledSuccessfully: '批量禁用成功', + disabledStatusPolicySelected: '选中策略中有禁用状态策略,无法进行立即执行', + enabledPolicyExists: '选中策略中有启用状态策略,无法进行启动', + disabledStatusPolicyExists: '选中策略中有禁用状态策略,无法进行禁用', + basicInfo: '基本信息', + drConfig: '容灾配置', + definiteInfo: '确定信息', + choose: '选择', + schematicDiagram: '示意图', + primarySiteLocalBackup: '主站点本地备份', + backupLoc: '备份位置', + pleaseEnter: '请输入', + backupFreq: '备份频率', + day: '天', + weeks: '周', + backupCycle: '备份周期', + backupPeriod: '备份时间段', + nextDay: '隔天', + backupStartTime: '备份开始时间', + arbitraryPointInTime: '任意时间点', + policyDuration: '策略持续时长', + singleServerTimeoutDuration: '单台超时时长', + backupCopy: '备份份数', + secondarySiteRemoteDr: '备站点异地容灾', + drLocation: '容灾位置', + drRpoPeriod: '容灾RPO周期', + transmissionMode: '传输方式', + dataSyncCompressed: '对同步到备站点的数据压缩后再进行传输,从而提高传输效率,减少对带宽的消耗,同时也将消耗更多的CPU资源,请根据带宽情况选择是否开启。', + enterDrPolicyName: '请输入容灾策略名称', + policyNameFormat: '支持2-32位中英文、数字、特殊字符', + selectPrimarySite: '请选择主站点', + selectSecondarySite: '请选择备站点', + selectCloudServer: '请选择云服务器', + selectBackupLoc: '请选择备份位置', + selectDrLoc: '请选择容灾位置', + selectStartTime: '请选择起始时间', + selectEndTime: '请选择结束时间', + selectBackupPeriod: '请选择备份周期', + + enterPolicyDuration: '请输入策略持续时长', + enterSingleTimeout: '请输入单台超时时长', + enterBackupCopies: '请输入备份份数', + selectDrRpoPeriod: '请选择容灾RPO周期', + cloudServerName: '云服务器名称', + cloudServerStatus: '云服务器状态', + createDrPolicy: '创建容灾策略', + editDrPolicy: '编辑容灾策略', + policyCreationSucceeded: '策略创建成功', + policyModificationSucceeded: '策略修改成功', + enableConfirmation: '确认启用该策略?', + disableConfirmation: '确认禁用该策略?', + deletionConfirmation: '确认删除该策略?', + startTime: '起始时间', + primarySiteBackupMethod: '主站点备份方式', + secondarySiteDrMethod: '备站点容灾方式', + weeklyBackup: '按周备份', + hourlyBackup: '按小时备份', + cloudServerList: '云服务器列表', + cloudServerName: '云服务器名称', + cloudServerStatus: '云服务器状态', + serverSearchTips:'服务器名/IP/UUID/标签', + + DRTest: "容灾演练", + startDrNote:"注:开始演练后,主站点云服务器立即关机,同时自动在备站点拉起灾备机。", + endDrNote:"注:执行结束演练后,删除容灾备机并清理演练时容灾数据。", + endDrNote2:"结束演练不会影响主站点云服务器业务", + recoveryMethod: "恢复方式", + startTest: "开始演练", + endTest: "结束演练", + startTestNote: "注:计划内恢复会立即关闭主站点云服务器,将最新数据同步到备站点,数据同步完成后,自动在备站点拉起容灾备机。", + startTestNote1: "此过程中业务将会有短暂中断。", + startTestNote2: "恢复过程中若错误,将取消恢复,将主站点云服务器重新接起。", + endTestNote: "注:灾难后恢复立即在备站点拉起容灾备机,", + endTestNote2: "未同步到备站点的数据会丢失。", + testServer: "演练云服务器", + testToBackup: "演练到备站点", + testRecoveryPoint: "演练恢复点", + chooseRecoveryPoint: "请选择演练恢复点", + auto: "自动", + storageLocation: "存储位置", + chooseStorageLocation: "请选择存储位置", + networkInterface: "网口", + chooseNetworkInterfaceData: "请选择网口数据", + testSubmitted: "容灾演练提交成功,具体进度请在任务栏中查看。", + endTestSubmitted: "结束容灾演练提交成功,具体进度请在任务栏中查看。", + notExist: "不存在", + RPOSyncing: "RPO同步中", + deleting: "删除中", + allServers: "全部云服务器", + mainSiteDRRecovery: "主站点容灾恢复", + backupSiteDRRecovery: "备站点容灾恢复", + revertToMainSite: "回迁到主站点", + differencesCheck: "差异检测", + mainSiteName: "主站点名称", + mainSiteBackupCount: "主站点备份数量", + mainSiteBackupSize: "主站点备份数据总大小", + mainSiteLastRecoveryTime: "主站点最近恢复点时间", + mainBackupDifferences: "主备站点数据差异量", + backupSiteName: "备站点名称", + backupSiteBackupSize: "备站点备份数据总大小", + backupSiteBackupCount: "备站点备份数量", + backupSiteLastRecoveryTime: "备站点最近恢复时间", + performBackupCheck: "是否进行云服务器主备站点备份文件差异性检测", + prompt: "提示", + confirm: "确定", + cancel: "取消", + backupCheckSubmitted: "云服务器主备站点备份文件差异性检测提交成功,具体进度请在任务台查看。", + mainSiteDRRecoverySubmitted: "主站点容灾恢复任务提交成功,具体进度请在任务中心查看。", + revertNote: "注:执行回迁后,会立即关闭备站点云服务器,将最新数据回迁到主站点,并在数据回迁完成后,自动在主站点接起云服务器。", + revertNote1:"此过程中业务将会有短暂中断。", + revertNote2:"回迁过程中若错误,将取消回迁,将备站点云服务器重新接起。", + revertServer: "回迁云服务器", + revertSubmitted: "回迁数据提交成功,具体进度请在任务栏中查看。", + backupSiteStatus: "备站点状态", + mainSiteStatus: "主站点状态", + syncTo: "备份恢复点同步且覆盖到", + confirmSyncTo: "确定同步到", + data: "数据", + syncSubmitted: "数据同步成功提交成功,具体进度请在任务台查看。", + plannedRecovery: "计划内恢复(主站点需在线)", + DRRecovery: "灾难后恢复", + recoveryServer: "恢复云服务器", + recoveryToBackup: "恢复到备站点", + recoveryPoint: "恢复点", + runLocation: "运行位置", + plannedRecoverySubmitted: "计划内备份恢复提交成功,具体进度请在任务栏中查看。", + DRRecoverySubmitted: "灾难后恢复备份恢复提交成功,具体进度请在任务栏中查看。", + NORMAL: "保护中", + PLAN_RECOVER: "计划内恢复", + PLAN_RECOVERING: "计划内恢复中", + FAIL_RECOVER: "故障恢复", + FAIL_RECOVERING: "故障恢复中", + BACKUPING: "备份中", + DELETEING: "删除备份文件中", + PRONG: "备份文件pro同步中", + START_DRILL: "开始容灾演练中", + DRILL: "容灾演练中", + END_DRILL: "结束容灾演练中", + MOVE_BACK: "数据回迁中", + MASTER_RECOVERING: "主站点恢复中", + chooseMainRecoveryPoint:'选择恢复点', + backupFileStatus:'备份文件状态', + will:'将', + bdStatus:'容灾状态', + backStatus:'备份状态', + PRONG:'pro同步中', + + runnowTips:'由于异地容灾占用资源较大,请谨慎操作', + runnowTitleTips:'对"{name}"立即执行容灾策略?', + hourBackupTips:'首次备份时为全量备份,成功备份后,再执行备份周期任务。', + dayBackupTips:'超出持续时长后,正在备份的虚拟机继续备份,还未开始备份的虚拟机将在下一个备份周期优先进行备份', + weekBackupTips:'超出持续时长后,正在备份的虚拟机继续备份,还未开始备份的虚拟机将在下一个备份周期优先进行备份', + singleBackupTimeOut:'单台超时时间是指备份策略中单台云服务器的备份超时时间。超出超时时间后,云服务器认定为超时,执行备份策略中下一条云服务器备份' +} diff --git a/src/assets/common/lang/zh/resourceMgr.js b/src/assets/common/lang/zh/resourceMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..ae627effa5e63cab717545187731ce611f9ebed9 --- /dev/null +++ b/src/assets/common/lang/zh/resourceMgr.js @@ -0,0 +1,414 @@ +// 资源管理 resourceMgr +export default { + // 物理集群 + allcluster: "全部集群", // 全部集群 + plccluster: "请选择集群", // 请选择集群 + clusterName: "集群名称", // 集群名称 + loginCluster: "登入集群后台", // 登入集群后台 + loginVcenter: "登入vCenter", // 登入Vcenter + clusterNameplaceholder: "请输入集群名称", // 请输入集群名称 + clusterStatus: "集群状态", // 集群状态 + BMC_IPaddress: "BMC IP地址", + clusterStatusObj: { + ONLINE: "在线", // "在线", + OFFLINE: "离线", // "离线", + EXCEPTION: "异常", // "异常", + }, + bmcIpCantNull: "BMC IP不得为空", + clusterRemark: "描述", // 描述 + bmcAccountCantNull: "BMC账号不得为空", + clusterUrl: "集群URL", // 集群URL + clusterUrlWranMsg: "ip或端口号输入有误", // ip或端口号输入有误 + clusterUrlIpWranMsg: "ip地址输入有误", // ip地址输入有误 + clusterUrlPortWranMsg: "端口号输入有误", // 端口号输入有误 + clusterUrlprotocol: "协议", // 协议 + clusterUrlprotNum: "端口号", // 端口号 + clusterUrlContent: "输入所有CM/CM_VDI节点的IP,格式http或https", // 输入所有CM/CM_VDI节点的IP,格式http或https + clustertype: "集群类型", // 集群类型 + clustertypeplaceholder: "请选择集群类型", // 集群类型 + clustercpurate: "CPU利用率", // CPU利用率 + clustermemoryrate: "内存利用率", // 内存利用率 + clusterstoragerate: "存储利用率", // 存储利用率 + toCluster: "登入", // 登入 + hostIpCantNull: "主机管理IP不得为空", + rootPasswordCantNull: "The root password cannot be empty", + clusterAdd: "添加物理集群", // 添加物理集群 + clusterAddtSussess: "创建物理集群成功!", // 添加物理集群 + clusterEdit: "编辑物理集群", // 编辑物理集群 + clusterEditSussess: "编辑物理集群成功!", // 编辑物理集群 + + clusterEdleteConfirm: "确定删除该物理集群吗?", // 确定删除该物理集群吗? + clusterEdleteSuccess: "删除物理集群成功!", // 删除物理集群成功! + clusterBaseInfo: "基本信息", // 基本信息 + clusterStorageInfo: "存储信息", // 存储信息 + clusterSettingInfo: "配置信息", // 存储信息 + clusterConfirmInfo: "确认信息", // 确认信息 + + clusterAdminName: "用户名", // 用户名 + clusterAdmin: "集群管理员", // 集群管理员 + clusterAdminPasswordplac: "请输入集群管理员密码", // 请输入集群管理员密码 + clusterAdminPassword: "密码", // 密码 + clusterEditPassword: "修改密码", // 修改密码 + rootPassword: "root密码", // root密码 + rootPasswordplac: "请输入root密码", // 请输入root密码 + + clusterStorage: "存储", // 存储 + clusterStorageName: "名称", // 名称 + storageName: "存储名称", // 存储名称 + storageType: "存储类型", // 存储类型 + storageStatus: "存储状态", // 存储状态 + storageUsage: "存储用途", // 存储用途 + storagetotalSize: "总容量", // 存储用途 + storageUsedSize: "可用容量", // 存储用途 + storageUserate: "利用率", // 存储用途 + clusterSummary: "概要", // 概要 + clusterPhysicalHost: "物理主机", // 物理主机 + clusterVersion: "集群版本", // 集群版本 + clusterCeateTime: "添加时间", // 添加时间 + cpuModelName: "名称", // 名称 + cpuModelstatus: "状态", // 状态 + cpuModelType: "CPU类型", // CPU类型 + cpuModelserverArch: "服务器架构", // 服务器架构 + cpuModelserverType: "服务器类型", // 服务器类型 + cpuModelcpurate: "CPU利用率", // CPU利用率 + cpuModelmemoryrate: "内存利用率", // 内存利用率 + + zoneName: "可用区", // 可用区 + zoneNameDesc: "可用区名称", // 可用区名称 + zoneRemark: "描述", // 描述 + zoneType: "资源类型", // 资源类型 + zoneCPUallocationratio: "CPU分配比", // CPU分配比 + zoneMemoryallocationratio: "内存分配比", // 内存分配比 + zoneStorageallocationratio: "存储分配比", // 存储分配比 + cpuTotal: "CPU总容量", // CPU总容量 + memTotal: "内存总容量", // 内存总容量 + storageTotal: "存储总容量", // 存储总容量 + zoneAdd: "添加可用区", // 添加可用区 + zoneAddSuccess: "创建可用区成功!", // 创建可用区成功! + zoneEdit: "编辑可用区", // 编辑可用区 + zoneEditSuccess: "编辑可用区成功!", // 编辑可用区成功! + zoneDleteConfirm: "确定删除该可用区吗?", // 确定删除该可用区吗? + zoneDleteSuccess: "删除可用区成功!", //删除可用区成功! + + zoneBaseInfo: "基本信息", // 基本信息 + zoneCluster: "关联集群", // 存储信息 + zoneConfirmInfo: "确认信息", // 确认信息 + zoneNoClusterTo: "没有合适的物理集群? 前往", // 没有合适的物理集群? 前往 + zoneClusterDesc: "物理集群", // 物理集群 + zoneSummary: "概要", // 概要 + zoneCreateTime: "添加时间", // 添加时间 + + vdcName: "名称", // 名称 + vdcparentName: "上级 VDC", // 上级vdc + vdcorgName: "组织机构", // 组织机构 + vdcnetworkNum: "网络", // 网络 + vdcCPUallocationratio: "CPU分配比", // CPU分配比 + vdcmemoryallocationratio: "内存分配比", // 内存分配比 + vdcStorageallocationratio: "存储分配比", // 存储分配比 + vdcAdd: "创建VDC", // 创建虚拟数据中心 + vdcAddSuccess: "创建VDC成功!", // 创建虚拟数据中心成功!' + vdcEdit: "编辑VDC", // 编辑虚拟数据中心 + vdcEditSuccess: "编辑VDC成功!", // 编辑虚拟数据中心成功! + cdcDleteConfirm: "确定删除该VDC吗?", // 创建虚拟数据中心 + cdcDdleteSuccess: "删除该VDC成功!", // 创建虚拟数据中心 + vdcBaseInfo: "基本信息", // 基本信息 + vdcResouse: "分配资源", // 分配资源 + vdcConfirmInfo: "确认信息", // 确认信息 + vdcArchitecture: "架构", // 架构 + vdcUsable: "可用", // 可用 + vdcTotal: "总大小", // 总大小 + vdcAllocationChild: "已使用", // 总大小 + vdcClusterDesc: "物理集群", // 物理集群 + vdcNetWorkDesc: "名称", // 名称 + vdcallocationCpuEditMsg: "分配CPU数不能大于上级可用数,并且不能小于已使用数", // '分配CPU数不能大于上级可用数,并且不能小于已使用数' + vdcallocationCpuAddMsg: "分配CPU数为大于1的正整数,且小于可用cpu数", // '分配CPU数不能大于上级可用数,并且不能小于已使用数' + vdcallocationCpuMinMsg: "分配CPU数不能小于已使用数", // '分配CPU数不能小于已使用数' + vdcallocationMemEditMsg: "分配内存数不能大于上级可用数,并且不能小于已使用数", // '分配内存不能大于上级可用数,并且不能小于已使用数' + vdcallocationMemAddMsg: "分配内存数为大于1的正整数,且小于可用内存数", // '分配CPU数不能大于上级可用数,并且不能小于已使用数' + vdcallocationMemMinMsg: "分配内存数不能小于已使用数", // '分配内存数不能小于已使用数' + allocationStorageAddMsg: "分配存储数为大于1的正整数,且小于可用存储数", // 分配存储大小为大于1的正整数,且小于可用存储数 + allocationStorageEditMsg: + "分配存储数不能大于上级可用数,并且不能小于已使用数", // 分配存储数不能大于上级可用数,并且不能小于已使用数 + allocationStorageMinMsg: "分配存储数不能小于已使用数", // '分配存储数不能小于已使用数' + vdcNetWorkResouse: "网络资源信息", // 网络资源信息 + vdcSummary: "概要", // 概要 + vdccreateTime: "添加时间", // 添加时间 + vdc: { + nomatchingVDC: "无匹配VDC,前往", // 无匹配VDC,前往 No matching VDC, go to + bindVDC: "绑定VDC", // 绑定VDC,前往 bind VDC + }, + vdcallocatedtooltip: "分配资源额度,其可超过资源总量", // 分配资源额度,其可超过资源总量 + vdcSupCanassigned: "上级可分配", // 上级可分配 + firstvdcSupCanassigned: "资源总量", // 资源总量 + vdcAllocateCPUused: "分配CPU数应大于已使用CPU数", // 分配CPU数应大于已使用CPU数 + vdcAllocateCPUequal: "分配CPU数为大于等于1的正整数", // 分配CPU数为大于等于1的正整数 + vdcAllocateMemused: "分配内存数应大于已使用内存数", // 分配内存数应大于已使用内存数 + vdcAllocateMemequal: "分配内存数为大于等于1的正整数", // 分配内存数为大于等于1的正整数 + vdcAllocateStorageused: "分配存储数应大于已使用存储数", // 分配存储数应大于已使用存储数 + vdcAllocateStorageequal: "分配存储大小为大于等于1的正整数", // 分配存储大小为大于等于1的正整数 + vdcauditOpinion: "变更原因", // 变更原因不能为空 + vdcauditOpinionEmpt: "变更原因不能为空", // 变更原因不能为空 + vdcauditOpinionspecialChar: "变更原因只能由中文、英文、数字组合", // 变更原因只能由中文、英文、数字组合 + vdcSubAssigned: "已分配下级", // 已分配下级 + vdcThislevelUsed: "本级已使用", // 本级已使用 + + zonelist: "可用区列表", // 可用区列表 + zoneerror: "已过期", // 已过期 + zonewarn: "即将过期", // 即将过期 + + start_servervm: "开机", // 开机 + shutdown_servervm: "关机", // 关机 + shutdownSucc: "关机成功!", // 关机成功! + shutdownErr: "关机失败!", // 关机失败! + deleteSuccess: "删除成功", + shutdownTips: "确认将裸金属服务器“{name}”关机?", + shutdownManyTips: "确认批量将裸金属服务器“{name}”关机?", + restart_servervm: "重启", // 重启 + restartSucc: "重启成功!", // 重启成功! + restartErr: "重启失败!", // 重启失败! + servervmmore: "更多", // 更多 + batchAbort: "强制关机", // 强制关机 + batchForceReboot: "强制重启", // 强制重启 + batchDelete: "删除", // 删除 + deleteSucc: "删除成功!", // 删除成功! + deleteErr: "删除失败!", // 删除失败! + batchstartSucc: "批量开机成功!", // 批量开机成功! + batchstartErr: "批量开机失败!", // 批量开机失败! + batchcloseSucc: "批量关机成功!", // 批量关机成功! + batchcloseErr: "批量关机失败!", // 批量关机失败! + batchrebootSucc: "批量重启成功!", // 批量重启成功! + batchrebootErr: "批量重启失败!", // 批量重启失败! + batchDeleteSucc: "删除成功!", // 删除成功! + batchDeleteErr: "删除失败!", // 删除失败! + deleteconfirmMsg: "确定要删除所选云服务器?", // 确定要删除所选云服务器? + deleteconfirmTit: "删除", // 删除 + abortconfirmMsg: + "此操作可能导致云服务器内尚未保存的数据丢失,是否确认强制关机?", // 此操作可能导致云服务器内尚未保存的数据丢失,是否确认强制关机? + abortconfirmTit: "强制关机", // 强制关机 + abortSucc: "强制关机成功!", // 强制关机成功! + abortErr: "强制关机失败!", // 强制关机失败! + + forcedRestartconfirmMsg: + "此操作可能导致云服务器内尚未保存的数据丢失,是否确认强制重启?", // 此操作可能导致云服务器内尚未保存的数据丢失,是否确认强制关机? + forcedRestartconfirmTit: "强制重启", // 强制关机 + forcedRestartSucc: "强制重启成功!", // 强制重启成功! + forcedRestartErr: "强制重启失败!", // 强制重启失败! + openVnc: "控制台", // 控制台 + systemImg: "系统", // 系统 + aliasName: "名称", // 名称 + zonestatus: "状态", // 状态 + zonetaskStatus: "任务状态", // 任务状态 + zoneorgName: "所属组织", // 所属组织 + zoneuserName: "所属用户", // 所属用户 + zoneclusterName: "所属集群", // 所属集群 + zoneip: "IP地址", // IP地址 + zoneos: "操作系统", // 操作系统 + architecture: "架构", // 架构 + zonecpu: "CPU(核)", // CPU(核) + zonememory: "内存(GB)", // 内存(GB) + zonedisks: "磁盘(GB)", // 磁盘(GB) + zoneusage: "利用率", // 利用率 + zonecreateDate: "创建时间", // 创建时间 + zonedeadlineTime: "到期时间(天)", // 到期时间(天) + zonedescription: "描述", // 描述 + zoneAVAILABLE: "在线", // 在线 + zoneOFFLINE: "离线", // 离线 + zoneINSTALLING: "安装", // 安装 + zoneCONNECTED: "已连接", // 已连接 + zoneSUSPEND: "暂停", // 暂停 + zoneOVERDUE: "已过期", // 已过期 + zoneUNKNOWN: "其他", // 其他 + startServerVm: "开机成功", // 开机成功 + startServerVmErr: "开机失败", // 开机失败 + zoneLEISURE: "空闲", // 空闲 + zoneNEW: "新建", // 新建 + zonetaskINSTALLING: "安装中", // 安装中 + zoneNEWFAILED: "新建失败", // 新建失败 + zoneINSTALLFAILED: "安装失败", // 安装失败 + zoneCREATING: "正在创建", // 正在创建 + zoneSTARTING: "正在开机", // 正在开机 + zoneSHUTDOWNING: "正在关机", // 正在关机 + zoneREBOOTING: "正在重启", // 正在重启 + zoneSUSPENDING: "正在暂停", // 正在暂停 + zoneRESUMING: "正在唤醒", // 正在唤醒 + zoneVOLUME_MIGRATING: "正在存储迁移", // 正在存储迁移 + zoneHOST_MIGRATING: "正在主机迁移", // 正在主机迁移 + zoneBACKUP_RUNNING: "正在备份", // 正在备份 + zoneBACKUP_RECOVERING: "正在备份恢复", // 正在备份恢复 + zoneSNAPSHOT_RUNNING: "正在快照", // 正在快照 + zoneSNAPSHOT_RECOVERING: "正在快照恢复", // 正在快照恢复 + zoneIMPORTING: "正在导入", // 正在导入 + zoneEXPORTING: "正在导出", // 正在导出 + zoneCLONING: "正在克隆", // 正在克隆 + zoneDISK_COPYING: "正在磁盘复制", // 正在磁盘复制 + zoneCREATE_KCP_IMAGE: "正在制作模板镜像", // 正在制作模板镜像 + zoneSNAPSHOT_RUNNING: "正在快照", // 正在快照 + zoneOther: "其他", // 其他 + type: "类型", // 类型 + userName: "所有者", // 所有者 + vncAddr: "VNC地址", // VNC地址 + operationHours: "开机时间", // 开机时间 + powerOnDate: "运行时间", // 运行时间 + selectCluster: "计算资源", // 计算资源 + runMachine: "运行主机", // 运行主机 + monitor: "监控", // 监控 + log: "任务", // 任务 + BMCAccount: "BMC账号", + nameCantNull: "名称不得为空", + surePowerOffTips: "确认认将“{name}”关机?", + addBareMetal: "添加裸金属服务器", + editBareMetal: "编辑裸金属服务器", + summary: { + summary: "概要", // 概要 + type: "告警类型", // 告警类型 + date: "告警时间", // 告警时间 + severity: "告警等级", // 告警等级 + info: "告警详情", // 告警详情 + objectName: "告警对象", // 告警对象 + }, + network: { + network: "网络", // 网络 + numberOfQueues: "队列个数", // Number of queues + networkName: "网络名称", // 网络名称 + virtualSwitch: "虚拟交换机", // 虚拟交换机 + portGroup: "所属端口组", // 所属端口组 + macAddress: "MAC地址", // MAC地址 + ipAddress: "IP地址", // IP地址 + pool: "地址池", // 地址池 + uploadSpend: "下行带宽(KB/S)", // 下行带宽(KB/S) + downloadSpend: "上行带宽(KB/S)", // 上行带宽(KB/S) + setUp: "网络设置", //网络设置 + cluster: "物理集群", //物理集群 + selectcluster: "请选择物理集群", //请选择物理集群 + networkName: "网络名称", //网络名称 + networkNameplac: "请输入网络名称", //请输入网络名称 + networkNametooltip: "支持中文、英文、数字,限定2~18字数", //支持中文、英文、数字,限定2~18字数 + modelType: "网卡类型", //网卡类型 + networkCard: "网卡", //网卡 + modelTypeplac: "请选择网卡类型", //请选择网卡类型 + addressPool: "地址池", //地址池 + addressPoolplac: "请选择地址池", //请选择地址池 + virtualSwitch: "虚拟交换机", //虚拟交换机 + virtualSwitchplac: "请选择虚拟交换机", //请选择虚拟交换机 + portGroup: "端口组", //端口组 + portGroupplac: "请选择端口组", //请选择端口组 + permission: "安全组", //安全组 + permissionresouse: "安全组资源", //安全组资源 + effectivepermission: "生效安全组资源", //生效安全组资源 + networkNamelen: "名称长度应控制在 2 ~ 18 个字符", //名称长度应控制在 2 ~ 18 个字符 + securityPolicy: "安全策略", //安全策略 + virtualFirewallName: "虚拟防火墙", //虚拟防火墙 + virtualFirewallNamePlc: "请选择虚拟防护墙", //请选择虚拟防护墙 + networkHierarchy: "网络层级", + networkType: "网络类型", + none: "无", + netSpecEditSuccess: "网络规格编辑成功", //The network specifications were edited successfully + netSpecCreatSuccess: "网络规格创建成功", //The network specifications are created successfully + advacedSetting: "高级设置", //Advanced Settings + auto: "自动", //automatic + netSpecSec: "二级网络", //Secondary network + netSpec3rd: "三级网络", //Three-level network + netSpecName: "网络规格名称", + selectnetworkType: "请选择网络类型", + addNetTop1: " 没有合适的网络规格? 前往", + addNetTop2: "进入物理集群详情 -> 网络 -> 创建网络规格", + }, + task: { + action: "操作", // 操作 + objName: "对象名称", // 对象名称 + operUser: "操作用户", // 操作用户 + startTime: "开始时间", // 开始时间 + finishTime: "结束时间", // 结束时间 + status: "状态", // 状态 + detail: "详情", // 详情 + reason: "原因", // 原因 + }, + bindTheVirtualFirewall: "绑定虚拟防火墙", // 绑定虚拟防火墙 + virtualFirewallName: "名称", // 名称 + virtualFirewallRemark: "说明", // 说明 + + statuscell: { + OVERDUE: "已过期", // 已过期 + AVAILABLE: "在线", // 在线 + CONNECTED: "已连接", // 已连接 + INSTALLING: "安装", // 安装 + SUSPEND: "暂停", // 暂停 + UNKNOWN: "其他", // 其他 + ONLINE: "在线", // 在线 + OFFLINE: "离线", // 离线 + HALT: "异常", // 异常 + EXCEPTION: "异常", // 异常 + NORMAL: "正常", // 正常 + WARNING: "警告", // 警告 + ERROR: "错误", // 错误 + POWERED_ON: "在线", // 在线 + POWERED_OFF: "关闭", // 关闭 + }, + + // VMware纳管 + vMwareMgr: { + name: "名称", // 名称 + namePlac: "名称不能为空", // 名称不能为空 + remark: "描述", // 描述 + vcenterIp: "ip地址", // ip地址 + vcenterPort: "端口", // 端口 + vcenterAccount: "账号", // 账号 + vcenterAdminName: "用户名", // 用户名 + vcenterAdminNameNot: "用户名不能为空", // 用户名不能为空 + vcenterAdminNamePlac: "输入vCenter管理员用户名", // 输入vCenter管理员用户名 + vcenterAdminPassword: "密码", // 密码 + vcenterAdminPasswordNot: "密码不能为空", // 密码不能为空 + vcenterAdminPasswordPlac: "请输入密码", // 请输入密码 + addvMwareMgr: "添加VMware纳管", // 添加VMware纳管 + editvMwareMgr: "编辑VMware纳管", // 编辑VMware纳管 + type: "类型", // 类型 + typePlac: "类型不能为空", // 类型不能为空 + addSucc: "添加成功", // 添加成功 + editSucc: "编辑成功", // 编辑成功 + vmlist: "云服务器列表", // 云服务器列表 + powerStatus: "状态", // 状态 + memory: "内存", // 内存 + }, + + storage: { + enable: "启用", + disable: "禁用", + enableState: "启用状态", + sure: "确定", + cancel: "取消", + disTips: "禁用后,自服务用户的云服务器不可使用此存储池", + enableTips: "启用后,自服务用户的云服务器可使用此存储池", + success: "成功", + disk: "存储", // 存储 + diskName: "名称", // 名称 + device: "存储类型", // 存储类型 + targetBus: "存储控制器", // 存储控制器 + diskCapacity: "容量(G)", // 容量(G) + sourceFile: "存储路径", // 存储路径 + raw: "块设备", // 块设备 + existed: "本地磁盘", // 本地磁盘 + qcow2: "本地磁盘", // 本地磁盘 + }, + addSpec: "添加规格", + delSpec: "删除规格", + layerNet2: "二层网络", + layerNet3: "三层网络", + delSpecTips: "此操作将删除该网络规格, 是否继续?", + delManySpecTips: "此操作将批量删除选中网络规格, 是否继续?", + tips: "提示", + pubNet: "公有网络", + vpcNet: "VPC网络", + netSeg: "网络段", + editNetSpec: "编辑网络规格", + createNetSpec: "创建网络规格", + ipAcq: "IP获取", + selectNetLevel: "请选择网络层级", + selectCardType: "请选择网卡类型", + selectSecPolicy: "请选择安全策略", + selectVirFirewall: "请选择虚拟防火墙", + selectThreeLayerNet: "请选择三层网络", + selectEffectGroup: "请选择需要生效的安全组", + macPool: "mac地址池", + netSepcDetail: "网络规格详情", + autoDhcp: "自动(DHCP)", +}; diff --git a/src/assets/common/lang/zh/serverVirtualization.js b/src/assets/common/lang/zh/serverVirtualization.js new file mode 100644 index 0000000000000000000000000000000000000000..b8ed8f97d714bd2e741e00ae10b8f99f7fa2332c --- /dev/null +++ b/src/assets/common/lang/zh/serverVirtualization.js @@ -0,0 +1,128 @@ +/** ****************** kcp及自服务云服务器详情-操作日志,参考mc将任务详情,和失败原因,进行国际化转移 *********************************/ +export default { + "ksvd.task.head.type": "类型", + "ksvd.task.head.create_time": "创建时间", + "ksvd.task.head.start_time": "开始时间", + "ksvd.task.head.finish_time": "结束时间", + "ksvd.task.head.action": "操作", + "ksvd.task.head.objName": "对象名称", + "ksvd.task.head.operUser": "操作用户", + "ksvd.task.head.status": "状态", + "ksvd.task.head.reason": "原因", + "ksvd.task.head.detail": "详情", + "serverVirutal.deskTop.showAllTask": "查看全部任务", + "serverVirutal.deskTop.allStatus": "全部状态", + "serverVirutal.deskTop.doingStatus": "进行中", + "serverVirutal.deskTop.failStatus": "失败", + "serverVirutal.deskTop.successStatus": "成功", + "serverVirutal.deskTop.completeStatus": "完成", + "serverVirutal.deskTop.taskProgress": "任务进度", + "ksvd.task.action.servervirtual_servervirtauledit": "云服务器编辑", + "ksvd.task.action.servervirtual_servervirtaulhostmigrate": "主机位置迁移", + "ksvd.task.action.servervirtual_servervirtaulhoststoragemigrate": "主机与存储迁移", + "ksvd.task.action.servervirtual_servervirtualmigrate": "存储迁移", + "serverVirtualizationService.ForceReboot": "强制重启", + "serverVirtualizationService.Reboot": "重启", + "serverVirtualizationService.PowerOn": "开机", + "serverVirtualizationService.ShutDown": "关机", + "serverVirtualizationService.Resume": "唤醒", + "serverVirtualizationService.Suspend": "暂停", + "serverVirtualizationService.ForceShutDown": "强制关机", + "serverVirtualizationService.HardDelete": "直接删除", + "serverVirtualizationService.DeleteSoft": "移入回收站", + "serverVirtualizationService.fullClone": "完整克隆", + "serverVirtualizationService.linkClone": "链接克隆", + "serverVirtualizationService.createVirtualService": "创建云服务器", + "serverVirtualizationService.createVirtualServiceByTemplate": "基于模板创建云服务器", + "serverVirtualizationService.setVmExport": "云服务器导出", + "serverVirtualizationService.importTemplateImage": "导入云服务器", + "server.vm.snapshot.create.memSnapshot": "创建内存快照", + "server.vm.snapshot.create.noMemSnapshot": "创建非内存快照", + "ksvd.task.action.servervirtual_servervirtualdeletesnapshot": "删除快照", + "ksvd.task.action.servervirtual_servervirtualapplysnapshot": "恢复快照", + "ksvd.task.action.servervirtual_serverbatchvirtualapplysnapshot": "批量恢复快照", + "ksvd.task.action.servervirtual_serverbatchvirtualcreatesnapshot": "批量创建快照", + "ksvd.task.action.servervirtual_servervirtaulbackup": "创建备份", + "ksvd.task.action.servervirtual_servervirtaulrecoverbackup": "恢复备份", + "ksvd.task.action.servervirtual_servervirtauldeletebackup": "删除备份", + "ksvd.task.action.servervirtual_servervirtauldiskcopy": "磁盘文件拷贝", + "serverVirtualizationService.edit.vmName": "名称", + "serverVirtualizationService.Description": "描述", + "serverVirtualizationService.Cluster": "计算资源", + "serverVirtualizationService.edit.vcpuSocket": "CPU个数", + "serverVirtualizationService.edit.vcpuCores": "CPU核数", + "serverVirtualizationService.edit.cpuMode": "CPU模式", + "serverVirtualizationService.cpu.schedulingPriority": "调度优先级", + "serverVirtualizationService.cpu.limit": "限制(MHz)", + "serverVirtualizationService.edit.numaConfig": "虚拟NUMA", + "serverVirtualizationService.edit.memory": "内存", + "serverVirtualizationService.edit.memoryHugeConfig": "大页内存", + "serverVirtualizationService.memory.recovery": "内存回收", + "serverVirtualizationService.edit.addDisk": "增加磁盘", + "serverVirtualizationService.edit.delDisk": "删除磁盘", + "serverVirtualizationService.Disk": "磁盘设备(GB)", + "serverVirtualizationService.DiskType": "磁盘类型", + "serverVirtualizationService.edit.cacheMode": "缓存方式", + "serverVirtualizationService.edit.provisionType": "置备方式", + "serverVirtualizationService.edit.disk.ioRange": "限制I/O速率", + "serverVirtualizationService.edit.disk.iopsRange": "限制IOPS", + "serverVirtualizationService.edit.addInterface": "增加网卡", + "serverVirtualizationService.edit.delInterface": "删除网卡", + "serverVirtualizationService.InterfaceType": "网络类型", + "serverVirtualizationService.edit.NetworkCardType": "网卡类型", + "serverVirtualizationService.edit.macAddressPool": "地址池", + "serverVirtualizationService.edit.virtualSwitch": "虚拟交换机", + "serverVirtualizationService.edit.portGroup": "端口组", + "serverVirtualizationService.edit.ipAddress": "IP地址", + "serverVirtualizationService.edit.macAddress": "MAC地址", + "serverVirtualizationService.queueCount": "队列个数", + "serverVirtualizationService.mtuCount": "MTU", + "serverVirtualizationService.hotDrawing": "热拔", + "serverVirtualizationService.edit.addIso": "增加光驱", + "serverVirtualizationService.edit.delIso": "删除光驱", + "serverVirtualizationService.edit.imageFile": "镜像文件", + "serverVirtualizationService.edit.editDisk": "磁盘", + "serverVirtualizationService.edit.editInterface": "网卡", + "serverVirtualizationService.edit.editIso": "光驱", + "serverVirtualizationService.edit.editUsb": "USB", + "serverVirtualizationService.edit.graphicsCardType": "显卡类型", + "serverVirtualizationService.edit.mouseType": "鼠标类型", + "serverVirtualizationService.edit.bios": "BIOS设置", + "serverVirtualizationService.edit.biosFile": "BIOS文件", + "serverVirtualizationService.edit.biosWaitTime": "BIOS停留时间", + "serverVirtualizationService.edit.addUsb": "新增USB", + "serverVirtualizationService.edit.delUsb": "删除USB", + "serverVirtualizationService.edit.usbHost": "主机", + "serverVirtualizationService.edit.vmUsb": "USB设备", + "serverVirtualizationService.edit.vmHA": "云服务器HA", + "serverVirtualizationService.edit.hostHA": "宿主机HA", + "serverVirutal.dynamicPolicy.enableCpuDynamic": "启用cpu热添加", + "serverVirutal.dynamicPolicy.enableMemDynamic": "启用内存热添加", + "serverVirtualizationService.drs.aotuMigrateSwitch": "自动迁移", + "serverVirtualizationService.edit.followHostStartAuto": "系统启动时,自动运行此云服务器", + "serverVirtualizationService.edit.bootOrder": "引导顺序", + "serverVirtualizationService.edit.remoteOpen": "开启远程控制台", + "serverVirtualizationService.edit.remotePassword": "访问密码", + "serverVirtualizationService.wholeness": "完整性校验", + "serverVirtualizationService.edit.existedTime": "有效期", + "serverVirtualizationService.edit.noTime": "无期限", + "serverVirtualizationService.edit.customizeTime": "自定义使用到", + "serverVirtualizationService.edit.host-passthrough": "直通模式", + "serverVirtualizationService.edit.host-model": "主机匹配模式", + "serverVirtualizationService.edit.custom": "兼容", + "serverVirtualizationService.cpu.schedulingPriorityLow": "低", + "serverVirtualizationService.cpu.schedulingPriorityMiddle": "中", + "serverVirtualizationService.cpu.schedulingPriorityHigh": "高", + "serverVirtualizationService.edit.graphicsCardQXL": "QXL高性能显卡", + "serverVirtualizationService.edit.graphicsCardVGA": "标准VGA显卡", + "serverVirtualizationService.edit.graphicsCardCirrus": "Cirrus高性能显卡", + "serverVirtualizationService.edit.virtio": "virtio类型显卡", + "server.virtual.edit.machine.bios.type.legacy": "LEGACY启动", + "server.virtual.edit.machine.bios.type.uefi": "UEFI启动", + "server.virtual.edit.machine.bios.type.userUpload": "自定义启动", + "serverVirtualizationService.noConfig": "未配置", + "serverVirtualizationService.reOpen": "重启", + "serverVirtualizationService.byOther": "由其它服务器重建", + "serverVirtualizationService.close": "关闭", + "serverVirtualizationService.open": "开启" +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/taskcenter.js b/src/assets/common/lang/zh/taskcenter.js new file mode 100644 index 0000000000000000000000000000000000000000..ef583daa12939c31c081f8b0898d6d386651049c --- /dev/null +++ b/src/assets/common/lang/zh/taskcenter.js @@ -0,0 +1,36 @@ +// taskcenter 任务中心 +export default { + taskcenter: { + task: '任务', // 任务 + checkTheDetails: '查看详情', // 查看详情 + taskName: '任务名称', // 任务名称 + taskObject: '对象', // 对象 + taskObjectType: '对象类型', // 对象类型 + taskStatus: '状态', // 状态 + startingTime: '开始时间', // 开始时间 + endTime: '结束时间', // 结束时间 + operator: '操作者', // 操作者 + operatorIp: '操作用户IP', // 操作用户IP + organization: '所属组织', // 所属组织 + availabilityZone: '可用区', // 可用区 + canceling: '取消中', // 取消中 + processing: '进行中', // 进行中 + tobestarted: '待开始', // 待开始 + fail: '失败', // 失败 + success: '成功', // 成功 + running: '执行中', // 执行中 + canceled: '已取消', // 已取消 + timeout: '超时', // 超时 + unknown: '未知', // 未知 + allTasksPlac: '请选择任务', // 请选择任务 + allTasks: '全部任务', // 全部任务 + allStatusPlac: '请选择状态', // 请选择状态 + allStatus: '全部状态', // 全部状态 + taskDescription: '任务描述', // 任务描述 + failureReason: '失败原因', // 失败原因 + taskDesk: '任务台', // 任务台 + viewHistoricalTasks: '查看历史任务', // 查看历史任务 + allTypes: '全部任务类型', // 全部任务类型 + allTypePlac: '请选择任务类型', // 请选择任务类型 + } +} \ No newline at end of file diff --git a/src/assets/common/lang/zh/transferMgr.js b/src/assets/common/lang/zh/transferMgr.js new file mode 100644 index 0000000000000000000000000000000000000000..bc03c80d1595a8a4d05bba9205635b68a9936bfa --- /dev/null +++ b/src/assets/common/lang/zh/transferMgr.js @@ -0,0 +1,20 @@ +// transferMgr 云服务器转移 +export default { + transferMgr: { + transferMsg: '跨组织转移云服务器,会断开云服务器网络;需为云服务器配置网络。', // 跨组织转移云服务器,会断开云服务器网络;需为云服务器配置网络。 + userName: '用户名称', // 用户名称 + realName: '真实姓名', // 真实姓名 + roleName: '角色名称', // 角色名称 + orgName: '所属组织', // 所属组织 + type: '类型', // 类型 + selectUser: '选择用户', // 选择用户 + selectUserPlac: '请选择用户', // 选择用户 + selectOrg: '选择组织', // 选择组织 + selectOrgPlac: '请选择组织', // 请选择组织 + selectOrgUser: '选择组织用户', // 选择组织用户 + selectOrgUserPlac: '请选择组织用户', // 请选择组织用户 + sameOrgTransfer: '同组织转移', // 同组织转移 + transferAcrossOrg: '跨组织转移', // 跨组织转移 + transfer: '转移' + } +} \ No newline at end of file diff --git a/src/assets/hnkylin/Kylin.png b/src/assets/hnkylin/Kylin.png new file mode 100644 index 0000000000000000000000000000000000000000..ecc7d97dda25ce884bcc52b6a8afc31b2e26c07f Binary files /dev/null and b/src/assets/hnkylin/Kylin.png differ diff --git a/src/assets/hnkylin/ad_login.png b/src/assets/hnkylin/ad_login.png new file mode 100644 index 0000000000000000000000000000000000000000..c6e6fe35ed79c3c5b8a293060249a695cb9924b9 Binary files /dev/null and b/src/assets/hnkylin/ad_login.png differ diff --git a/src/assets/hnkylin/bigbg.png b/src/assets/hnkylin/bigbg.png new file mode 100644 index 0000000000000000000000000000000000000000..6d53a931aaa939f5f50d1dc39e2d6882da0daf02 Binary files /dev/null and b/src/assets/hnkylin/bigbg.png differ diff --git a/src/assets/hnkylin/cant-brz.png b/src/assets/hnkylin/cant-brz.png new file mode 100644 index 0000000000000000000000000000000000000000..9853c534b81576f8494ff526e8d8c47d1c34fce6 Binary files /dev/null and b/src/assets/hnkylin/cant-brz.png differ diff --git a/src/assets/hnkylin/dr-explain.png b/src/assets/hnkylin/dr-explain.png new file mode 100644 index 0000000000000000000000000000000000000000..8e8587dad0e640cb98e6860275a8871cf0131232 Binary files /dev/null and b/src/assets/hnkylin/dr-explain.png differ diff --git a/src/assets/hnkylin/icon1.png b/src/assets/hnkylin/icon1.png new file mode 100644 index 0000000000000000000000000000000000000000..c166e943f937797fb57b6fff14556d4257d742b4 Binary files /dev/null and b/src/assets/hnkylin/icon1.png differ diff --git a/src/assets/hnkylin/icon2.png b/src/assets/hnkylin/icon2.png new file mode 100644 index 0000000000000000000000000000000000000000..70828136cbc9e93a9d58834085a98511891511ed Binary files /dev/null and b/src/assets/hnkylin/icon2.png differ diff --git a/src/assets/hnkylin/kylin-logo.png b/src/assets/hnkylin/kylin-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..46492988b01eaa5f23a214282bed4f6f06e75c30 Binary files /dev/null and b/src/assets/hnkylin/kylin-logo.png differ diff --git a/src/assets/hnkylin/kylin-vm.png b/src/assets/hnkylin/kylin-vm.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c4c4c699b0f1b3f4f3c489ba45792dc311e664 Binary files /dev/null and b/src/assets/hnkylin/kylin-vm.png differ diff --git a/src/assets/hnkylin/line.png b/src/assets/hnkylin/line.png new file mode 100644 index 0000000000000000000000000000000000000000..24bdaa1dc721d662483645365063694f4205ae77 Binary files /dev/null and b/src/assets/hnkylin/line.png differ diff --git a/src/assets/hnkylin/main-server.png b/src/assets/hnkylin/main-server.png new file mode 100644 index 0000000000000000000000000000000000000000..41d550c6e2e0e429cbfb3f4c6b749513bc7c8e52 Binary files /dev/null and b/src/assets/hnkylin/main-server.png differ diff --git a/src/assets/hnkylin/main2sleaver.png b/src/assets/hnkylin/main2sleaver.png new file mode 100644 index 0000000000000000000000000000000000000000..69700233caedb000c752b0fe273b530b09ad598e Binary files /dev/null and b/src/assets/hnkylin/main2sleaver.png differ diff --git a/src/assets/hnkylin/online-brz.png b/src/assets/hnkylin/online-brz.png new file mode 100644 index 0000000000000000000000000000000000000000..516a20324ccf46e68beaf05e5fac098220048382 Binary files /dev/null and b/src/assets/hnkylin/online-brz.png differ diff --git a/src/assets/hnkylin/password.png b/src/assets/hnkylin/password.png new file mode 100644 index 0000000000000000000000000000000000000000..558b95c162cda817b8e752c34df57a186fee2efd Binary files /dev/null and b/src/assets/hnkylin/password.png differ diff --git a/src/assets/hnkylin/s2m.png b/src/assets/hnkylin/s2m.png new file mode 100644 index 0000000000000000000000000000000000000000..de17c01f176d807c8c5b4bfceea3159130034b58 Binary files /dev/null and b/src/assets/hnkylin/s2m.png differ diff --git a/src/assets/hnkylin/slaverMain.png b/src/assets/hnkylin/slaverMain.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7a05b5af6dc6006f3c1e94bf7aa9bb543f5c3a Binary files /dev/null and b/src/assets/hnkylin/slaverMain.png differ diff --git a/src/assets/hnkylin/slaverSlaver.png b/src/assets/hnkylin/slaverSlaver.png new file mode 100644 index 0000000000000000000000000000000000000000..0a30c2f5ff2ca95049e198c957594eca969de969 Binary files /dev/null and b/src/assets/hnkylin/slaverSlaver.png differ diff --git a/src/assets/hnkylin/tooltip.png b/src/assets/hnkylin/tooltip.png new file mode 100644 index 0000000000000000000000000000000000000000..b99af1646eb318f621651e8446c923779cc52712 Binary files /dev/null and b/src/assets/hnkylin/tooltip.png differ diff --git a/src/assets/hnkylin/user.png b/src/assets/hnkylin/user.png new file mode 100644 index 0000000000000000000000000000000000000000..f3df0ffc80886f7b8a12c728da9203236adee57f Binary files /dev/null and b/src/assets/hnkylin/user.png differ diff --git a/src/assets/icon/u524.png b/src/assets/icon/u524.png new file mode 100644 index 0000000000000000000000000000000000000000..aa6e60891301ce4ca19058dbe2817672d961c07b Binary files /dev/null and b/src/assets/icon/u524.png differ diff --git a/src/assets/icon/u582.png b/src/assets/icon/u582.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ac8ec518f526fa25fd8aad3aa1aa930b132f4a Binary files /dev/null and b/src/assets/icon/u582.png differ diff --git a/src/assets/icon/wh.png b/src/assets/icon/wh.png new file mode 100644 index 0000000000000000000000000000000000000000..45af931a0616b175d8bf508b6e5de864f2660b88 Binary files /dev/null and b/src/assets/icon/wh.png differ diff --git a/src/assets/icon/whb.png b/src/assets/icon/whb.png new file mode 100644 index 0000000000000000000000000000000000000000..b99af1646eb318f621651e8446c923779cc52712 Binary files /dev/null and b/src/assets/icon/whb.png differ diff --git a/src/components/Breadcrumb/index.vue b/src/components/Breadcrumb/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..e5fdd52ce8eb203859bac70088ad36e7ca654493 --- /dev/null +++ b/src/components/Breadcrumb/index.vue @@ -0,0 +1,94 @@ + + + + + diff --git a/src/components/Footbtn/index.vue b/src/components/Footbtn/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..7be8643e5a73e02c08ad2b34a357bc382f7dbda3 --- /dev/null +++ b/src/components/Footbtn/index.vue @@ -0,0 +1,30 @@ + + + + + diff --git a/src/components/Hamburger/index.vue b/src/components/Hamburger/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..9a5cd1136f369c72064fc8a971c168e9b59f68ed --- /dev/null +++ b/src/components/Hamburger/index.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/components/Hightchart/index.vue b/src/components/Hightchart/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..a2ed55e56508cd085e941d3289377a342dc3b971 --- /dev/null +++ b/src/components/Hightchart/index.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/components/Mcallocationratio/index.vue b/src/components/Mcallocationratio/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..7f9b3512417ba993ddc6e8d833d9871a741b322c --- /dev/null +++ b/src/components/Mcallocationratio/index.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/components/MctablePro/index.vue b/src/components/MctablePro/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..27ecad20ad168d629e733f7158b13510b20657c2 --- /dev/null +++ b/src/components/MctablePro/index.vue @@ -0,0 +1,424 @@ + + + + + diff --git a/src/components/Operation/index.vue b/src/components/Operation/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..41426f91da5a327642fe7ac9fd8dc8c68081ffe9 --- /dev/null +++ b/src/components/Operation/index.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/src/components/SearchInput/index.vue b/src/components/SearchInput/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..ff1292f55878ee8c7c14fad39c9b127b1810db83 --- /dev/null +++ b/src/components/SearchInput/index.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/src/components/SvgIcon/index.vue b/src/components/SvgIcon/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..6101da4bce2073a95bf8a805f21244f1e963e012 --- /dev/null +++ b/src/components/SvgIcon/index.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/src/components/TreeSelect/index.vue b/src/components/TreeSelect/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..81cfebdf1073cc2eb2e3c1b9e9fa014c16dcedc4 --- /dev/null +++ b/src/components/TreeSelect/index.vue @@ -0,0 +1,169 @@ + + + + + \ No newline at end of file diff --git a/src/components/commonChart/index.vue b/src/components/commonChart/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..42bffb40d8f0dc392484ebf01a1dcd776a189b13 --- /dev/null +++ b/src/components/commonChart/index.vue @@ -0,0 +1,84 @@ + + + \ No newline at end of file diff --git a/src/components/getNetworkCardBox.vue b/src/components/getNetworkCardBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..ce851b3ba5c61bf43041129aaf58fd964c09805a --- /dev/null +++ b/src/components/getNetworkCardBox.vue @@ -0,0 +1,215 @@ + + + + diff --git a/src/components/headerBox/index.vue b/src/components/headerBox/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..174a36b34254b2cd84d68a09465608fc3e3cd9e4 --- /dev/null +++ b/src/components/headerBox/index.vue @@ -0,0 +1,57 @@ + + + diff --git a/src/components/mcbingChart/index.vue b/src/components/mcbingChart/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..f1ed40bfec1413ee9d91bd3d2dda28dd92ccc24b --- /dev/null +++ b/src/components/mcbingChart/index.vue @@ -0,0 +1,79 @@ + + + \ No newline at end of file diff --git a/src/components/messageBox.vue b/src/components/messageBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..3e8049d350ddfcc5f329ada9de61024fb331c0dd --- /dev/null +++ b/src/components/messageBox.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/components/networkSpecDetail.vue b/src/components/networkSpecDetail.vue new file mode 100644 index 0000000000000000000000000000000000000000..28bf00877e4d6ad6cbf482f616cac167d6d74889 --- /dev/null +++ b/src/components/networkSpecDetail.vue @@ -0,0 +1,197 @@ + + + diff --git a/src/components/statuscell/index.vue b/src/components/statuscell/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..c4551e8dc94c2f4cd3947574a11580f3b5ca915e --- /dev/null +++ b/src/components/statuscell/index.vue @@ -0,0 +1,161 @@ + + + + + diff --git a/src/components/tips.vue b/src/components/tips.vue new file mode 100644 index 0000000000000000000000000000000000000000..72442003a0f84e3199bd277407bbef73090e13b0 --- /dev/null +++ b/src/components/tips.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/components/utilsButton/index.vue b/src/components/utilsButton/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..a7aad4810ff322451dfb8eaad55f12f01b5fcd8d --- /dev/null +++ b/src/components/utilsButton/index.vue @@ -0,0 +1,61 @@ + + + diff --git a/src/directive/only-num/index.js b/src/directive/only-num/index.js new file mode 100644 index 0000000000000000000000000000000000000000..b8ff2dee66ba0cb51fca36fc4f1b141a7902a0a1 --- /dev/null +++ b/src/directive/only-num/index.js @@ -0,0 +1,13 @@ +import onlyNum from './num' + +const install = function(Vue) { + Vue.directive('only-num', onlyNum) +} + +if (window.Vue) { + window['v-only-num'] = onlyNum + Vue.use(install); // eslint-disable-line +} + +onlyNum.install = install +export default onlyNum diff --git a/src/directive/only-num/num.js b/src/directive/only-num/num.js new file mode 100644 index 0000000000000000000000000000000000000000..85b5bba015c71a461f9558ea750be5eb9c7f60e3 --- /dev/null +++ b/src/directive/only-num/num.js @@ -0,0 +1,9 @@ +export default { + bind(el, binding, vnode) { + const ele = el.tagName === 'INPUT' ? el : el.querySelector('input') + ele.oninput = function () { + let val = ele.value + ele.value = val.toString().replace(/\D|^0/g, '') // 清除"数字"和"."以外的字符 + } + } +} diff --git a/src/icons/index.js b/src/icons/index.js new file mode 100644 index 0000000000000000000000000000000000000000..138f99f8ce82dd9d89b1282976a9bbddfacaeb78 --- /dev/null +++ b/src/icons/index.js @@ -0,0 +1,11 @@ +import Vue from 'vue' +import SvgIcon from '@/components/SvgIcon'// svg component + +// register globally +Vue.component('svg-icon', SvgIcon) +// 引入当前文件夹下的svg文件夹中的svg图片 +// 注意 要通过class名称进行修改颜色的话需要删掉fill + +const req = require.context('./svg', false, /\.svg$/) +const requireAll = requireContext => requireContext.keys().map(requireContext) +requireAll(req) diff --git a/src/icons/svg/drLoading.svg b/src/icons/svg/drLoading.svg new file mode 100644 index 0000000000000000000000000000000000000000..6f3ddc6c1ea44fdd0bce76d9af67c7111b3065ff --- /dev/null +++ b/src/icons/svg/drLoading.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/icons/svg/recover.svg b/src/icons/svg/recover.svg new file mode 100644 index 0000000000000000000000000000000000000000..77a4d39317a11dce4d00ce3615d406b26eccb2d4 --- /dev/null +++ b/src/icons/svg/recover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/svg/warning.svg b/src/icons/svg/warning.svg new file mode 100644 index 0000000000000000000000000000000000000000..687a704afbbdfad92408212b33c054cb38731bb4 --- /dev/null +++ b/src/icons/svg/warning.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/icons/svgo.yml b/src/icons/svgo.yml new file mode 100644 index 0000000000000000000000000000000000000000..d11906aec26dd14372dd1b298f72270c38cce1b7 --- /dev/null +++ b/src/icons/svgo.yml @@ -0,0 +1,22 @@ +# replace default config + +# multipass: true +# full: true + +plugins: + + # - name + # + # or: + # - name: false + # - name: true + # + # or: + # - name: + # param1: 1 + # param2: 2 + +- removeAttrs: + attrs: + - 'fill' + - 'fill-rule' diff --git a/src/layout/components/AppMain.vue b/src/layout/components/AppMain.vue new file mode 100644 index 0000000000000000000000000000000000000000..f8df7f5ce703d540d94ddc89df4a5818a094ce49 --- /dev/null +++ b/src/layout/components/AppMain.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue new file mode 100644 index 0000000000000000000000000000000000000000..ade837c8b302a4b258a389b5f74b595ba72a9e90 --- /dev/null +++ b/src/layout/components/Navbar.vue @@ -0,0 +1,393 @@ + + + + + + diff --git a/src/layout/components/Sidebar/Item.vue b/src/layout/components/Sidebar/Item.vue new file mode 100644 index 0000000000000000000000000000000000000000..7ad2c5b850f3ded5f53310d3c37b129b452a6783 --- /dev/null +++ b/src/layout/components/Sidebar/Item.vue @@ -0,0 +1,47 @@ + + + diff --git a/src/layout/components/Sidebar/Link.vue b/src/layout/components/Sidebar/Link.vue new file mode 100644 index 0000000000000000000000000000000000000000..530b3d5b3749538745ffbf2fcb32547a4de3bfa3 --- /dev/null +++ b/src/layout/components/Sidebar/Link.vue @@ -0,0 +1,43 @@ + + + diff --git a/src/layout/components/Sidebar/Logo.vue b/src/layout/components/Sidebar/Logo.vue new file mode 100644 index 0000000000000000000000000000000000000000..9bb01aa530b978eba10b7d4a5488d7a53306366f --- /dev/null +++ b/src/layout/components/Sidebar/Logo.vue @@ -0,0 +1,74 @@ + + + + + diff --git a/src/layout/components/Sidebar/SidebarItem.vue b/src/layout/components/Sidebar/SidebarItem.vue new file mode 100644 index 0000000000000000000000000000000000000000..9ca210e86f7071cabe8befcaea6c3e438d311bb1 --- /dev/null +++ b/src/layout/components/Sidebar/SidebarItem.vue @@ -0,0 +1,116 @@ + + + diff --git a/src/layout/components/Sidebar/index.vue b/src/layout/components/Sidebar/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..c0210bd03e999bbab07723ed835cc1ca5dcdee70 --- /dev/null +++ b/src/layout/components/Sidebar/index.vue @@ -0,0 +1,126 @@ + + + diff --git a/src/layout/components/changePassword.vue b/src/layout/components/changePassword.vue new file mode 100644 index 0000000000000000000000000000000000000000..b1914ada8784bbfff9d8f15ff572890d07629a01 --- /dev/null +++ b/src/layout/components/changePassword.vue @@ -0,0 +1,48 @@ + + + + + \ No newline at end of file diff --git a/src/layout/components/changePwdCont.vue b/src/layout/components/changePwdCont.vue new file mode 100644 index 0000000000000000000000000000000000000000..a33c94abfd457dbeff9f98d31593e6e798c29067 --- /dev/null +++ b/src/layout/components/changePwdCont.vue @@ -0,0 +1,184 @@ + + + + diff --git a/src/layout/components/index.js b/src/layout/components/index.js new file mode 100644 index 0000000000000000000000000000000000000000..97ee3cd12dce9a371b571dfba3c2b9fc16dc988c --- /dev/null +++ b/src/layout/components/index.js @@ -0,0 +1,3 @@ +export { default as Navbar } from './Navbar' +export { default as Sidebar } from './Sidebar' +export { default as AppMain } from './AppMain' diff --git a/src/layout/components/menuNav.vue b/src/layout/components/menuNav.vue new file mode 100644 index 0000000000000000000000000000000000000000..e08a3b326f6d6d95959ea7ba7615ac8ae66f7020 --- /dev/null +++ b/src/layout/components/menuNav.vue @@ -0,0 +1,152 @@ + + + + + diff --git a/src/layout/externalCloudPage/index.vue b/src/layout/externalCloudPage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..c0d243fb303dbf40beea9adc0243e26d1d1f429f --- /dev/null +++ b/src/layout/externalCloudPage/index.vue @@ -0,0 +1,55 @@ + + + + + diff --git a/src/layout/homePage/index.vue b/src/layout/homePage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..e3677220adc13b6bd84ddbb2369bc3a6904bbc14 --- /dev/null +++ b/src/layout/homePage/index.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/src/layout/index.vue b/src/layout/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..a0d2a8ae3b7c2aa4bff2026327095f017c8bc3e1 --- /dev/null +++ b/src/layout/index.vue @@ -0,0 +1,229 @@ + + + + + diff --git a/src/layout/monitorPage/index.vue b/src/layout/monitorPage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..5104c9a55a609e17f55fd8ed525a5c6c732fc51b --- /dev/null +++ b/src/layout/monitorPage/index.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/src/layout/operatePage/index.vue b/src/layout/operatePage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..787de00e4f58282b6c2d1836d326f15fd441da46 --- /dev/null +++ b/src/layout/operatePage/index.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/layout/reliableCenter/index.vue b/src/layout/reliableCenter/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..5104c9a55a609e17f55fd8ed525a5c6c732fc51b --- /dev/null +++ b/src/layout/reliableCenter/index.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/src/layout/resourcesPage/index.vue b/src/layout/resourcesPage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..5104c9a55a609e17f55fd8ed525a5c6c732fc51b --- /dev/null +++ b/src/layout/resourcesPage/index.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000000000000000000000000000000000000..9d1f1fa11f6a7a9088319f741724d362054b253d --- /dev/null +++ b/src/main.js @@ -0,0 +1,67 @@ +import Vue from 'vue' +import 'normalize.css/normalize.css' // A modern alternative to CSS resets +import ElementUI from 'element-ui' +import 'element-ui/lib/theme-chalk/index.css' + +import '@/styles/index.scss' // global css + +import App from './App' +import store from './store' +import router from './router' + +import '@/icons' // icon +import '@/permission' // permission control +import i18n from '@/assets/common/lang/index' // 国际化 + +import { showFullScreenLoading, hideFullScreenLoading } from "@/utils/loading"; +Vue.prototype.$showFullScreenLoading = showFullScreenLoading;// 打开loading +Vue.prototype.$hideFullScreenLoading = hideFullScreenLoading;// 关闭loading + +import onlyNum from '@/directive/only-num' +Vue.use(onlyNum) + + +import moment from 'moment'// 导入moment文件 +Vue.prototype.$moment = moment;// 赋值使用 + +/** + * If you don't want to use mock-server + * you want to use MockJs for mock api + * you can execute: mockXHR() + * + * Currently MockJs will be used in the production environment, + * please remove it before going online ! ! ! + */ +// if (process.env.NODE_ENV === 'production') { +// const { mockXHR } = require('../mock') +// mockXHR() +// } + + + +import myMixin from '@/mixins/index.js' +Vue.use(myMixin) + +import ReMessage from '@/utils/message' +Vue.prototype.$rmsg = ReMessage + +import qs from 'qs' +Vue.prototype.qs = qs + + +Vue.use(ElementUI, { + size: 'small', zIndex: 3000, + i18n: (key, value) => i18n.t(key, value) +}) + + + +Vue.config.productionTip = false + +new Vue({ + el: '#app', + i18n, + router, + store, + render: h => h(App) +}) diff --git a/src/mixins/commonPageBtnPromiss.js b/src/mixins/commonPageBtnPromiss.js new file mode 100644 index 0000000000000000000000000000000000000000..bab9625f5c71281e9bc7c236b39880c1d803d849 --- /dev/null +++ b/src/mixins/commonPageBtnPromiss.js @@ -0,0 +1,72 @@ +export default { + data() { + return { + pageBtntKeys: [] + } + }, + watch: { + $route: { + handler: function (val, oldVal) { + this.pageBtntKeys = []; + + // this.getPageBtnKeys() + }, + // 深度观察监听 + deep: true + } + }, + methods: { + getPageBtnKeys() { + let { routeKey } = this.$route.meta; + let info = JSON.parse(localStorage.getItem("userInfo")) || []; + if (info.length <= 0) { + this.pageBtntKeys = [] + return false + } + let permissions = info.permissions; + let currentPageBtnList = [] + permissions.forEach(element => { + let { parentRouteKey } = element + if (parentRouteKey == routeKey) { + currentPageBtnList.push(element.routeKey) + } + }); + this.pageBtntKeys = currentPageBtnList + }, + currentBtnShow(btnKey) { + if (this.pageBtntKeys.length == 0) { + this.getPageBtnKeys() + } + if (this.pageBtntKeys.indexOf(btnKey) > -1) { + return true + } else { + return false + } + }, + getotherPageBtnKeys(otherPagekey) { + let info = JSON.parse(localStorage.getItem("userInfo")) || []; + if (info.length <= 0) { + return false + } + let permissions = info.permissions; + let otherPageBtnList = [] + permissions.forEach(element => { + let { parentRouteKey } = element + if (parentRouteKey == otherPagekey) { + otherPageBtnList.push(element.routeKey) + } + }); + return otherPageBtnList + }, + otherBtnShow(otherPagekey, otherPagebtn) { + let otherPageBtntKeys = [] + otherPageBtntKeys = this.getotherPageBtnKeys(otherPagekey) + if (otherPageBtntKeys.indexOf(otherPagebtn) > -1) { + return true + } else { + return false + } + }, + } +} + diff --git a/src/mixins/commonTips.js b/src/mixins/commonTips.js new file mode 100644 index 0000000000000000000000000000000000000000..9deba3cf2b1931968bfa13a07a7bbe6addb6693d --- /dev/null +++ b/src/mixins/commonTips.js @@ -0,0 +1,24 @@ +export default { + methods: { + alertConfirm(msg) { + return this.$confirm(msg, '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + dangerouslyUseHTMLString: true + }) + }, + alertDialog(msg, title = '提示') { + return this.$alert(msg, title, { + dangerouslyUseHTMLString: true + }) + }, + alertTips(msg, type = 'error') { + this.$rmsg[type]({ + showClose: true, + message: msg, + type: type + }) + } + } +} + diff --git a/src/mixins/index.js b/src/mixins/index.js new file mode 100644 index 0000000000000000000000000000000000000000..71fbefbbfd6c86e3a2dc4a7879797071fc0b813e --- /dev/null +++ b/src/mixins/index.js @@ -0,0 +1,8 @@ +import tips from './commonTips' +import pageBtnPromisss from './commonPageBtnPromiss' +export default { + install(Vue) { + Vue.mixin(tips) + Vue.mixin(pageBtnPromisss) + } +} diff --git a/src/permission.js b/src/permission.js new file mode 100644 index 0000000000000000000000000000000000000000..c2cebfb2560d4661e7c8ae753675d0bbd4aea251 --- /dev/null +++ b/src/permission.js @@ -0,0 +1,71 @@ +import router from './router' +import store from './store' +import { Message } from 'element-ui' +import NProgress from 'nprogress' // progress bar +import 'nprogress/nprogress.css' // progress bar style +import { getToken } from '@/utils/auth' // get token from cookie +import getPageTitle from '@/utils/get-page-title' + +NProgress.configure({ showSpinner: false }) // NProgress Configuration + +const whiteList = ['/login'] // no redirect whitelist +router.beforeEach(async (to, from, next) => { + + // start progress bar + NProgress.start() + + // set page title + document.title = getPageTitle(to.meta.title) + + // determine whether the user has logged in + const hasToken = getToken() + if (hasToken) { + if (to.path === '/login') { + // if is logged in, redirect to the home page + localStorage.removeItem("kcp-pagekey"); + localStorage.removeItem("kcp-router"); + localStorage.removeItem("userInfo"); + store.dispatch("user/resetToken"); + next(`/login`) + NProgress.done() + } else { + to.params.pagekey?localStorage.setItem("kcp-pagekey",to.params.pagekey):'' + let pagekey = localStorage.getItem("kcp-pagekey") + if (pagekey && to.meta.routeKey) { + localStorage.setItem("kcp-router", JSON.stringify({ pagekey: pagekey, path: to.path })); + } + const hasGetUserInfo = store.getters.name + if (hasGetUserInfo) { + next() + } else { + try { + // get user info + // await store.dispatch('user/getInfo') + + next() + } catch (error) { + // remove token and go to login page to re-login + await store.dispatch('user/resetToken') + Message.error(error || '网络延迟,请稍后重试!') + next(`/login?redirect=${to.path}`) + NProgress.done() + } + } + } + } else { + /* has no token*/ + if (whiteList.indexOf(to.path) !== -1) { + // in the free login whitelist, go directly + next() + } else { + // other pages that do not have permission to access are redirected to the login page. + next(`/login?redirect=${to.path}`) + NProgress.done() + } + } +}) + +router.afterEach(() => { + // finish progress bar + NProgress.done() +}) diff --git a/src/router/index.js b/src/router/index.js new file mode 100644 index 0000000000000000000000000000000000000000..201bb4e3ca054176863dbd0f9d9b6ab1f3a2fcaf --- /dev/null +++ b/src/router/index.js @@ -0,0 +1,99 @@ +import Vue from 'vue' +import Router from 'vue-router' + +Vue.use(Router) + +/** + * 注意: 子菜单只在路由子菜单时出现。长度> = 1 + * 参考网址: https://panjiachen.gitee.io/vue-element-admin-site/zh/guide/essentials/router-and-nav.html#%E9%85%8D%E7%BD%AE%E9%A1%B9 + * +// 当设置 true 的时候该路由不会在侧边栏出现 如401,login等页面,或者如一些编辑页面/edit/1 +hidden: true // (默认 false) + +//当设置 noRedirect 的时候该路由在面包屑导航中不可被点击 +redirect: 'noRedirect' + +// 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式--如组件页面 +// 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面 +// 若你想不管路由下面的 children 声明的个数都显示你的根路由 +// 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,一直显示根路由 +alwaysShow: true + +name: 'router-name' // 设定路由的名字,一定要填写不然使用时会出现各种问题 +meta: { + roles: ['admin', 'editor'] // 设置该路由进入的权限,支持多个权限叠加 + title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字 + icon: 'svg-name' // 设置该路由的图标,支持 svg-class,也支持 el-icon-x element-ui 的 icon + noCache: true // 如果设置为true,则不会被 缓存(默认 false) + breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + affix: true // 如果设置为true,它则会固定在tags-view中(默认 false) + + // 当路由设置了该属性,则会高亮相对应的侧边栏。 + // 这在某些场景非常有用,比如:一个文章的列表页路由为:/article/list + // 点击文章进入文章详情页,这时候路由为/article/1,但你想在侧边栏高亮文章列表的路由,就可以进行如下设置 + activeMenu: '/article/list' +} +*/ + +/** + * 路由集合 + */ +import homeRoute from './modules/homeRoute' +// 运营 +import operateRouter from './modules/operateRoute' +// 资源 +import resourceRouter from './modules/resourceRoute' +// 监控 +import monitorRoute from './modules/monitorRoute' +// 外部云 +import externalCloud from './modules/externalCloud' +// 可靠中心 +import reliableCenter from './modules/reliableCenter' +export const constantRoutes = [ + { + path: '/login', + pagekey: '', + // routeKey: 'login', + component: () => import('@/views/login/index'), + hidden: true + }, + + { + path: '/404', + pagekey: '', + // routeKey: '404', + component: () => import('@/views/404'), + hidden: true + }, + { + name: 'home', + pagekey: '', + // routeKey: 'home', + path: '/home', + component: () => import('@/layout/index'), + hidden: true + }, + ...homeRoute, + ...operateRouter, + ...resourceRouter, + ...monitorRoute, + ...externalCloud, + ...reliableCenter, + // 404 page must be placed at the end !!! + { path: '*', redirect: '/login', hidden: true } +] + +const createRouter = () => new Router({ + // mode: 'history', // require service support + scrollBehavior: () => ({ y: 0 }), + routes: constantRoutes +}) + +const router = createRouter() + +export function resetRouter() { + const newRouter = createRouter() + router.matcher = newRouter.matcher // reset router +} + +export default router diff --git a/src/router/modules/externalCloud.js b/src/router/modules/externalCloud.js new file mode 100644 index 0000000000000000000000000000000000000000..f4682392a428f72349b64d0e5cde2aaceeaa9b49 --- /dev/null +++ b/src/router/modules/externalCloud.js @@ -0,0 +1,63 @@ +// 资源 +import Layout from '@/layout' +import i18n from '@/assets/common/lang/index' +const externalCloudRouter = [ + { + path: '/externalCloud', + component: Layout, + meta: { + title: i18n.t('common.route.vcenter'), // '外部云' + }, + redirect: '/externalCloud/vcenter', + pagekey: 'externalCloud', + routeKey: 'externalCloud', + hidden: false, + children: [ + { + path: '/externalCloud/vcenter', + name: 'vcenter', + routeKey: 'vcenter', + hidden: false, + noRedirect: '', + component: () => import('@/views/externalCloud/vcenter/vcenter.vue'), + meta: { + title: i18n.t('common.route.vcenter'), // '纳管vcenter', + icon: 'kyq-icon', + default: true, + routeKey: 'vcenter' + } + }, + { + path: 'detail/:id/:type/:pageName', + name: 'vCenterDetail', + routeKey: 'vCenterDetail', + hidden: true, + noRedirect: '', + component: () => import('@/views/externalCloud/vcenter/detail.vue'), + meta: { + title: i18n.t('common.route.vcenterDetail'), // 'vcenter详情', + icon: 'kyq-icon', + default: false, + routeKey: 'vCenterDetail', + useDetailName:true,//是否开启使用详情名称代替页面名称 + }, + }, + { + path: 'cloudServerDetail/:vcenterId/:name/:pageName', + name: 'cloudServerDetail', + routeKey: 'cloudServerDetail', + hidden: true, + noRedirect: '', + component: () => import('@/views/externalCloud/vcenter/cloudServerDetail/index.vue'), + meta: { + title: i18n.t('common.route.servervmDetail'), //云服务器详情 + icon: 'kyq-icon', + default: false, + routeKey: 'zone', + useDetailName:true,//是否开启使用详情名称代替页面名称 + }, + } + ] + }, +] +export default externalCloudRouter diff --git a/src/router/modules/homeRoute.js b/src/router/modules/homeRoute.js new file mode 100644 index 0000000000000000000000000000000000000000..5ddb34206970fae88600b5231f613cb3f6c27e96 --- /dev/null +++ b/src/router/modules/homeRoute.js @@ -0,0 +1,32 @@ +// 首页 +import Layout from '@/layout' +import i18n from '@/assets/common/lang/index' +const homeRoute = [ + { + name: 'homePage', + component: Layout, + pagekey: '', + // routeKey: 'home', + path: '/homePage', + hidden: true, + children: [ + { + path: 'pageHome/index', + name: 'pageHome', + routeKey: 'pageHome', + hidden: false, + redirect: '', + component: () => import('@/layout/homePage/index'), + meta: { + title: '首页', + icon: 'gjsj-icon' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + ] + }, + + + +] +export default homeRoute diff --git a/src/router/modules/monitorRoute.js b/src/router/modules/monitorRoute.js new file mode 100644 index 0000000000000000000000000000000000000000..2a0dde11e6fe7d65b4c5a621c63a390bd473442e --- /dev/null +++ b/src/router/modules/monitorRoute.js @@ -0,0 +1,111 @@ +// 监控 +import Layout from '@/layout' +import i18n from '@/assets/common/lang/index' +const monitorRoute = [ + { + path: '/alarmevent', + component: Layout, + meta: { + title: i18n.t('common.route.alarmEvent'), // '告警事件', + icon: 'gjsj-icon' + }, + redirect: 'noRedirect', + pagekey: 'monitor', + routeKey: 'alarmEvent', + hidden: false, + children: [ + { + path: 'monitor/alarmevent/alarmLog/index', + name: 'alarmLog', + routeKey: 'alarmLog', + hidden: false, + redirect: '', + component: () => import('@/views/monitor/alarmevent/alarmLog/index'), + meta: { + title: i18n.t('common.route.alarmLog'), // '告警日志', + icon: 'gjrz-icon', default: false, routeKey: 'alarmLog' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + { + path: 'monitor/alarmevent/alarmSet/index', + name: 'settingAlarm', + routeKey: 'settingAlarm', + hidden: false, + redirect: '', + component: () => import('@/views/monitor/alarmevent/alarmSet/index'), + meta: { + title: i18n.t('common.route.settingAlarm'), // '告警设置', + icon: 'gjsz-icon', default: false, routeKey: 'settingAlarm' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + ] + }, + { + path: '/operationLog', + component: Layout, + meta: { + title: i18n.t('common.route.operateLog'), // '操作日志', + icon: 'czrz-icon' + }, + redirect: 'noRedirect', + pagekey: 'monitor', + routeKey: 'operateLog', + hidden: false, + children: [ + { + path: 'monitor/operationLog/physicalHostevents/index', + name: 'serverEvent', + routeKey: 'serverEvent', + hidden: false, + redirect: '', + component: () => import('@/views/monitor/operationLog/physicalHostevents/index'), + meta: { + title: i18n.t('common.route.serverEvent'), // '物理主机事件', + icon: 'wlzjsj-icon', default: false, routeKey: 'serverEvent' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + { + path: 'monitor/operationLog/cloudServerevents/index', + name: 'cloudServerEvent', + routeKey: 'cloudServerEvent', + hidden: false, + redirect: '', + component: () => import('@/views/monitor/operationLog/cloudServerevents/index'), + meta: { + title: i18n.t('common.route.cloudServerEvent'), // '云服务器事件', + icon: 'yfwqsj-icon', default: false, routeKey: 'cloudServerEvent' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + ] + }, + { + path: '/taskcenter', + component: Layout, + meta: { + title: i18n.t('common.route.taskcenter'), // '任务中心' + }, + redirect: '/monitor/taskcenter/index', + pagekey: 'monitor', + routeKey: 'taskcenter', + hidden: false, + children: [ + { + path: '/monitor/taskcenter/index', + name: 'taskcenter', + routeKey: 'taskcenter', + hidden: false, + noRedirect: '', + component: () => import('@/views/monitor/taskcenter/index.vue'), + meta: { + title: i18n.t('common.route.taskcenter'), // '任务中心' + icon: 'gdgl-icon', default: true, routeKey: 'taskcenter' + } + } + ] + }, +] +export default monitorRoute diff --git a/src/router/modules/operateRoute.js b/src/router/modules/operateRoute.js new file mode 100644 index 0000000000000000000000000000000000000000..5b5bb047e78acb15f1cd8487824e9ce9354935c0 --- /dev/null +++ b/src/router/modules/operateRoute.js @@ -0,0 +1,141 @@ +// 运营 +import Layout from '@/layout' +import i18n from '@/assets/common/lang/index' +const operateRouter = [ + { + path: '/organization', + component: Layout, + meta: { + title: i18n.t('common.route.org'), // '组织管理' + }, + redirect: '/operate/organizationMgr/index', + pagekey: 'operator', + routeKey: 'org', + hidden: false, + children: [ + { + path: '/operate/organizationMgr/index', + name: 'organization', + routeKey: 'org', + hidden: false, + redirect: '', + component: () => import('@/views/operate/organizationMgr/index'), + meta: { + title: i18n.t('common.route.org'), // '组织管理', + icon: 'zzgl-icon', default: true, routeKey: 'org', + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + { + path: 'detail/:id/:type', + name: 'organizationDetail', + routeKey: 'org', + hidden: true, + redirect: '', + component: () => import('@/views/operate/organizationMgr/detail'), + meta: { + title: i18n.t('common.route.orgDetail'), // '组织详情', + icon: 'el-icon-s-order', default: false, routeKey: 'org', + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + } + ] + }, + { + path: '/authority', + component: Layout, + meta: { + title: i18n.t('common.route.permission'), // '权限管理', + icon: 'qxgl-icon' + }, + redirect: 'noRedirect', + pagekey: 'operator', + routeKey: 'permission', + hidden: false, + children: [ + { + path: '/operate/authorityMgr/userMgr/index', + name: 'userMgr', + routeKey: 'user', + hidden: false, + redirect: '', + component: () => import('@/views/operate/authorityMgr/userMgr/index'), + meta: { + title: i18n.t('common.route.userMgr'), // '用户管理', + icon: 'yhgl-icon', default: false, routeKey: 'user' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + { + path: '/operate/authorityMgr/roleMgr/index', + name: 'roleMgr', + routeKey: 'role', + hidden: false, + redirect: '', + component: () => import('@/views/operate/authorityMgr/roleMgr/index'), + meta: { + title: i18n.t('common.route.roleMgr'), // '角色管理', + icon: 'jsgl-icon', default: false, routeKey: 'role' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + ] + }, + + { + path: '/workorder', + component: Layout, + meta: { + title: i18n.t('common.route.workorder'), // '工单管理', + icon: 'gdgl-icon' + }, + redirect: 'noRedirect', + pagekey: 'operator', + routeKey: 'workorder', + hidden: false, + children: [ + { + path: '/workorder/index', + name: 'workorder', + routeKey: 'check_workorder', + hidden: false, + redirect: '', + component: () => import('@/views/workorder/index'), + meta: { + title: i18n.t('common.route.WorkorderReview'), // '工单审核', + icon: 'gdsh-icon', default: false, routeKey: 'check_workorder' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + { + path: 'detail/:id/:type', + name: 'workDetail', + routeKey: 'check_workorder', + hidden: true, + redirect: '', + component: () => import('@/views/workorder/detail'), + meta: { + title: i18n.t('common.route.workorderDetail'), // '工单详情', + icon: 'gdsh-icon', default: false, routeKey: 'check_workorder' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + + { + path: '/network/index', + name: 'network', + routeKey: 'networkconfig', + hidden: false, + redirect: '', + component: () => import('@/views/network/index'), + meta: { + title: i18n.t('common.route.networkconfig'), // '网络设置', + icon: 'wlsz-icon', default: false, routeKey: 'networkconfig' + }, + breadcrumb: true // 如果设置为false,则不会在breadcrumb面包屑中显示(默认 true) + }, + ] + } + +] +export default operateRouter diff --git a/src/router/modules/reliableCenter.js b/src/router/modules/reliableCenter.js new file mode 100644 index 0000000000000000000000000000000000000000..5c076e0e0aac2b92cc4752c953f1d8db5a90d17d --- /dev/null +++ b/src/router/modules/reliableCenter.js @@ -0,0 +1,79 @@ +import Layout from '@/layout' +import i18n from '@/assets/common/lang/index' +const reliableCenter = [ + { + path: '/reliableCenter', + component: Layout, + meta: { + title: i18n.t('common.route.remoteDisasterRecovery'), // '异地容灾' + }, + redirect: '/reliableCenter/remoteDisasterRecovery/index', + pagekey: 'reliableCenter', + routeKey: 'remoteDisasterRecovery', + hidden: false, + children: [ + { + path: '/reliableCenter/remoteDisasterRecovery/index', + name: 'remoteDisasterRecovery', + routeKey: 'remoteDisasterRecovery', + pagekey: 'reliableCenter', + hidden: false, + noRedirect: '', + component: () => import('@/views/reliableCenter/remoteDisasterRecovery/index.vue'), + meta: { + title: i18n.t('common.route.remoteDisasterRecovery'), // '异地容灾', + icon: 'rzbf', + default: true, + routeKey: 'remoteDisasterRecovery', + pagekey: 'reliableCenter' + } + }, + { + path: '/reliableCenter/linkManagement/index', + name: 'linkManagement', + routeKey: 'linkManagement', + pagekey: 'reliableCenter', + hidden: true, + noRedirect: '', + component: () => import('@/views/reliableCenter/remoteDisasterRecovery/linkManagement/index.vue'), + meta: { + title: i18n.t('common.route.linkManagement'), // '异地容灾', + icon: 'rzbf', + default: false, + pagekey: 'reliableCenter', + routeKey: 'linkManagement' + } + }, + ] + }, + { + path: '/mainAndBackupKcp', + component: Layout, + meta: { + title: i18n.t('common.route.mainAndBackupKcp'), // '主备kcp' + }, + redirect: '/mainAndBackupKcp/index', + pagekey: 'reliableCenter', + routeKey: 'kcpha', + hidden: false, + children: [ + { + path: '/mainAndBackupKcp/index', + name: 'kcpha', + routeKey: 'kcpha', + hidden: false, + noRedirect: '', + component: () => import('@/views/reliableCenter/kcpha/index.vue'), + meta: { + title: i18n.t('common.route.mainAndBackupKcp'), // '主备kcp', + icon: 'zbkcp', + pagekey: 'reliableCenter', + default: true, + routeKey: 'kcpha', + breadcrumb: true + } + }, + ] + }, +] +export default reliableCenter \ No newline at end of file diff --git a/src/router/modules/resourceRoute.js b/src/router/modules/resourceRoute.js new file mode 100644 index 0000000000000000000000000000000000000000..27615c1ea182666cad35af19d9d86cd7c0cd184f --- /dev/null +++ b/src/router/modules/resourceRoute.js @@ -0,0 +1,326 @@ +// 资源 +import Layout from '@/layout' +import i18n from '@/assets/common/lang/index' +const resourceRouter = [ + { + path: '/availabilityZone', + component: Layout, + meta: { + title: i18n.t('common.route.zone'), // '可用区' + }, + redirect: '/resource/availabilityZone/index', + pagekey: 'resource', + routeKey: 'zone', + hidden: false, + children: [ + { + path: '/resource/availabilityZone/index', + name: 'availabilityZone', + routeKey: 'zone', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/availabilityZone/index.vue'), + meta: { + title: i18n.t('common.route.zone'), // '可用区', + icon: 'kyq-icon', + pagekey: 'resource', + default: true, + routeKey: 'zone' + } + }, + { + path: 'detail/:id/:type', + name: 'availabilityZoneDetail', + routeKey: 'zone', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/availabilityZone/detail.vue'), + meta: { + title: i18n.t('common.route.zoneDetail'), // '可用区详情', + icon: 'kyq-icon', + pagekey: 'resource', + default: false, + routeKey: 'zone' + } + } + ] + }, + { + path: '/physicalCluster', + component: Layout, + meta: { + title: i18n.t('common.route.cluster'), // '物理集群' + }, + redirect: '/resource/physicalCluster/index', + pagekey: 'resource', + routeKey: 'cluster', + hidden: false, + children: [ + { + path: '/resource/physicalCluster/index', + name: 'physicalCluster', + routeKey: 'cluster', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/physicalCluster/index.vue'), + meta: { + title: i18n.t('common.route.cluster'), // '物理集群', + icon: 'wljq-icon', + pagekey: 'resource', + default: true, + routeKey: 'cluster', + breadcrumb: true + } + }, + { + path: 'detail/:id/:type', + name: 'physicalDetail', + routeKey: 'cluster', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/physicalCluster/detail.vue'), + meta: { + title: i18n.t('common.route.clusterDetail'), // '物理集群详情', + icon: 'wljq-icon', + pagekey: 'resource', + default: false, + routeKey: 'cluster', + breadcrumb: true + } + } + ] + }, + { + path: '/vdcPage', + component: Layout, + meta: { + title: i18n.t('common.route.vdc'), // '虚拟数据中心(VDC)' + }, + redirect: '/resource/vdcPage/index', + pagekey: 'resource', + routeKey: 'vdc', + hidden: false, + children: [ + { + path: '/resource/vdcPage/index', + name: 'vdcPage', + routeKey: 'vdc', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/vdcPage/index.vue'), + meta: { + title: i18n.t('common.route.vdc'), // '虚拟数据中心(VDC)', + icon: 'xnsjzx-icon', + pagekey: 'resource', + default: true, + routeKey: 'vdc' + } + }, + { + path: 'detail/:id/:type', + name: 'vdcPageDetail', + routeKey: 'vdc', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/vdcPage/detail.vue'), + meta: { + title: i18n.t('common.route.vdcDetail'), // '虚拟数据中心(VDC)详情', + icon: 'xnsjzx-icon', + pagekey: 'resource', + default: false, + routeKey: 'vdc' + } + } + ] + }, + { + path: '/escPage', + component: Layout, + meta: { + title: i18n.t('common.route.servervm'), // '云服务器' + }, + redirect: '/resource/esc/index', + pagekey: 'resource', + routeKey: 'servervm', + hidden: false, + children: [ + { + path: '/resource/esc/index', + name: 'escPage', + routeKey: 'servervm', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/ecs/index.vue'), + meta: { + title: i18n.t('common.route.servervm'), // '云服务器', + icon: 'yfwq-icon', + pagekey: 'resource', + default: true, + routeKey: 'servervm' + } + }, + { + path: 'detail/:id/:type/:cid', + name: 'escPageDetail', + routeKey: 'servervm', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/ecs/components/detail/index.vue'), + meta: { + title: i18n.t('common.route.servervmDetail'), // '云服务器详情', + icon: 'yfwq-icon', + default: false, + pagekey: 'resource', + routeKey: 'servervm' + } + } + ] + }, + { + path: '/vMwareMgr', + component: Layout, + meta: { + title: i18n.t('common.route.vMwareMgr'), // 'VMware纳管' + }, + redirect: '/resource/vMwareMgr/index', + pagekey: 'resource', + routeKey: 'vMwareMgr', + hidden: false, + children: [ + { + path: '/resource/vMwareMgr/index', + name: 'vMwareMgrPage', + routeKey: 'vMwareMgr', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/vMwareMgr/index.vue'), + meta: { + title: i18n.t('common.route.vMwareMgr'), // 'VMware纳管', + icon: 'wljq-icon', + default: true, + pagekey: 'resource', + routeKey: 'vMwareMgr' + } + }, + { + path: 'detail/:id/:name/:type', + name: 'vMwareMgrPageDetail', + routeKey: 'vMwareMgr', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/vMwareMgr/detail.vue'), + meta: { + title: i18n.t('common.route.vMwareMgrDetail'), // 'VMware纳管详情', + icon: 'wljq-icon', + default: false, + pagekey: 'resource', + routeKey: 'vMwareMgr' + } + } + ] + }, + { + path: '/imageMgr', + component: Layout, + meta: { + title: i18n.t('common.route.imageMgr'), // // '镜像管理' + }, + redirect: '/resource/imageMgr/index', + pagekey: 'resource', + routeKey: 'image', + hidden: false, + children: [ + { + path: '/resource/imageMgr/index', + name: 'imageMgr', + routeKey: 'image', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/imageMgr/index.vue'), + meta: { + title: i18n.t('common.route.imageMgr'), // 镜像管理' + icon: 'jxgl-icon', + pagekey: 'resource', + default: true, + routeKey: 'image' + } + }, + { + path: '/resource/imageMgr/components/imageupload/:type', + name: 'imageupload', + routeKey: 'image', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/imageMgr/components/imageupload.vue'), + meta: { + title: i18n.t('common.route.imageMgrUpload'), // 上传镜像', + icon: 'jxgl-icon', + default: false, + pagekey: 'resource', + routeKey: 'image' + } + }, + { + path: '/resource/imageMgr/components/imageuploading', + name: 'imageuploading', + routeKey: 'image', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/imageMgr/components/imageuploading.vue'), + meta: { + title: i18n.t('common.route.imageMgrUpload'), // 上传镜像', + icon: 'jxgl-icon', + pagekey: 'resource', + default: false, + routeKey: 'image' + } + }, + { + path: 'detail/:id/:type', + name: 'imageDetail', + routeKey: 'image', + hidden: true, + noRedirect: '', + component: () => import('@/views/resource/imageMgr/components/imageDetail.vue'), + meta: { + title: i18n.t('common.route.imageMgrDetail'), // 镜像详情', + icon: 'jxgl-icon', + default: false, + pagekey: 'resource', + routeKey: 'image' + } + }, + ] + }, + // 主机纳管 + { + path: '/bareMetal', + component: Layout, + meta: { + title: i18n.t('common.route.bareMetal'), // '主机纳管' + }, + redirect: '/resource/hostTube/index', + pagekey: 'resource', + routeKey: 'bareMetal', + hidden: false, + children: [ + { + path: '/resource/hostTube/index', + name: 'bareMetal', + routeKey: 'bareMetal', + hidden: false, + noRedirect: '', + component: () => import('@/views/resource/hostTube/index.vue'), + meta: { + title: i18n.t('common.route.bareMetal'), // '主机纳管', + icon: 'ljs', + default: true, + pagekey: 'resource', + routeKey: 'bareMetal', + breadcrumb: true + } + }, + ] + }, +] +export default resourceRouter diff --git a/src/settings.js b/src/settings.js new file mode 100644 index 0000000000000000000000000000000000000000..def2e13290f7b0eb597ba139192614ddcba436e4 --- /dev/null +++ b/src/settings.js @@ -0,0 +1,22 @@ +module.exports = { + + title: '云管平台', + + /** + * @type {boolean} true | false + * @description Whether fix the header + */ + fixedHeader: false, + + /** + * @type {boolean} true | false + * @description Whether show the logo in sidebar + */ + sidebarLogo: false, + + /** + * @type {boolean} true | false + * @description 侧边栏是否使用路由 + */ + routeSidebar: true +} diff --git a/src/store/getters.js b/src/store/getters.js new file mode 100644 index 0000000000000000000000000000000000000000..5ab7b4c8ba23fe62a23208cafeca2b9a3a5a2a40 --- /dev/null +++ b/src/store/getters.js @@ -0,0 +1,8 @@ +const getters = { + sidebar: state => state.app.sidebar, + device: state => state.app.device, + token: state => state.user.token, + avatar: state => state.user.avatar, + name: state => state.user.name +} +export default getters diff --git a/src/store/index.js b/src/store/index.js new file mode 100644 index 0000000000000000000000000000000000000000..6be466a5d2a89799b809407f360556360e8f5f83 --- /dev/null +++ b/src/store/index.js @@ -0,0 +1,19 @@ +import Vue from 'vue' +import Vuex from 'vuex' +import getters from './getters' +import app from './modules/app' +import settings from './modules/settings' +import user from './modules/user' + +Vue.use(Vuex) + +const store = new Vuex.Store({ + modules: { + app, + settings, + user + }, + getters +}) + +export default store diff --git a/src/store/modules/app.js b/src/store/modules/app.js new file mode 100644 index 0000000000000000000000000000000000000000..7ea7e33228290b58942fddac8cef5ac1d23153dd --- /dev/null +++ b/src/store/modules/app.js @@ -0,0 +1,48 @@ +import Cookies from 'js-cookie' + +const state = { + sidebar: { + opened: Cookies.get('sidebarStatus') ? !!+Cookies.get('sidebarStatus') : true, + withoutAnimation: false + }, + device: 'desktop' +} + +const mutations = { + TOGGLE_SIDEBAR: state => { + state.sidebar.opened = !state.sidebar.opened + state.sidebar.withoutAnimation = false + if (state.sidebar.opened) { + Cookies.set('sidebarStatus', 1) + } else { + Cookies.set('sidebarStatus', 0) + } + }, + CLOSE_SIDEBAR: (state, withoutAnimation) => { + Cookies.set('sidebarStatus', 0) + state.sidebar.opened = false + state.sidebar.withoutAnimation = withoutAnimation + }, + TOGGLE_DEVICE: (state, device) => { + state.device = device + } +} + +const actions = { + toggleSideBar({ commit }) { + commit('TOGGLE_SIDEBAR') + }, + closeSideBar({ commit }, { withoutAnimation }) { + commit('CLOSE_SIDEBAR', withoutAnimation) + }, + toggleDevice({ commit }, device) { + commit('TOGGLE_DEVICE', device) + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} diff --git a/src/store/modules/settings.js b/src/store/modules/settings.js new file mode 100644 index 0000000000000000000000000000000000000000..b3f33f8325ecab51b781c7318e7826a4a4476569 --- /dev/null +++ b/src/store/modules/settings.js @@ -0,0 +1,32 @@ +import defaultSettings from '@/settings' + +const { showSettings, fixedHeader, sidebarLogo } = defaultSettings + +const state = { + showSettings: showSettings, + fixedHeader: fixedHeader, + sidebarLogo: sidebarLogo +} + +const mutations = { + CHANGE_SETTING: (state, { key, value }) => { + // eslint-disable-next-line no-prototype-builtins + if (state.hasOwnProperty(key)) { + state[key] = value + } + } +} + +const actions = { + changeSetting({ commit }, data) { + commit('CHANGE_SETTING', data) + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} + diff --git a/src/store/modules/user.js b/src/store/modules/user.js new file mode 100644 index 0000000000000000000000000000000000000000..e7e56058feb4eb5ca6ae269f53762aa8e3601b9e --- /dev/null +++ b/src/store/modules/user.js @@ -0,0 +1,90 @@ +import { login, logout, getInfo } from '@/api/user' +import { getToken, setToken, removeToken } from '@/utils/auth' +import { resetRouter } from '@/router' +import md5 from 'js-md5' +const getDefaultState = () => { + return { + token: getToken(), + name: '', + avatar: '' + } +} + +const state = getDefaultState() + +const mutations = { + RESET_STATE: (state) => { + Object.assign(state, getDefaultState()) + }, + SET_TOKEN: (state, token) => { + state.token = token + }, + SET_NAME: (state, name) => { + state.name = name + }, + SET_AVATAR: (state, avatar) => { + state.avatar = avatar + } +} + +const actions = { + // user login + login({ commit }, userInfo) { + const { name, password } = userInfo + return new Promise((resolve, reject) => { + login({ userName: name.trim(), password: md5(password) }).then(response => { + const { token } = response + commit('SET_TOKEN', token) + setToken(token) + resolve() + }).catch(error => { + reject(error) + }) + }) + }, + + // // get user info + // getInfo({ commit, state }) { + // return new Promise((resolve, reject) => { + // getInfo().then(data => { + // if (!data) { + // return reject('验证失败,请重新登录。') + // } + + // const { name, avatar } = data + + // commit('SET_NAME', name) + // commit('SET_AVATAR', avatar) + // resolve(data) + // }).catch(error => { + // reject(error) + // }) + // }) + // }, + + // user logout + logout({ commit, state }) { + return logout().then(() => { + removeToken() // must remove token first + resetRouter() + commit('RESET_STATE') + }) + }, + + // remove token + resetToken({ commit }) { + return new Promise(resolve => { + removeToken() // must remove token first + commit('RESET_STATE') + resolve() + }) + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} + diff --git a/src/styles/element-ui.scss b/src/styles/element-ui.scss new file mode 100644 index 0000000000000000000000000000000000000000..6cf3f3bc9f1cada1b93147a9ffc887b7b9760dda --- /dev/null +++ b/src/styles/element-ui.scss @@ -0,0 +1,335 @@ +// cover some element-ui styles + +.el-breadcrumb__inner, +.el-breadcrumb__inner a { + font-weight: 400 !important; +} + +.el-breadcrumb__inner a:hover, +.el-breadcrumb__inner.is-link:hover { + color: #409EFF !important; + cursor: pointer; +} + +.el-upload { + input[type="file"] { + display: none !important; + } +} + +.el-upload__input { + display: none; +} + + +// to fixed https://github.com/ElemeFE/element/issues/2461 +.el-dialog { + transform: none; + left: 0; + position: relative; + margin: 0 auto; +} + +// refine element ui upload +.upload-container { + .el-upload { + width: 100%; + + .el-upload-dragger { + width: 100%; + height: 200px; + } + } +} + +// dropdown +.el-dropdown-menu { + a { + display: block + } + + .el-link--inner { + width: max-content; + display: block; + } +} + +// to fix el-date-picker css style +.el-range-separator { + box-sizing: content-box; +} + + +.el-form-item { + .el-form-item__label-wrap { + margin-left: 0 !important; + } +} + + +// form labe 粗细 +.el-form-item .el-form-item__label { + font-weight: normal; +} + +// 确定/取消 交换位置,确定在左边 +.el-message-box__btns { + display: flex; + flex-flow: row-reverse; + + >button { + margin-left: 15px; + } +} + + +// 表单中样式统一 +.el-form { + + // icon + [class*="el-icon-"] { + cursor: pointer; + margin-left: 10px; + font-size: 20px; + color: #C0C4CC; + } + + [class*="el-icon-"]:hover { + color: #409eff; + } + + .el-select .el-tag__close[class*="el-icon-"] { + cursor: pointer; + margin-left: 0px; + font-size: 10px; + color: #909399; + } + + .el-select .el-tag__close[class*="el-icon-"]:hover { + color: #FFF; + background-color: #909399; + } + + .el-input.is-disabled .el-input__inner, + .el-input-group input[qlinput-readonly] { + // background-color: transparent; + border-color: #E4E7ED; + // color: #C0C4CC; + cursor: not-allowed; + } + + .el-form-item.is-error .el-input__inner, + .el-form-item.is-error .el-input__inner:focus, + .el-form-item.is-error .el-textarea__inner, + .el-form-item.is-error .el-textarea__inner:focus, + .el-message-box__input input.invalid, + .el-message-box__input input.invalid:focus { + border-color: #F56C6C !important; + } + + + .el-input-group__append .el-input--suffix .el-input__inner, + .el-input-group__prepend .el-input--suffix .el-input__inner { + border-color: transparent !important; + } + + .input-with-select { + .el-input-group__append { + background-color: #fff; + padding: 0; + width: 70px; + height: 30px; + overflow: hidden; + } + + .el-input-group__append button.el-button { + background-color: #fff; + padding: 0; + margin: 0; + width: 100%; + height: 100%; + border-radius: 0 + } + + .el-input-group__append button.el-button:hover { + background-color: #e9f5ff; + } + + .el-input-group__append .el-button.is-disabled, + .el-input-group__append .el-button.is-disabled:hover { + background-color: #F5F7FA; + } + } +} + +.el-input-group__append, +.el-input-group__prepend { + background-color: #fff; +} + +.el-button--primary { + + // icon + [class*="el-icon-"] { + cursor: pointer; + margin: 0px; + font-size: 12px; + color: #fff; + } + + [class*="el-icon-"]:hover { + color: #fff; + } +} + +.el-input-number { + + .el-input-number__decrease, + .el-input-number__increase { + + // icon + [class*="el-icon-"] { + cursor: pointer; + margin: 0px; + font-size: 12px; + color: #909399; + } + + [class*="el-icon-"]:hover { + color: #909399; + } + } + +} + +// 统一弹窗宽度 +.el-dialog { + width: 600px; +} + +.lg-dialog { + .el-dialog { + width: 1000px; + } +} + +.sm-dialog { + .el-dialog { + width: 450px; + } +} + +.el-tabs { + .el-tabs__header { + margin: 0px; + margin-bottom: 20px; + } + + .el-tabs__item { + padding: 0; + font-size: 16px; + min-width: 200px; + text-align: center; + } + + .el-tabs__active-bar { + height: 1px; + } + + .el-tabs__nav-wrap::after { + height: 1px; + } +} + +.divider-title { + font-weight: bold; +} + +.el-divider--horizontal { + margin: 0px; +} + +.el-input-group__append { + + .el-button.is-disabled, + .el-button.is-disabled:focus, + .el-button.is-disabled:hover { + color: inherit; + background-color: transparent; + border-color: transparent; + } +} + +// tree +.el-tree { + + background-color: transparent !important; + + .custom-tree-node { + display: flex; + align-items: center; + justify-content: center; + + span { + margin: 0 4px; + font-size: 14px; + line-height: 1; + } + + // icon + [class*="el-icon-"] { + font-size: 16px; + cursor: pointer; + color: #909399; + } + + // [class*="el-icon-"]:hover { + // color: #409eff; + // } + } + + .el-tree-node__expand-icon.is-leaf { + color: transparent !important; + cursor: default; + } +} + +// .el-step +.el-step { + $step-color: #409EFF; + + .el-step__head.is-process { + color: $step-color; + border-color: $step-color; + } + + .el-step__title.is-process { + color: $step-color; + } + + .el-step__head.is-finish { + .el-step__line { + position: absolute; + border-color: inherit; + background-color: $step-color; + } + } +} + +.el-tooltip__popper { + max-width: 200px; +} + + +.el-dialog__body { + padding: 20px; + line-height: 20px; +} + +.el-dialog__footer { + .dialog-footer { + .el-button+.el-button { + margin-left: 15px; + } + } +} diff --git a/src/styles/iconBg.scss b/src/styles/iconBg.scss new file mode 100644 index 0000000000000000000000000000000000000000..571691859d48223209ac9c7eb268939ebec6f1e9 --- /dev/null +++ b/src/styles/iconBg.scss @@ -0,0 +1,31 @@ +.kcp-infoQues { + width: 20px; + height: 20px; + display: inline-block; + vertical-align: baseline; + font-style: normal; + margin-left: 15px; + cursor: pointer; +} + +.icon-infoQues::after { + content: ''; + display: block; + width: 20px; + height: 20px; + // background-image无法引用本地资源,故需要用网络地址 + background: url('~@/styles/images/infoQues.png') no-repeat center; + background-size: cover; + margin-top: 3px; +} + +.icon-infoQues:hover::after { + content: ''; + display: block; + width: 20px; + height: 20px; + // background-image无法引用本地资源,故需要用网络地址 + background: url('~@/styles/images/infoQuesHover.png') no-repeat center; + background-size: cover; + margin-top: 3px; +} \ No newline at end of file diff --git a/src/styles/images/infoQues.png b/src/styles/images/infoQues.png new file mode 100644 index 0000000000000000000000000000000000000000..45af931a0616b175d8bf508b6e5de864f2660b88 Binary files /dev/null and b/src/styles/images/infoQues.png differ diff --git a/src/styles/images/infoQuesHover.png b/src/styles/images/infoQuesHover.png new file mode 100644 index 0000000000000000000000000000000000000000..b99af1646eb318f621651e8446c923779cc52712 Binary files /dev/null and b/src/styles/images/infoQuesHover.png differ diff --git a/src/styles/index.scss b/src/styles/index.scss new file mode 100644 index 0000000000000000000000000000000000000000..b2c6886ed52a4c4a558c885e265ce7f99c14aa96 --- /dev/null +++ b/src/styles/index.scss @@ -0,0 +1,217 @@ +@import './variables.scss'; +@import './transition.scss'; +@import './element-ui.scss'; +@import './sidebar.scss'; +@import './iconBg.scss'; + +// 深色主题 +@import './themeDark/index.scss'; +// 浅色主题 +@import './themeLight/index.scss'; +@import './newTheme.scss'; + +html, +body { + height: 100%; +} + +body { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif; + font-size: 14px; +} + +label { + font-weight: 700; +} + +html { + height: 100%; + box-sizing: border-box; +} + +#app { + height: 100%; +} + +*, +*:before, +*:after { + box-sizing: inherit; + +} + +:focus { + outline: none; +} + +a:focus, +a:active { + outline: none; +} + +a, +a:focus, +a:hover { + cursor: pointer; + color: inherit; + text-decoration: none; +} + +div:focus { + outline: none; +} + +.clearfix { + &:after { + visibility: hidden; + display: block; + font-size: 0; + content: " "; + clear: both; + height: 0; + } +} + +// main-container global css +.app-container { + display: flex; + flex-direction: column; + flex: 1; + overflow: auto; + padding: 20px; + border-radius: 15px; +} + +.flex { + display: flex; +} + +@for $i from 1 to 4 { + .flex#{$i} { + flex: #{$i} + } +} + +.align-center { + align-items: center; +} + +.justify-center { + justify-content: center; +} + +.justify-between { + justify-content: space-between; +} + +// 表格操作列 +.tableoperation { + .el-link:first-child { + margin-left: 0px; + } + + .el-link { + margin-left: 20px; + } + + .tableoperation-header { + display: flex; + align-items: center; + justify-content: space-between; + } +} + +// 表格背景色 +.el-table, +.el-table__expanded-cell, +.el-table th, +.el-table tr { + background-color: transparent; +} + +// 表格 el-tooltip +.el-table .cell .el-tooltip { + max-width: 100%; + width: max-content; + display: block; + display: block; + overflow: hidden; + text-overflow: ellipsis; +} + + + + +// el 树组件自动出滚动条 +.kcp-el-tree { + overflow: auto; + + >.el-tree { + >.el-tree-node { + min-width: 100%; + display: inline-block; + } + + >.el-tree-node__content { + display: none; + } + } +} + +// 统一el-drawer__body 里文本颜色 +.el-drawer__body { + + // 下选择 + .el-select-dropdown__item, + // form表单标题 + .el-form-item__label, + // 输入框 + .el-input__inner, + .el-textarea__inner, + .el-checkbox, + .el-radio__label, + .el-tree-node__label { + color: $fontColor; + } +} + +// 统一table滚动条样式 +.el-table__body-wrapper::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +/* 滚动轨道 */ +.el-table__body-wrapper::-webkit-scrollbar-track { + border-radius: 5px; +} + +/* 滚动条 */ +.el-table__body-wrapper::-webkit-scrollbar-thumb { + width: 8px; + background-color: #CBCDD1; + opacity: 0.88; + border-radius: 5px +} + +// 统一滚动条样式 +::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +/* 滚动轨道 */ +::-webkit-scrollbar-track { + border-radius: 5px; +} + +/* 滚动条 */ +::-webkit-scrollbar-thumb { + width: 8px; + background-color: #CBCDD1; + opacity: 0.88; + border-radius: 5px +} diff --git a/src/styles/mixin.scss b/src/styles/mixin.scss new file mode 100644 index 0000000000000000000000000000000000000000..d1b0a4e901d8c537f904b79ff481eb0df3722697 --- /dev/null +++ b/src/styles/mixin.scss @@ -0,0 +1,99 @@ +@mixin clearfix { + &:after { + content: ""; + display: table; + clear: both; + } +} + +@mixin scrollBar { + &::-webkit-scrollbar-track-piece { + background: #d3dce6; + } + + &::-webkit-scrollbar { + width: 6px; + } + + &::-webkit-scrollbar-thumb { + background: #99a9bf; + border-radius: 20px; + } +} + +@mixin relative { + position: relative; + width: 100%; + height: 100%; +} + +// 类似账号页面的表单样式 +@mixin formStyle { + margin-left: 30px; + margin-right: 30px; + + .el-form { + .el-form-item__label { + text-align: left; + min-width: 70px; + } + + >.el-form-item { + // 留出间隙给表单错误提示 + margin-bottom: 18px !important; + color: $fontColor; + } + } + +} + +// 九宫格 +@mixin nineStyle($num: 3) { + display: grid; + grid-template-columns: repeat($num, 1fr); + grid-gap: 10px; + // margin: auto; +} + +// 表格头部组件样式 +@mixin headerBarStyle { + display: flex; + border: 1px solid $headerBarBorder; + border-radius: 6px; + padding: 10px 20px; + height: 62px; + background: rgba(227, 239, 255, 0.3); + + .header-left {} + + .header-right { + display: flex; + align-items: center; + justify-content: center; + line-height: 1; + + .setting-icon { + cursor: pointer; + font-size: 18px; + font-weight: bold; + color: #909399; + } + + .setting-icon:hover { + color: #409eff; + } + + .el-button { + margin-left: 10px; + } + } + + .el-date-editor.el-input, + .el-date-editor.el-input__inner { + width: 240px; + } + + .el-date-editor .el-range-separator { + line-height: 28px; + } +} diff --git a/src/styles/newTheme.scss b/src/styles/newTheme.scss new file mode 100644 index 0000000000000000000000000000000000000000..b97fe77ec7acd7b7db883fbe9d680c2575f7d2f9 --- /dev/null +++ b/src/styles/newTheme.scss @@ -0,0 +1,287 @@ +// 按照规范修改页面 规范地址 http://10.0.0.10:5080/wiki/#/team/6B7ew4b7/space/Nh57eCn2/page/41kGz4v2 + +// 列表相关(非弹窗里列表) + +.mc-table { + .el-table .sort-caret { + border: 4px solid transparent; + } + + .el-table .sort-caret.ascending { + border-bottom-color: #C0C4CC; + top: 1px; + } + + .el-table .sort-caret.descending { + border-top-color: #C0C4CC; + bottom: 2px; + } + + .el-table .caret-wrapper { + height: 22px; + } + + .el-table--border .el-table__cell, + .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed { + border-right: 0 !important; + } + + .el-table--small { + font-size: 14px; + } + + // 表格分页 + .el-pagination { + + .el-pagination__total, + .el-pagination__jump, + .el-pager .btn-quicknext, + .el-pager .btn-quickprev, + .btn-next, + .btn-prev, + .el-pager li, + .el-pager li.active, + .el-pager li:hover { + color: $light_paginationColor; + + } + + + + button:disabled { + color: #C0C4CC !important; + } + + .el-pager li.active { + color: $light_paginationColor; + background-color: $light_paginationactiveBgColor; + } + + .el-pager li:hover { + color: $light_paginationColor; + background-color: $light_paginationHoverBgColor; + } + + .el-pager>.btn-quicknext, + .el-pager>.btn-quickprev, + .btn-next, + .btn-prev, + .el-pager .number { + width: 32px; + height: 32px; + line-height: 32px; + background-color: $light_paginationBgColor; + background: $light_paginationBgColor; + border: 1px solid #F2F6FC; + border-radius: 4px; + } + + .el-pagination__sizes .el-input__inner, + .el-pagination__jump .el-input__inner { + height: 32px; + } + + .el-pagination__total { + line-height: 32px; + font-size: 14px; + font-weight: 700; + } + + } + +} + +// 按钮 +.el-button--small:not(.el-dropdown-menu__item>.el-button--small, .el-button--text) { + font-size: 13px; + border-radius: 4px; + min-width: 80px; +} + +//禁用 +.el-button.is-disabled:not(.el-dropdown-menu__item>.el-button--small), +.el-button.is-disabled:focus:not(.el-dropdown-menu__item>.el-button--small), +.el-button.is-disabled:hover:not(.el-dropdown-menu__item>.el-button--small) { + color: #F2F6FC; + background: rgba(204, 204, 204, 1); +} + +// .el-button { +// line-height: 1.1; +// } + +// 弹窗 + +.el-message { + background: #fff !important; + border-color: #fff !important; + box-shadow: 0 0 6px rgba(204, 204, 204, 1); + max-width: 640px; + top: 40px !important; +} + +.el-message-box { + padding-bottom: 0px; + + .el-message-box__header { + padding: 20px + } + + .el-message-box__content { + padding: 0px 15px 20px 15px; + } + + .el-message-box__container { + min-height: 40px; + display: flex; + align-items: center; + } + + .el-message-box__status+.el-message-box__message { + padding-left: 50px; + } + + .el-message-box__status { + font-size: 40px !important + } + + .el-message-box__btns { + justify-content: start; + padding: 15px; + border-top: 1px solid #eee; + padding: 15px 15px 15px 10px; + } +} + +.kcp-steps { + .el-step { + position: relative; + } + + :not(:first-child).el-step { + margin-left: -10%; + } + + .el-step__main { + min-width: 64px; + } + + .el-step__main { + position: absolute; + position: absolute; + top: -7px; + left: 32px; + } + + :not(:last-child).el-step { + flex: 1; + } + + .el-step:last-of-type.is-flex { + width: 150px; + } + + .el-step__description { + padding-right: 10%; + margin-top: -5px; + font-size: 12px; + line-height: 20px; + font-weight: 400; + } + + .el-step.is-horizontal .el-step__line { + height: 1px; + top: 11px; + left: 110px; + right: 0; + width: calc(90% - 165px); + } +} + +.el-drawer__header { + display: flex; + flex-direction: row; + align-items: center; + height: 70px; + padding: 20px; + margin: 0; + color: #333333; + background-color: #f2f8fe; + + span { + font-size: 20px; + } +} + +.el-drawer__body { + flex: 1; + overflow: auto; + position: relative; + display: flex; + flex-direction: column; + + .drawer-content { + display: flex; + flex: 1; + flex-direction: column; + height: 100%; + font-size: 14px; + color: #333333; + // box-sizing: border-box; + } + + .drawer-foot { + display: flex; + padding: 15px 30px; + border-top: 1px #d7d7d7 dashed; + } +} + + +.drawer-body-content { + $input-width: 375px; + margin: 30px 30px 0; + display: flex; + flex: 1; + overflow: auto; + flex-direction: column; + + .el-form-item__content { + + .el-input, + .el-input-number, + .el-select, + .el-textarea { + width: $input-width; + } + + } + + .el-input-group { + + .el-input, + .el-input-number, + .el-select, + .el-textarea { + width: 20%; + } + } + +} + +.el-switch__core { + background: rgba(153, 153, 153, 1); +} + +.el-switch.is-disabled { + .el-switch__core { + background: rgba(236, 236, 236, 1); + } +} + +.el-switch.is-disabled.is-checked { + .el-switch__core { + border-color: rgba(198, 226, 255, 1); + background-color: rgba(198, 226, 255, 1); + } +} diff --git a/src/styles/sidebar.scss b/src/styles/sidebar.scss new file mode 100644 index 0000000000000000000000000000000000000000..9ac1c92fba2975113ecf7416c65bf8cc84c8a844 --- /dev/null +++ b/src/styles/sidebar.scss @@ -0,0 +1,245 @@ +#app { + + .main-container { + min-height: 100%; + transition: margin-left .28s; + margin-left: $sideBarWidth; + position: relative; + } + + .sidebar-container { + transition: width 0.28s; + width: $sideBarWidth !important; + padding: 10px 0; + height: 100%; + overflow: hidden; + + // reset element-ui css + .horizontal-collapse-transition { + transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out; + } + + .scrollbar-wrapper { + overflow-x: hidden !important; + } + + .el-scrollbar__bar.is-vertical { + right: 0px; + } + + .el-scrollbar { + height: 100%; + } + + &.has-logo { + .el-scrollbar { + height: calc(100% - 50px); + } + } + + .is-horizontal { + display: none; + } + + a { + display: inline-block; + width: 100%; + overflow: hidden; + } + + .svg-icon { + margin-right: 16px; + } + + .sub-el-icon { + margin-right: 12px; + margin-left: -2px; + } + + .el-menu { + border: none; + height: 100%; + width: 100% !important; + } + + .el-menu, + .el-menu--horizontal>.el-menu-item:not(.is-disabled):focus, + .el-menu--horizontal>.el-menu-item:not(.is-disabled):hover, + .el-menu--horizontal>.el-submenu .el-submenu__title:hover { + background: transparent; + } + + .el-menu--horizontal>.el-menu-item { + height: 50px; + line-height: 50px; + } + + // menu hover + .submenu-title-noDropdown, + .el-submenu__title { + height: 60px; + line-height: 60px; + border-left: 4px solid transparent; + + &.is-active, + &:hover { + + border-left: 4px solid $menuHoverRightBorder; + } + } + + + + & .nest-menu .el-submenu>.el-submenu__title, + & .el-submenu .el-submenu__title, + & .el-submenu .el-menu-item { + min-width: $sideBarWidth !important; + height: 60px; + line-height: 60px; + margin-bottom: 5px; + border-left: 4px solid transparent; + + &.is-active, + &:hover, + &.is-active>.el-submenu__title { + border-left: 4px solid $menuHoverRightBorder; + } + } + + // & .el-submenu { + // margin-bottom: 5px; + + // &.is-active>.el-submenu__title { + // border-right: 2px solid $menuHoverRightBorder; + // } + // } + } + + .hideSidebar { + .sidebar-container { + width: 54px !important; + } + + .main-container { + margin-left: 54px; + } + + .submenu-title-noDropdown { + padding: 0 !important; + position: relative; + + .el-tooltip { + padding: 0 !important; + + .svg-icon { + margin-left: 20px; + } + + .sub-el-icon { + margin-left: 19px; + } + } + } + + .el-submenu { + overflow: hidden; + + &>.el-submenu__title { + padding: 0 !important; + + .svg-icon { + margin-left: 20px; + } + + .sub-el-icon { + margin-left: 19px; + } + + .el-submenu__icon-arrow { + display: none; + } + } + } + + .el-menu--collapse { + .el-submenu { + &>.el-submenu__title { + &>span { + height: 0; + width: 0; + overflow: hidden; + visibility: hidden; + display: inline-block; + } + } + } + } + } + + .el-menu--collapse .el-menu .el-submenu { + min-width: $sideBarWidth !important; + } + + // mobile responsive + .mobile { + .main-container { + margin-left: 0px; + } + + .sidebar-container { + transition: transform .28s; + width: $sideBarWidth !important; + } + + &.hideSidebar { + .sidebar-container { + pointer-events: none; + transition-duration: 0.3s; + transform: translate3d(-$sideBarWidth, 0, 0); + } + } + } + + .withoutAnimation { + + .main-container, + .sidebar-container { + transition: none; + } + } +} + +// when menu collapsed +.el-menu--vertical { + &>.el-menu { + .svg-icon { + margin-right: 16px; + } + + .sub-el-icon { + margin-right: 12px; + margin-left: -2px; + } + } + + + + // the scroll bar appears when the subMenu is too long + >.el-menu--popup { + max-height: 100vh; + overflow-y: auto; + + &::-webkit-scrollbar-track-piece { + background: #d3dce6; + } + + &::-webkit-scrollbar { + width: 6px; + } + + &::-webkit-scrollbar-thumb { + background: #99a9bf; + border-radius: 20px; + } + } +} \ No newline at end of file diff --git a/src/styles/themeDark/iconBg.scss b/src/styles/themeDark/iconBg.scss new file mode 100644 index 0000000000000000000000000000000000000000..40247ec86bf0f507df4de3fc347b51fb316de47f --- /dev/null +++ b/src/styles/themeDark/iconBg.scss @@ -0,0 +1,141 @@ +.homePage-bannerbg { + background: url('~@/styles/themeDark/images/banner.png') no-repeat center; + background-size: 100%; +} + +.vdcList-icon-zone { + background: url('~@/styles/themeDark/images/zone.png') no-repeat center; +} + +.vdcList-icon-cluster { + background: url('~@/styles/themeDark/images/cluster.png') no-repeat center; +} + +.vdcList-icon-physicalHost { + background: url('~@/styles/themeDark/images/physicalHost.png') no-repeat center; +} + +.vdcList-icon-VDC { + background: url('~@/styles/themeDark/images/VDC.png') no-repeat center; +} + +.vdcList-icon-serverVm { + background: url('~@/styles/themeDark/images/serverVm.png') no-repeat center; +} + +.alerts-icon { + background: url('~@/styles/themeDark/images/alerts.png') no-repeat center; +} + +.workorder-icon { + background: url('~@/styles/themeDark/images/workorder.png') no-repeat center; +} + +.kyq-icon { + background: url('~@/styles/themeDark/images/kyq.png') no-repeat center; +} + +.wljq-icon { + background: url('~@/styles/themeDark/images/wljq.png') no-repeat center; +} + +.xnsjzx-icon { + background: url('~@/styles/themeDark/images/xnsjzx.png') no-repeat center; +} + +.yfwq-icon { + background: url('~@/styles/themeDark/images/yfwq.png') no-repeat center; +} + +.xjzx-icon { + background: url('~@/styles/themeDark/images/xjzx.png') no-repeat center; +} + + +// 告警事件 +.gjsj-icon { + background: url('~@/styles/themeDark/images/gjsj.png') no-repeat center; +} + +// 告警日志 +.gjrz-icon { + background: url('~@/styles/themeDark/images/gjrz.png') no-repeat center; +} + +// 告警设置 +.gjsz-icon { + background: url('~@/styles/themeDark/images/gjsz.png') no-repeat center; +} + +// 操作日志 +.czrz-icon { + background: url('~@/styles/themeDark/images/czrz.png') no-repeat center; +} + +// 物理主机事件 +.wlzjsj-icon { + background: url('~@/styles/themeDark/images/wlzjsj.png') no-repeat center; +} + +// 云服务器事件 +.yfwqsj-icon { + background: url('~@/styles/themeDark/images/yfwqsj.png') no-repeat center; +} + +// 组织管理 +.zzgl-icon { + background: url('~@/styles/themeDark/images/zzgl.png') no-repeat center; +} + +// 权限管理 +.qxgl-icon { + background: url('~@/styles/themeDark/images/qxgl.png') no-repeat center; +} + +// 用户管理 +.yhgl-icon { + background: url('~@/styles/themeDark/images/yhgl.png') no-repeat center; +} + +// 角色管理 +.jsgl-icon { + background: url('~@/styles/themeDark/images/jsgl.png') no-repeat center; +} + +// 工单管理 +.gdgl-icon { + background: url('~@/styles/themeDark/images/gdgl.png') no-repeat center; +} + +// 工单审核 +.gdsh-icon { + background: url('~@/styles/themeDark/images/gdsh.png') no-repeat center; +} + +// 网络设置 +.wlsz-icon { + background: url('~@/styles/themeDark/images/wlsz.png') no-repeat center; +} + +// 镜像管理 +.jxgl-icon { + background: url('~@/styles/themeDark/images/jxgl.png') no-repeat center; +} + +// 异地容灾 +.rzbf { + background: url('~@/styles/themeDark/images/rzbf.png') no-repeat center; + background-size: 18px !important; +} + +// 主备kcp +.zbkcp { + background: url('~@/styles/themeDark/images/zbkcp.png') no-repeat center; + background-size: 18px !important; +} + +//裸金属 +.ljs { + background: url('~@/styles/themeDark/images/ljsj.png') no-repeat center; + background-size: 18px !important; +} \ No newline at end of file diff --git a/src/styles/themeDark/images/VDC.png b/src/styles/themeDark/images/VDC.png new file mode 100644 index 0000000000000000000000000000000000000000..d3cf3bbbdb40c216a5cb82df30d4cb4b4a3d7532 Binary files /dev/null and b/src/styles/themeDark/images/VDC.png differ diff --git a/src/styles/themeDark/images/alerts.png b/src/styles/themeDark/images/alerts.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8e1e2bf6aae241c2b5db180d5dd43c0f2e651a Binary files /dev/null and b/src/styles/themeDark/images/alerts.png differ diff --git a/src/styles/themeDark/images/banner.png b/src/styles/themeDark/images/banner.png new file mode 100644 index 0000000000000000000000000000000000000000..2109d23335da1692ac7409c05275bf764fe73dc6 Binary files /dev/null and b/src/styles/themeDark/images/banner.png differ diff --git a/src/styles/themeDark/images/cluster.png b/src/styles/themeDark/images/cluster.png new file mode 100644 index 0000000000000000000000000000000000000000..85d8882609fd5e0eca095cb909cf26915f4cd631 Binary files /dev/null and b/src/styles/themeDark/images/cluster.png differ diff --git a/src/styles/themeDark/images/czrz.png b/src/styles/themeDark/images/czrz.png new file mode 100644 index 0000000000000000000000000000000000000000..4373f2ba38e6a714f9e9a508f9d47fe4c43a0ad1 Binary files /dev/null and b/src/styles/themeDark/images/czrz.png differ diff --git a/src/styles/themeDark/images/gdgl.png b/src/styles/themeDark/images/gdgl.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e2cd814d41d7da38f7d80644a87c752a47eb86 Binary files /dev/null and b/src/styles/themeDark/images/gdgl.png differ diff --git a/src/styles/themeDark/images/gdsh.png b/src/styles/themeDark/images/gdsh.png new file mode 100644 index 0000000000000000000000000000000000000000..0b7771cb79ad8d57638918b211ad5ee23b94613c Binary files /dev/null and b/src/styles/themeDark/images/gdsh.png differ diff --git a/src/styles/themeDark/images/gjrz.png b/src/styles/themeDark/images/gjrz.png new file mode 100644 index 0000000000000000000000000000000000000000..36ac30123d54340079570d7d65af460736ad35cf Binary files /dev/null and b/src/styles/themeDark/images/gjrz.png differ diff --git a/src/styles/themeDark/images/gjsj.png b/src/styles/themeDark/images/gjsj.png new file mode 100644 index 0000000000000000000000000000000000000000..7d95f8de72807928d801863fd20e1aad9747c108 Binary files /dev/null and b/src/styles/themeDark/images/gjsj.png differ diff --git a/src/styles/themeDark/images/gjsz.png b/src/styles/themeDark/images/gjsz.png new file mode 100644 index 0000000000000000000000000000000000000000..4c137d4d4cb39a21a1a0aa0e82dafabc02428c40 Binary files /dev/null and b/src/styles/themeDark/images/gjsz.png differ diff --git a/src/styles/themeDark/images/jsgl.png b/src/styles/themeDark/images/jsgl.png new file mode 100644 index 0000000000000000000000000000000000000000..3faa36f46518d4f066bfe0f85430442d1948083c Binary files /dev/null and b/src/styles/themeDark/images/jsgl.png differ diff --git a/src/styles/themeDark/images/jxgl.png b/src/styles/themeDark/images/jxgl.png new file mode 100644 index 0000000000000000000000000000000000000000..dc15a1b8a053aaad55f6804c20924f8f3d2fecda Binary files /dev/null and b/src/styles/themeDark/images/jxgl.png differ diff --git a/src/styles/themeDark/images/kyq.png b/src/styles/themeDark/images/kyq.png new file mode 100644 index 0000000000000000000000000000000000000000..18c9a1a14d42a2d8d681655cbcf4db637684a68b Binary files /dev/null and b/src/styles/themeDark/images/kyq.png differ diff --git a/src/styles/themeDark/images/ljsj.png b/src/styles/themeDark/images/ljsj.png new file mode 100644 index 0000000000000000000000000000000000000000..c7af83a95475659e2b28c5ee07ec516792a93523 Binary files /dev/null and b/src/styles/themeDark/images/ljsj.png differ diff --git a/src/styles/themeDark/images/physicalHost.png b/src/styles/themeDark/images/physicalHost.png new file mode 100644 index 0000000000000000000000000000000000000000..8493a162edc6b2f466c4a59d13aed41a779bb0c9 Binary files /dev/null and b/src/styles/themeDark/images/physicalHost.png differ diff --git a/src/styles/themeDark/images/qxgl.png b/src/styles/themeDark/images/qxgl.png new file mode 100644 index 0000000000000000000000000000000000000000..768eac4914b98658e1e49d9292b13056f3f28189 Binary files /dev/null and b/src/styles/themeDark/images/qxgl.png differ diff --git a/src/styles/themeDark/images/rzbf.png b/src/styles/themeDark/images/rzbf.png new file mode 100644 index 0000000000000000000000000000000000000000..dcba4137f0f0eb8f69a00c1ba86bcb014e52e656 Binary files /dev/null and b/src/styles/themeDark/images/rzbf.png differ diff --git a/src/styles/themeDark/images/serverVm.png b/src/styles/themeDark/images/serverVm.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed9d0730d437aeb0d01df03c27940847b048554 Binary files /dev/null and b/src/styles/themeDark/images/serverVm.png differ diff --git a/src/styles/themeDark/images/wljq.png b/src/styles/themeDark/images/wljq.png new file mode 100644 index 0000000000000000000000000000000000000000..a2414e0c2183e049cd98d53a3e9209694ec4d73b Binary files /dev/null and b/src/styles/themeDark/images/wljq.png differ diff --git a/src/styles/themeDark/images/wlsz.png b/src/styles/themeDark/images/wlsz.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6677ba6f315dbfbd7dac8338924678be202651 Binary files /dev/null and b/src/styles/themeDark/images/wlsz.png differ diff --git a/src/styles/themeDark/images/wlzjsj.png b/src/styles/themeDark/images/wlzjsj.png new file mode 100644 index 0000000000000000000000000000000000000000..fff3302983aef0c2af7db8f317d3569df3e2933c Binary files /dev/null and b/src/styles/themeDark/images/wlzjsj.png differ diff --git a/src/styles/themeDark/images/workorder.png b/src/styles/themeDark/images/workorder.png new file mode 100644 index 0000000000000000000000000000000000000000..f888efe9167b3f24146f522e09f5c813941d5b8c Binary files /dev/null and b/src/styles/themeDark/images/workorder.png differ diff --git a/src/styles/themeDark/images/xjzx.png b/src/styles/themeDark/images/xjzx.png new file mode 100644 index 0000000000000000000000000000000000000000..cb555918589f8cef311fe98d8b92a8edbcddecf1 Binary files /dev/null and b/src/styles/themeDark/images/xjzx.png differ diff --git a/src/styles/themeDark/images/xnsjzx.png b/src/styles/themeDark/images/xnsjzx.png new file mode 100644 index 0000000000000000000000000000000000000000..736500a98405e3037746046e3d60fa92b35d0641 Binary files /dev/null and b/src/styles/themeDark/images/xnsjzx.png differ diff --git a/src/styles/themeDark/images/yfwq.png b/src/styles/themeDark/images/yfwq.png new file mode 100644 index 0000000000000000000000000000000000000000..db3a33c2bd9e667b640a5e49bde762c3ec9c80ab Binary files /dev/null and b/src/styles/themeDark/images/yfwq.png differ diff --git a/src/styles/themeDark/images/yfwqsj.png b/src/styles/themeDark/images/yfwqsj.png new file mode 100644 index 0000000000000000000000000000000000000000..1985f46521bd78ba7377f3fd6fd41f8d4c0d652f Binary files /dev/null and b/src/styles/themeDark/images/yfwqsj.png differ diff --git a/src/styles/themeDark/images/yhgl.png b/src/styles/themeDark/images/yhgl.png new file mode 100644 index 0000000000000000000000000000000000000000..8686338ce27a7f843ef90881bbc8c3a484f05b9e Binary files /dev/null and b/src/styles/themeDark/images/yhgl.png differ diff --git a/src/styles/themeDark/images/zbkcp.png b/src/styles/themeDark/images/zbkcp.png new file mode 100644 index 0000000000000000000000000000000000000000..4f65ebeb6af7b5ba2ccae5e7a682dd71f16cc683 Binary files /dev/null and b/src/styles/themeDark/images/zbkcp.png differ diff --git a/src/styles/themeDark/images/zone.png b/src/styles/themeDark/images/zone.png new file mode 100644 index 0000000000000000000000000000000000000000..898c89e895c2dd00944cc6de6e29bd6c28b27989 Binary files /dev/null and b/src/styles/themeDark/images/zone.png differ diff --git a/src/styles/themeDark/images/zzgl.png b/src/styles/themeDark/images/zzgl.png new file mode 100644 index 0000000000000000000000000000000000000000..46f18b15f49a71b3e7095605bbc962f4f9bec642 Binary files /dev/null and b/src/styles/themeDark/images/zzgl.png differ diff --git a/src/styles/themeDark/index.scss b/src/styles/themeDark/index.scss new file mode 100644 index 0000000000000000000000000000000000000000..fad1b7e81278cdd1acb12d79f903238ec51904a5 --- /dev/null +++ b/src/styles/themeDark/index.scss @@ -0,0 +1,231 @@ +[data-theme="dark"] { + @import './iconBg.scss'; + + .app-wrapper-content { + color: $dark_fontColor; + background: $dark_contentBg; + } + + .commonBox, + .page-wrapper-left, + .page-wrapper-right .app-container { + background: $dark_gray; + } + + .page-wrapper-icon { + .org-text { + color: $dark_fontColor; + } + } + + // 头部路由文字 + .app-breadcrumb.el-breadcrumb { + .no-redirect { + color: $dark_fontColor; + } + } + + .el-breadcrumb__inner a, + .el-breadcrumb__inner.is-link { + color: $dark_fontColor; + } + + + // 左侧菜单 + .sidebar-container { + + .submenu-title-noDropdown, + .el-submenu__title, + .el-submenu .el-menu-item { + + &.is-active, + &:hover { + background-color: $dark_menuHover !important; + } + } + + .el-menu-item, + .el-submenu__title { + color: $dark_menuColor; + } + + .el-menu-item:focus, + .el-menu-item:hover { + background-color: $dark_menuHover !important; + } + } + + // 表格 + .mc-table { + .el-table__fixed-right { + .el-table th { + background-color: $dark_tableBg; + } + + background-color: $dark_tableBg; + } + + .el-table { + color: $dark_fontColor; + + th>.cell, + .el-progress__text { + color: $dark_fontColor; + } + + th, + .el-table__fixed-right-patch, + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $dark_tableheaderBg; + } + + th.is-leaf .cell::after { + background-color: $dark_tableheadersplit; + } + + .el-table__body tr.hover-row.current-row>td, + .el-table__body tr.hover-row.el-table__row--striped.current-row>td, + .el-table__body tr.hover-row.el-table__row--striped>td, + .el-table__body tr.hover-row>td { + background-color: $dark_tablecellhoverBg; + } + + + } + + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $dark_tablecellhoverBg; + } + + .el-table td, + .el-table th.is-leaf { + border-bottom: 1px solid $dark_tableBorderColor !important; + } + + // 表格分页 + // .el-pagination { + + // .el-pagination__total, + // .el-pagination__jump, + // .el-pager li.btn-quicknext, + // .el-pager li.btn-quickprev, + // .btn-next, + // .btn-prev, + // .el-pager li, + // .el-pager li.active, + // .el-pager li:hover { + // color: $dark_paginationColor; + // } + + // button:disabled { + // color: #C0C4CC !important; + // } + + // .el-pager li.active { + // color: $dark_paginationColor; + // background-color: $dark_paginationactiveBgColor; + // } + + // .el-pager li:hover { + // color: $dark_paginationColor; + // background-color: $dark_paginationHoverBgColor; + // } + + // .btn-next, + // .btn-prev, + // .el-pager li { + // background-color: $dark_paginationBgColor; + // background: $dark_paginationBgColor; + // margin: 0 2px; + // } + // } + } + + + + .el-drawer__body { + .el-table { + color: $light_fontColor; + + th>.cell, + .el-progress__text { + color: $light_fontColor; + } + + th, + .el-table__fixed-right-patch, + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $light_tableheaderBg; + } + + th.is-leaf .cell::after { + background-color: $light_tableheadersplit; + } + + .el-table__body tr.hover-row.current-row>td, + .el-table__body tr.hover-row.el-table__row--striped.current-row>td, + .el-table__body tr.hover-row.el-table__row--striped>td, + .el-table__body tr.hover-row>td { + background-color: $light_tableheaderBg; + } + + + } + + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $light_tableheaderBg; + } + + + .el-table td, + .el-table th.is-leaf { + border-bottom: 1px solid $light_tableBorderColor !important; + } + + .el-tree { + color: $light_fontColor; + + .el-tree-node__content:hover, + .el-tree-node:focus>.el-tree-node__content { + background: $light_tablecellhoverBg; + } + } + } + + .title-box, + .basicInfo-title, + .panel-setting>span, + .workDetail h3 { + color: $dark_fontColor; + } + + .el-tree { + color: $dark_fontColor; + + .el-tree-node.is-current>.el-tree-node__content, + .el-tree-node__content:hover, + .el-tree-node:focus>.el-tree-node__content { + background: $dark_tree_nodebg; + } + } + + .el-tabs { + .el-tabs__item { + color: $dark_fontColor; + } + + .el-tabs__item.is-active { + color: #409EFF; + } + } + + // 详情页面 + .basicInfo-content { + color: $dark_fontColor; + } + + // form表单 + .el-form-item__label { + color: $dark_fontColor; + } +} diff --git a/src/styles/themeLight/iconBg.scss b/src/styles/themeLight/iconBg.scss new file mode 100644 index 0000000000000000000000000000000000000000..0c73f4df7ce2e54bb6ec0bd53a5390f32d93b06b --- /dev/null +++ b/src/styles/themeLight/iconBg.scss @@ -0,0 +1,141 @@ +.homePage-bannerbg { + background: url('~@/styles/themeLight/images/banner.png') no-repeat center; + background-size: 100%; +} + +.vdcList-icon-zone { + background: url('~@/styles/themeLight/images/zone.png') no-repeat center; +} + +.vdcList-icon-cluster { + background: url('~@/styles/themeLight/images/cluster.png') no-repeat center; +} + +.vdcList-icon-physicalHost { + background: url('~@/styles/themeLight/images/physicalHost.png') no-repeat center; +} + +.vdcList-icon-VDC { + background: url('~@/styles/themeLight/images/VDC.png') no-repeat center; +} + +.vdcList-icon-serverVm { + background: url('~@/styles/themeLight/images/serverVm.png') no-repeat center; +} + +.alerts-icon { + background: url('~@/styles/themeLight/images/alerts.png') no-repeat center; +} + +.workorder-icon { + background: url('~@/styles/themeLight/images/workorder.png') no-repeat center; +} + +.kyq-icon { + background: url('~@/styles/themeLight/images/kyq.png') no-repeat center; +} + +.wljq-icon { + background: url('~@/styles/themeLight/images/wljq.png') no-repeat center; +} + +.xnsjzx-icon { + background: url('~@/styles/themeLight/images/xnsjzx.png') no-repeat center; +} + +.yfwq-icon { + background: url('~@/styles/themeLight/images/yfwq.png') no-repeat center; +} + +.xjzx-icon { + background: url('~@/styles/themeLight/images/sjzx.png') no-repeat center; +} + +// 告警事件 +.gjsj-icon { + background: url('~@/styles/themeLight/images/gjsj.png') no-repeat center; +} + +// 告警日志 +.gjrz-icon { + background: url('~@/styles/themeLight/images/gjrz.png') no-repeat center; +} + +// 告警设置 +.gjsz-icon { + background: url('~@/styles/themeLight/images/gjsz.png') no-repeat center; +} + +// 操作日志 +.czrz-icon { + background: url('~@/styles/themeLight/images/czrz.png') no-repeat center; +} + +// 物理主机事件 +.wlzjsj-icon { + background: url('~@/styles/themeLight/images/wlzjsj.png') no-repeat center; +} + +// 云服务器事件 +.yfwqsj-icon { + background: url('~@/styles/themeLight/images/yfwqsj.png') no-repeat center; +} + +// 组织管理 +.zzgl-icon { + background: url('~@/styles/themeLight/images/zzgl.png') no-repeat center; +} + +// 权限管理 +.qxgl-icon { + background: url('~@/styles/themeLight/images/qxgl.png') no-repeat center; +} + +// 用户管理 +.yhgl-icon { + background: url('~@/styles/themeLight/images/yhgl.png') no-repeat center; +} + +// 角色管理 +.jsgl-icon { + background: url('~@/styles/themeLight/images/jsgl.png') no-repeat center; +} + +// 工单管理 +.gdgl-icon { + background: url('~@/styles/themeLight/images/gdgl.png') no-repeat center; +} + +// 工单审核 +.gdsh-icon { + background: url('~@/styles/themeLight/images/gdsh.png') no-repeat center; +} + +// 网络设置 +.wlsz-icon { + background: url('~@/styles/themeLight/images/wlsz.png') no-repeat center; +} + +// 镜像管理 +.jxgl-icon { + background: url('~@/styles/themeLight/images/jxgl.png') no-repeat center; +} + +// 异地容灾 +.rzbf { + background: url('~@/styles/themeDark/images/rzbf.png') no-repeat center; + background-size: 18px !important; +} + +// 主备kcp +.zbkcp { + background: url('~@/styles/themeDark/images/zbkcp.png') no-repeat center; + background-size: 18px !important; +} + + +//裸金属 +.ljs { + background: url('~@/styles/themeDark/images/ljsj.png') no-repeat center; + background-size: 18px !important; +} \ No newline at end of file diff --git a/src/styles/themeLight/images/VDC.png b/src/styles/themeLight/images/VDC.png new file mode 100644 index 0000000000000000000000000000000000000000..d3cf3bbbdb40c216a5cb82df30d4cb4b4a3d7532 Binary files /dev/null and b/src/styles/themeLight/images/VDC.png differ diff --git a/src/styles/themeLight/images/alerts.png b/src/styles/themeLight/images/alerts.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8e1e2bf6aae241c2b5db180d5dd43c0f2e651a Binary files /dev/null and b/src/styles/themeLight/images/alerts.png differ diff --git a/src/styles/themeLight/images/banner.png b/src/styles/themeLight/images/banner.png new file mode 100644 index 0000000000000000000000000000000000000000..4d7e1b03658b024841eca53575f9438f22bf5887 Binary files /dev/null and b/src/styles/themeLight/images/banner.png differ diff --git a/src/styles/themeLight/images/cluster.png b/src/styles/themeLight/images/cluster.png new file mode 100644 index 0000000000000000000000000000000000000000..85d8882609fd5e0eca095cb909cf26915f4cd631 Binary files /dev/null and b/src/styles/themeLight/images/cluster.png differ diff --git a/src/styles/themeLight/images/czrz.png b/src/styles/themeLight/images/czrz.png new file mode 100644 index 0000000000000000000000000000000000000000..c1372dbf1d78d5fb572041117bc25394ec749b85 Binary files /dev/null and b/src/styles/themeLight/images/czrz.png differ diff --git a/src/styles/themeLight/images/gdgl.png b/src/styles/themeLight/images/gdgl.png new file mode 100644 index 0000000000000000000000000000000000000000..ae1efbc1ac23ef964858fe1c2c3b4cf568bb8267 Binary files /dev/null and b/src/styles/themeLight/images/gdgl.png differ diff --git a/src/styles/themeLight/images/gdsh.png b/src/styles/themeLight/images/gdsh.png new file mode 100644 index 0000000000000000000000000000000000000000..5dafd4b2bbc6dac291b48a36f17d7e554c7e38b2 Binary files /dev/null and b/src/styles/themeLight/images/gdsh.png differ diff --git a/src/styles/themeLight/images/gjrz.png b/src/styles/themeLight/images/gjrz.png new file mode 100644 index 0000000000000000000000000000000000000000..7a1f0b72e64496ab77f5b43a30e0981e64975b33 Binary files /dev/null and b/src/styles/themeLight/images/gjrz.png differ diff --git a/src/styles/themeLight/images/gjsj.png b/src/styles/themeLight/images/gjsj.png new file mode 100644 index 0000000000000000000000000000000000000000..79ff96ee9cc1c27d1091c5890c153eb317f2f1f2 Binary files /dev/null and b/src/styles/themeLight/images/gjsj.png differ diff --git a/src/styles/themeLight/images/gjsz.png b/src/styles/themeLight/images/gjsz.png new file mode 100644 index 0000000000000000000000000000000000000000..275cf245900acb851978a7d57a89977d3ea4a46c Binary files /dev/null and b/src/styles/themeLight/images/gjsz.png differ diff --git a/src/styles/themeLight/images/jsgl.png b/src/styles/themeLight/images/jsgl.png new file mode 100644 index 0000000000000000000000000000000000000000..03c394735f4d35b4418555605fab440d4a4383f0 Binary files /dev/null and b/src/styles/themeLight/images/jsgl.png differ diff --git a/src/styles/themeLight/images/jxgl.png b/src/styles/themeLight/images/jxgl.png new file mode 100644 index 0000000000000000000000000000000000000000..8d5c73f91efb9de8aca6fdc641edb0e8cf7de854 Binary files /dev/null and b/src/styles/themeLight/images/jxgl.png differ diff --git a/src/styles/themeLight/images/kyq.png b/src/styles/themeLight/images/kyq.png new file mode 100644 index 0000000000000000000000000000000000000000..e7c6d4422d6381c640b7fac4e627250ffc4f9f56 Binary files /dev/null and b/src/styles/themeLight/images/kyq.png differ diff --git a/src/styles/themeLight/images/physicalHost.png b/src/styles/themeLight/images/physicalHost.png new file mode 100644 index 0000000000000000000000000000000000000000..8493a162edc6b2f466c4a59d13aed41a779bb0c9 Binary files /dev/null and b/src/styles/themeLight/images/physicalHost.png differ diff --git a/src/styles/themeLight/images/qxgl.png b/src/styles/themeLight/images/qxgl.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef89d7bdce0355cc5a5666b1d77a565138bf1e8 Binary files /dev/null and b/src/styles/themeLight/images/qxgl.png differ diff --git a/src/styles/themeLight/images/serverVm.png b/src/styles/themeLight/images/serverVm.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed9d0730d437aeb0d01df03c27940847b048554 Binary files /dev/null and b/src/styles/themeLight/images/serverVm.png differ diff --git a/src/styles/themeLight/images/sjzx.png b/src/styles/themeLight/images/sjzx.png new file mode 100644 index 0000000000000000000000000000000000000000..1320dc1247ffba89a5c1cb243d66f3c845e26bff Binary files /dev/null and b/src/styles/themeLight/images/sjzx.png differ diff --git a/src/styles/themeLight/images/wljq.png b/src/styles/themeLight/images/wljq.png new file mode 100644 index 0000000000000000000000000000000000000000..a614d7dda87d18f89851b9346f0272a371a7f186 Binary files /dev/null and b/src/styles/themeLight/images/wljq.png differ diff --git a/src/styles/themeLight/images/wlsz.png b/src/styles/themeLight/images/wlsz.png new file mode 100644 index 0000000000000000000000000000000000000000..4f093d202526072f48846dd46ca2b375a2373962 Binary files /dev/null and b/src/styles/themeLight/images/wlsz.png differ diff --git a/src/styles/themeLight/images/wlzjsj.png b/src/styles/themeLight/images/wlzjsj.png new file mode 100644 index 0000000000000000000000000000000000000000..f07f44a15f166441bf6c41821e72d5589a248d9e Binary files /dev/null and b/src/styles/themeLight/images/wlzjsj.png differ diff --git a/src/styles/themeLight/images/workorder.png b/src/styles/themeLight/images/workorder.png new file mode 100644 index 0000000000000000000000000000000000000000..f888efe9167b3f24146f522e09f5c813941d5b8c Binary files /dev/null and b/src/styles/themeLight/images/workorder.png differ diff --git a/src/styles/themeLight/images/xnsjzx.png b/src/styles/themeLight/images/xnsjzx.png new file mode 100644 index 0000000000000000000000000000000000000000..15e6fca6110145c07022239153251caf713cb298 Binary files /dev/null and b/src/styles/themeLight/images/xnsjzx.png differ diff --git a/src/styles/themeLight/images/yfwq.png b/src/styles/themeLight/images/yfwq.png new file mode 100644 index 0000000000000000000000000000000000000000..24359f05748e6573e4bb71e74eda3162e5a69923 Binary files /dev/null and b/src/styles/themeLight/images/yfwq.png differ diff --git a/src/styles/themeLight/images/yfwqsj.png b/src/styles/themeLight/images/yfwqsj.png new file mode 100644 index 0000000000000000000000000000000000000000..c0c5ddb2f8aab62b61b4cbe623aa539160bb601d Binary files /dev/null and b/src/styles/themeLight/images/yfwqsj.png differ diff --git a/src/styles/themeLight/images/yhgl.png b/src/styles/themeLight/images/yhgl.png new file mode 100644 index 0000000000000000000000000000000000000000..52dd8ff402b556c67391a59a9562b5d1f5c11928 Binary files /dev/null and b/src/styles/themeLight/images/yhgl.png differ diff --git a/src/styles/themeLight/images/zone.png b/src/styles/themeLight/images/zone.png new file mode 100644 index 0000000000000000000000000000000000000000..898c89e895c2dd00944cc6de6e29bd6c28b27989 Binary files /dev/null and b/src/styles/themeLight/images/zone.png differ diff --git a/src/styles/themeLight/images/zzgl.png b/src/styles/themeLight/images/zzgl.png new file mode 100644 index 0000000000000000000000000000000000000000..5eb90e231caa3c44027200d12f2286feac662588 Binary files /dev/null and b/src/styles/themeLight/images/zzgl.png differ diff --git a/src/styles/themeLight/index.scss b/src/styles/themeLight/index.scss new file mode 100644 index 0000000000000000000000000000000000000000..6af92dc7383ae10e5eef4d244f028b316bf75aa2 --- /dev/null +++ b/src/styles/themeLight/index.scss @@ -0,0 +1,140 @@ +[data-theme="light"] { + @import './iconBg.scss'; + + .app-wrapper-content { + color: $light_fontColor; + background: $light_contentBg; + } + + .commonBox, + .page-wrapper-left, + .page-wrapper-right .app-container { + background: $light_gray; + } + + .page-wrapper-icon { + .org-text { + color: $light_fontColor; + } + } + + // 头部路由文字 + .app-breadcrumb.el-breadcrumb { + .no-redirect { + color: $light_fontColor; + } + } + + .el-breadcrumb__inner a, + .el-breadcrumb__inner.is-link { + color: $light_fontColor; + } + + // 左侧菜单 + .sidebar-container { + + .submenu-title-noDropdown, + .el-submenu__title, + .el-submenu .el-menu-item { + + &.is-active, + &:hover { + background-color: $light_menuHover !important; + color: $menuHoverRightBorder; + } + } + + .el-menu-item, + .el-submenu__title { + color: $light_menuColor; + } + + .el-menu-item:focus, + .el-menu-item:hover { + background-color: $light_menuHover !important; + } + } + + // 表格 + .mc-table { + .el-table { + + .el-table__fixed-right { + background-color: $light_tableBg; + } + + color: $light_fontColor; + + th>.cell, + .el-progress__text { + color: $light_fontColor; + } + + th, + .el-table__fixed-right-patch, + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $light_tableheaderBg; + } + + th.is-leaf .cell::after { + background-color: $light_tableheadersplit; + } + + .el-table__body tr.hover-row.current-row>td, + .el-table__body tr.hover-row.el-table__row--striped.current-row>td, + .el-table__body tr.hover-row.el-table__row--striped>td, + .el-table__body tr.hover-row>td { + background-color: $light_tableheaderBg; + } + + + } + + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $light_tableheaderBg; + } + + .el-table td, + .el-table th.is-leaf { + border-bottom: 1px solid $light_tableBorderColor !important; + } + + } + + .title-box, + .basicInfo-title, + .panel-setting>span, + .workDetail h3 { + color: $light_fontColor; + } + + .el-tree { + color: $light_fontColor; + + .el-tree-node.is-current>.el-tree-node__content, + .el-tree-node__content:hover, + .el-tree-node:focus>.el-tree-node__content { + background: $light_tree_nodebg; + } + } + + .el-tabs { + .el-tabs__item { + color: $light_fontColor; + } + + .el-tabs__item.is-active { + color: #409EFF; + } + } + + // 详情页面 + .basicInfo-content { + color: $light_fontColor; + } + + // form表单 + .el-form-item__label { + color: $light_fontColor; + } +} diff --git a/src/styles/transition.scss b/src/styles/transition.scss new file mode 100644 index 0000000000000000000000000000000000000000..4cb27cc811e28605bb6d0657a6257f0c901f6809 --- /dev/null +++ b/src/styles/transition.scss @@ -0,0 +1,48 @@ +// global transition css + +/* fade */ +.fade-enter-active, +.fade-leave-active { + transition: opacity 0.28s; +} + +.fade-enter, +.fade-leave-active { + opacity: 0; +} + +/* fade-transform */ +.fade-transform-leave-active, +.fade-transform-enter-active { + transition: all .5s; +} + +.fade-transform-enter { + opacity: 0; + transform: translateX(-30px); +} + +.fade-transform-leave-to { + opacity: 0; + transform: translateX(30px); +} + +/* breadcrumb transition */ +.breadcrumb-enter-active, +.breadcrumb-leave-active { + transition: all .5s; +} + +.breadcrumb-enter, +.breadcrumb-leave-active { + opacity: 0; + transform: translateX(20px); +} + +.breadcrumb-move { + transition: all .5s; +} + +.breadcrumb-leave-active { + position: absolute; +} diff --git a/src/styles/variables.scss b/src/styles/variables.scss new file mode 100644 index 0000000000000000000000000000000000000000..0e4010219d48131351b2956e239bcb11eb209593 --- /dev/null +++ b/src/styles/variables.scss @@ -0,0 +1,107 @@ +@import './mixin.scss'; + +// sidebar +$menuText: #000; +$menuActiveText: #000; +$subMenuActiveText: #000; //https://github.com/ElemeFE/element/issues/12951 + +$menuBg: #ffffff; +$dark_menuHover: #2f394c; // 菜单(暗色) +$light_menuHover: #F5F7FA; // 菜单(亮色) + +$dark_menuColor: #eaeaeb; // 菜单字体(暗色) +$light_menuColor: #2f394c; // 菜单字体(暗色) + +$menuHoverRightBorder: #409EFF; +$name_avatarBg: #409EFF; +$subMenuBg: #1f2d3d; +$subMenuHover: #001528; + +$loginBg: #34333c; //登录首页背景色 + +$dark_gray: #172238; //表单背景色(暗色) +$light_gray: #fff; //表单背景色(亮色) + +$dark_contentBg: #0d1421; // 页面整体背景颜色(暗色) +$light_contentBg: #F5F7FA; // 页面整体背景颜色(亮色) + +$btnBg: #409EFF; //按钮背景色 + +$fontColor: #333333; // 字体颜色 +$dark_fontColor: #eaeaeb; // 字体颜色 +$light_fontColor: #333333; // 字体颜色 + +$fontLightColr: #999; // 浅色 +$borderColor: #d7d7d7; // 边框颜色 +$boxShadow: 0px 0px 4px 3px #ededed; // 描边 + +$msgSuccess: #67C23A; //成功消息颜色 +$msgWarning: #E6A23C; //警告消息颜色 +$msgInfo: #409EFF; //提示消息颜色 +$msgDanger: #F56C6C; //严重消息颜色 +$msgNotice: #303133; //通知消息颜色 + +$headerBg: #172238; // 页面头部背景 +$headerColor: #ffffff; // 页面头部字体颜色 + + +$headerBarBorder: #409EFF; // 页面整体背景颜色 +$sideBarWidth: 230px; + +// 表格颜色 +// 表头颜色 + +$light_tableBg: #fff; // 表格背景(亮色) +$dark_tableBg: #172238; // 表格背景(暗色) +$dark_tableheaderBg: #232d42; // 表格行鼠标划过颜色(暗色) +$light_tableheaderBg: #f5f7fa; // 表格行鼠标划过颜色(亮色) +// 行鼠标滑过 +$dark_tablecellhoverBg: #232d42; // 表格行鼠标划过颜色(暗色) +$light_tablecellhoverBg: #fafafa; // 表格行鼠标划过颜色(亮色) +// 行分割线 +$dark_tableBorderColor: #394255; // 表格行边框颜色(暗色) +$light_tableBorderColor: #e8e8e8; // 表格行边框颜色(亮色) +// 表头分割线 +$dark_tableheadersplit: #394255; // 表格行鼠标划过颜色(暗色) +$light_tableheadersplit: #ebeef5; // 表格行鼠标划过颜色(亮色) + +// 表格分页 +$dark_paginationColor: #fff; // 表格分页字体颜色(暗色) +$light_paginationColor: rgba(0, 0, 0, 0.65); // 表格分页字体颜色(亮色) + +$dark_paginationBgColor: #262c38; // 表格分页背景颜色(暗色) +$light_paginationBgColor: #fff; // 表格分页背景颜色(亮色) + + +$dark_paginationactiveBgColor: #409EFF; // 表格分页背景颜色(暗色).active +$light_paginationactiveBgColor: #409EFF; // 表格分页背景颜色(亮色).active + + +$dark_paginationHoverBgColor: #454a54; // 表格分页背景颜色(暗色):hover +$light_paginationHoverBgColor: #ebeef5; // 表格分页背景颜色(亮色):hover + +$dark_tree_nodebg: #232d42; // 树组件选中项颜色(暗色) +$light_tree_nodebg: #f0f7ff; // 树组件选中项颜色(亮色) + + +// the :export directive is the magic sauce for webpack + +// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass +:export { + menuText: $menuText; + menuActiveText: $menuActiveText; + subMenuActiveText: $subMenuActiveText; + menuBg: $menuBg; + dark_gray: $loginBg; + loginBg: $dark_gray; + light_gray: $light_gray; + btnBg: $btnBg; + subMenuBg: $subMenuBg; + subMenuHover: $subMenuHover; + sideBarWidth: $sideBarWidth; + msgSuccess: $msgSuccess; + msgWarning: $msgWarning; + msgInfo: $msgInfo; + msgDanger: $msgDanger; + msgNotice: $msgNotice; +} diff --git a/src/utils/auth.js b/src/utils/auth.js new file mode 100644 index 0000000000000000000000000000000000000000..bb878ac6dd2073523691ee78d4991da59f1fc4d1 --- /dev/null +++ b/src/utils/auth.js @@ -0,0 +1,15 @@ +import Cookies from 'js-cookie' + +const TokenKey = 'ACCESS_TOKEN-KCP' + +export function getToken() { + return Cookies.get(TokenKey) +} + +export function setToken(token) { + return Cookies.set(TokenKey, token) +} + +export function removeToken() { + return Cookies.remove(TokenKey) +} diff --git a/src/utils/dealtree.js b/src/utils/dealtree.js new file mode 100644 index 0000000000000000000000000000000000000000..55b0874251b9be0df475143c577241b231fed9ff --- /dev/null +++ b/src/utils/dealtree.js @@ -0,0 +1,69 @@ +export default { + /** + * 将list装换成tree + * @param {Object} myId 数据主键id + * @param {Object} pId 数据关联的父级id + * @param {Object} list list集合 + */ + listToTree(myId, pId, list) { + function exists(list, parentId) { + for (var i = 0; i < list.length; i++) { + if (list[i][myId] == parentId) return true; + } + return false; + } + + var nodes = []; + // get the top level nodes + for (var i = 0; i < list.length; i++) { + var row = list[i]; + if (!exists(list, row[pId])) { + nodes.push(row); + } + } + + var toDo = []; + for (var i = 0; i < nodes.length; i++) { + toDo.push(nodes[i]); + } + while (toDo.length) { + var node = toDo.shift(); // the parent node + // get the children nodes + for (var i = 0; i < list.length; i++) { + var row = list[i]; + if (row[pId] == node[myId]) { + //var child = {id:row.id,text:row.name}; + if (node.children) { + node.children.push(row); + } else { + node.children = [row]; + } + toDo.push(row); + } + } + } + return nodes; + }, + + /** + * 树转list + */ + treeToList(treeList) { + let list = []; + function handleTreeList(treeList, list) { + if (!treeList || !treeList.length) { + return; + } + for (let i = 0; i < treeList.length; i++) { + let currentRow = treeList[i]; + let newRow = JSON.parse(JSON.stringify(currentRow)); + newRow.children = undefined; + newRow.isfather = currentRow.children.length > 0; + list.push(newRow); + handleTreeList(currentRow.children, list); + } + } + handleTreeList(treeList, list); + return list; + }, +}; diff --git a/src/utils/equalsObj.js b/src/utils/equalsObj.js new file mode 100644 index 0000000000000000000000000000000000000000..2250af6bdf45ff7d8177d842c9065eb4eca90ac7 --- /dev/null +++ b/src/utils/equalsObj.js @@ -0,0 +1,54 @@ +/** + * 判断此对象是否是Object类型 + * @param {Object} obj + */ +function isObject(obj) { + return Object.prototype.toString.call(obj) === '[object Object]'; +}; +/** + * 判断此类型是否是Array类型 + * @param {Array} arr + */ +function isArray(arr) { + return Object.prototype.toString.call(arr) === '[object Array]'; +}; +/** + * 深度比较两个对象是否相同 + * @param {Object} oldData + * @param {Object} newData + */ +function equalsObj(oldData, newData) { + // 类型为基本类型时,如果相同,则返回true + if (oldData === newData) return true; + if (isObject(oldData) && isObject(newData) && Object.keys(oldData).length === Object.keys(newData).length) { + // 类型为对象并且元素个数相同 + + // 遍历所有对象中所有属性,判断元素是否相同 + for (const key in oldData) { + if (oldData.hasOwnProperty(key)) { + if (!equalsObj(oldData[key], newData[key])) + // 对象中具有不相同属性 返回false + return false; + } + } + } else if (isArray(oldData) && isArray(oldData) && oldData.length === newData.length) { + // 类型为数组并且数组长度相同 + + for (let i = 0, length = oldData.length; i < length; i++) { + if (!equalsObj(oldData[i], newData[i])) + // 如果数组元素中具有不相同元素,返回false + return false; + } + } else { + // 其它类型,均返回false + return false; + } + + // 走到这里,说明数组或者对象中所有元素都相同,返回true + return true; +}; +export default { + equalsArrObj(oldData, newData) { + return equalsObj(oldData, newData) + } +} diff --git a/src/utils/eventBus.js b/src/utils/eventBus.js new file mode 100644 index 0000000000000000000000000000000000000000..f9ef51b6aa25960d30926264b2fc366d7c88bb58 --- /dev/null +++ b/src/utils/eventBus.js @@ -0,0 +1,2 @@ +import Vue from 'vue' +export default new Vue() \ No newline at end of file diff --git a/src/utils/get-page-title.js b/src/utils/get-page-title.js new file mode 100644 index 0000000000000000000000000000000000000000..115a1c107cb59f8cceb441161e819acb023636cc --- /dev/null +++ b/src/utils/get-page-title.js @@ -0,0 +1,10 @@ +import defaultSettings from '@/settings' + +const title = defaultSettings.title || '' + +export default function getPageTitle(pageTitle) { + if (pageTitle) { + return `${title}:${pageTitle}` + } + return `${title}` +} diff --git a/src/utils/index.js b/src/utils/index.js new file mode 100644 index 0000000000000000000000000000000000000000..f826ec29e1cb6ac5d129466035a0968da5fcbc0c --- /dev/null +++ b/src/utils/index.js @@ -0,0 +1,47 @@ +/** + * @param {string} url + * @returns {Object} + */ +export function param2Obj(url) { + const search = decodeURIComponent(url.split("?")[1]).replace(/\+/g, " "); + if (!search) { + return {}; + } + const obj = {}; + const searchArr = search.split("&"); + searchArr.forEach((v) => { + const index = v.indexOf("="); + if (index !== -1) { + const name = v.substring(0, index); + const val = v.substring(index + 1, v.length); + obj[name] = val; + } + }); + return obj; +} + +/** + * 传入中文的时候直接生成编码过的url + * @param {sting} url + * @param {sting} key + * @param {sting} value + * @returns + */ +export function getUrlWithParam(url, key, value) { + // 使用URL对象解析URL + let urlObj = new URL(url); + + // 获取搜索参数对象 + let params = urlObj.searchParams; + + // 遍历已有参数,先解码再编码 + params.forEach((value, key) => { + params.set(key, encodeURIComponent(decodeURIComponent(value))); + }); + + // 设置新的参数 + params.set(key, encodeURIComponent(value)); + + // 拼接成新的URL + return urlObj.origin + urlObj.pathname + "?" + params; +} diff --git a/src/utils/loading.js b/src/utils/loading.js new file mode 100644 index 0000000000000000000000000000000000000000..cf107b97565a099ffae783a29b7e6b5b31e25e96 --- /dev/null +++ b/src/utils/loading.js @@ -0,0 +1,30 @@ +import Vue from 'vue' // loading框设置局部刷新,且所有请求完成后关闭loading框 +import i18n from '@/assets/common/lang/index' // 国际化 +let loading +function startLoading(targetdq) { + let text = i18n.t("common.loadingText") + loading = Vue.prototype.$loading({ + lock: true, + text: text, + background: 'rgba(0,0,0,0.2)', + spinner: "el-icon-loading", + target: document.querySelector(targetdq) // 设置加载动画区域 + }) +} +function endLoading() { + if (loading) { + loading.close() + } + +} +export function showFullScreenLoading(targetdq) { + endLoading() + startLoading(targetdq) +} +export function hideFullScreenLoading() { + endLoading() +} +export default { + showFullScreenLoading, + hideFullScreenLoading +} \ No newline at end of file diff --git a/src/utils/message.js b/src/utils/message.js new file mode 100644 index 0000000000000000000000000000000000000000..c3160795d5c63f516c0ed9ebc4d18a52a7a57695 --- /dev/null +++ b/src/utils/message.js @@ -0,0 +1,31 @@ +// message.js +import { Message } from 'element-ui' + +// 为了实现Class的私有属性 +const showMessage = Symbol('showMessage') +/** + * 重写ElementUI的Message + * single默认值true,因为项目需求,默认只弹出一个,可以根据实际需要设置 + */ +let messageInstance = null +class ReMessage { + success(options, single = true) { + this[showMessage]('success', options, single) + } + warning(options, single = true) { + this[showMessage]('warning', options, single) + } + info(options, single = true) { + this[showMessage]('info', options, single) + } + error(options, single = true) { + this[showMessage]('error', options, single) + } + [showMessage](type, options, single) { + if (messageInstance && single) { + messageInstance.close()// 先把原来的关闭 + } + messageInstance = Message[type](options)// 再创建新的消息 + } +} +export default new ReMessage() diff --git a/src/utils/request.js b/src/utils/request.js new file mode 100644 index 0000000000000000000000000000000000000000..e6e84fc27fea6b3a85f3a61f72712d189b183052 --- /dev/null +++ b/src/utils/request.js @@ -0,0 +1,87 @@ +import axios from 'axios' +import ReMessage from '@/utils/message' +import { MessageBox } from 'element-ui' +import store from '@/store' +import { getToken } from '@/utils/auth' + +// create an axios instance +const service = axios.create({ + baseURL: process.env.VUE_APP_BASE_API // url = base url + request url + // withCredentials: true, // send cookies when cross-domain requests + // timeout: 5000 +}) + +axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8' +// request interceptor +service.interceptors.request.use( + config => { + // config.headers['Content-Type'] = 'application/json;charset=UTF-8' + config.headers['KYLIN_LANGUAGE'] = localStorage.getItem("kcp-lang") || 'zh' + if (store.getters.token) { + config.headers['KYLIN_ACCESS_TOKEN'] = getToken() + } + return config + }, + error => { + return Promise.reject(error) + } +) + +// response interceptor +service.interceptors.response.use( + response => { + const res = response.data + if (res.code !== 200) { + // TODO 缺少其他状态,例如token过期,token不合法等 + // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired; + if (res.code === 401) { + // MessageBox.confirm('登录信息过期,请重新登录', '重新登录', { + // confirmButtonText: '确定', + // cancelButtonText: '取消', + // type: 'warning' + // }).then(() => { + // store.dispatch('user/resetToken').then(() => { + // location.reload() + // }) + // }) + + store.dispatch('user/resetToken').then(() => { + location.reload() + }) + + } else { + ReMessage.error({ + message: res.desc || '网络延迟,请稍后重试!', + type: 'error', + duration: 5 * 1000, + showClose: true + }) + } + return Promise.reject(res.desc) + } else { + //后端有时直接返回bol + if (isBoolean(res.data)) { + return res.data + }else { + return res.data || res.desc + } + + } + }, + error => { + console.error('err' + error) // for debug + ReMessage.error({ + message: error.message, + type: 'error', + duration: 5 * 1000, + showClose: true + }) + return Promise.reject(error) + } +) + +function isBoolean(data) { + return typeof data === 'boolean'; +} + +export default service diff --git a/src/utils/transformat.js b/src/utils/transformat.js new file mode 100644 index 0000000000000000000000000000000000000000..f0b9a5dda1cd09e4feb860bdb4b17083dd808619 --- /dev/null +++ b/src/utils/transformat.js @@ -0,0 +1,94 @@ +/** + * 公共数据转换方法. + */ + +export default { + // 时间戳转换 + transTime(timestamp) { + if (timestamp) { + timestamp = Number(timestamp) + const time = new Date(timestamp) + return time.getFullYear() + "/" + (time.getMonth() + 1) + "/" + time.getDate() + "/ " + time.getHours() + ":" + time.getMinutes() + ":" + time.getSeconds() + "." + time.getMilliseconds(); + } + return 0 + }, + + // 文件大小转换 + transFileSize(limit) { + let size = ""; + if (limit < 0.1 * 1024) { //如果小于0.1KB转化成B + size = limit.toFixed(2) + "B"; + } else if (limit < 0.1 * 1024 * 1024) {//如果小于0.1MB转化成KB + size = (limit / 1024).toFixed(2) + "KB"; + } else if (limit < 0.1 * 1024 * 1024 * 1024) { //如果小于0.1GB转化成MB + size = (limit / (1024 * 1024)).toFixed(2) + "MB"; + } else { //其他转化成GB + size = (limit / (1024 * 1024 * 1024)).toFixed(2) + "GB"; + } + + let sizestr = size + ""; + let len = sizestr.indexOf("\."); + let dec = sizestr.substr(len + 1, 2); + if (dec == "00") {//当小数点后为00时 去掉小数部分 + return sizestr.substring(0, len) + sizestr.substr(len + 3, 2); + } + return sizestr; + }, + getPercent(num, total) { + /// + /// 求百分比 + /// + /// 当前数 + /// 总数 + num = parseFloat(num); + total = parseFloat(total); + if (isNaN(num) || isNaN(total)) { + return 0; + } + return total <= 0 ? 0 : Math.round((num / total) * 10000) / 100.00; + }, + + formatterData(val) { + var timediff = val / 1000 + // 计算天数 + var days = Math.floor(timediff / 86400) + // 计算小时数 + var remain = timediff % 86400 + var hours = Math.floor(remain / 3600) + // 计算分钟数 + remain = remain % 3600 + var mins = Math.floor(remain / 60) + // 计算秒数 + remain = remain % 60 + var seconds = Math.ceil(remain) + var d = '' + var h = '' + var m = '' + var s = '' + if (days > 0) { d = days + '天' } + if (hours > 0) { h = hours + '小时' } + if (mins > 0) { m = mins + '分钟' } + if (seconds > 0) { s = seconds + '秒' } + return d || h || m || s ? d + h + m + s : '' + }, + // 保留几位小数 + keepTwoDecimal(num, dec) { + var strNum = num + '';/*把要转换的小数转换成字符串*/ + var index = strNum.indexOf("."); /*获取小数点的位置*/ + if (index < 0) { + return num;/*如果没有小数点,那么无需四舍五入,返回这个整数*/ + } + var n = strNum.length - index - 1;/*获取当前浮点数,小数点后的位数*/ + if (dec < n) { + /*把小数点向后移动要保留的位数,把需要保留的小数部分变成整数部分,只留下不需要保留的部分为小数*/ + var e = Math.pow(10, dec); + num = num * e; + /*进行四舍五入,只保留整数部分*/ + num = Math.round(num); + /*再把原来小数部分还原为小数*/ + return num / e; + } else { + return num;/*如果当前小数点后的位数等于或小于要保留的位数,那么无需处理,直接返回*/ + } + } +} \ No newline at end of file diff --git a/src/utils/validate.js b/src/utils/validate.js new file mode 100644 index 0000000000000000000000000000000000000000..6096efd4ebb12f0674b066ca9dfaf0b39bb85abf --- /dev/null +++ b/src/utils/validate.js @@ -0,0 +1,204 @@ +/** + * 公共校验方法. + */ + +const rules = { + external: /^(https?:|mailto:|tel:)/, // 是否是外部链接 + number: /^[0-9]*$/, // 任意数字 + int: /^-?[1-9]\d*$/, // 整数 + int_p: /^[1-9]\d*$/, // 正整数 + int_n: /^-[1-9]\d*$/, // 负整数 + int_p0: /^[1-9]\d*|0$/, // 非负整数(正整数 + 0) + int_n0: /^-[1-9]\d*|0$/, // 非正整数(负整数 + 0) + folat: /^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$/, // 匹配浮点数 + folat_p: /^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$/, // 匹配正浮点数 + folat_n: /^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$/, // 匹配负浮点数 + folat_p0: /^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$/, // 匹配非负浮点数(正浮点数 + 0) + folat_n0: /^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$/, // 匹配非正浮点数(负浮点数 + 0) + character1: /^[A-Za-z0-9_\-]+$/, // 匹配字母、数字、下划线、中划线、点、@符号 + password_en_num: /(?!^\d+$)(?!^[a-zA-Z]+$)[0-9a-zA-Z]{4,23}/, // 英文字母、数字的组合 + en_num: /^[a-z0-9]+$/i, // 英文字母、数字的组合 + char_zh_en_num: /^[a-zA-Z0-9\u4e00-\u9fa5]+$/, // 中文、英文字母、数字的组合 + char_num: /^[a-zA-Z0-9_\u4e00-\u9fa5]+$/, // 中文、英文字母、数字和下划线的组合 + special_char: /[`~!@#$%^&*\+=<>?:"{}()|\\[\]·~@#¥%……&*()——\+={}|《》“”【】‘’]/, //特殊字符 + ip: /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/ +} + +/** + * @param {string} str + * @returns {Boolean} + */ +const char_en_num = (str) => { + const testRule = rules['char_en_num'] + return testRule.test(str) +} + +/** + * @param {string} str + * @returns {Boolean} + */ +const en_num = (str) => { + const testRule = rules['en_num'] + return testRule.test(str) +} + +/** + * @param {string} str + * @returns {Boolean} + */ +const char_num = (str) => { + const testRule = rules['character1'] + return testRule.test(str) +} +/** + * @param {string} str + * @returns {Boolean} + */ +const char_zh_en_num = (str) => { + const testRule = rules['char_zh_en_num'] + return testRule.test(str) +} + +/** + * @param {string} str + * @returns {Boolean} + */ +const special_char = (str) => { + const testRule = rules['special_char'] + return testRule.test(str) +} + +/** + * @param {string} path + * @returns {Boolean} + * 是否是外部链接 + */ +export function isExternal(path) { + const testRule = rules['external'] + return testRule.test(path) +} +/** + * @param {string} ip + * @returns {Boolean} + * 是否为IP + */ +export function isIp(ip) { + const testRule = rules['ip'] + return testRule.test(ip) +} +// 正则规则 +export function validRule() { + return { + num_letter_: /^[a-zA-Z0-9_]+$/, // 字母、数字、下划线 + num_letter_midline: /^[A-Za-z0-9\-]+$/, // 匹配字母、数字、中划线 + num: /(^[0-9]\d*$)/, // 数字 + character1: /^[A-Za-z0-9_\-]+$/, // 匹配字母、数字、下划线、中划线、点、@符号 + character2: /^[A-Za-z0-9_\u4E00-\u9FA5A\-.。;;,,'"]+$/, // 匹配字母、数字、下划线、中文、中划线、点、以及“。;;,,” + character3: /^[a-zA-Z0-9_\u4E00-\u9FA5A\-]+$/, // 字母、数字、下划线、中划线、中文 + ip: /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/ + } +} +// 校验纯数字类型 +export function validNum(value) { + const reg = validRule() + return reg.num.test(value) +} + +export default { + // 校验ip + validateIp(rule, value, callback) { + if (!value) { + callback() + return + } + if (!isIp(value)) { + callback(new Error(rule.message)) + } else { + callback() + } + }, + // 校验英文、数字 + validateEnNum(rule, value, callback) { + if (!en_num(value)) { + callback(new Error(rule.message)) + } else { + callback() + } + }, + // 校验中文、英文字母、数字和下划线 + validateCharNum(rule, value, callback) { + if (String(value).length && !char_num(value)) { + callback(new Error(rule.message)) + } else { + callback() + } + }, + // 校验中文、英文字母、数字 + validateCharZhEnNum(rule, value, callback) { + if (!value) { + callback() + return + } + if (!char_zh_en_num(value)) { + callback(new Error(rule.message)) + } else { + callback() + } + }, + //校验特殊字符 + special_char(rule, value, callback) { + if (special_char(value)) { + callback(new Error(rule.message)) + } else { + callback() + } + }, + // 校验ip + isValidIP(ip) { + var reg = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/ + return reg.test(ip); + }, + + // 端口号 + isPort(port) { + if (/^[1-9]\d*|0$/.test(port) && port * 1 >= 0 && port * 1 <= 65535) { + return true + } + return false; + }, + // 校验纯数字类型 + validNum(value) { + const reg = validRule() + return reg.num.test(value) + }, + // 校验cpu 1或者偶数 + validateCpuVal(rule, value, callback) { + if (!value) { + callback() + return + } + if (value !== 1 || value % 2 !== 0) { + callback(new Error(rule.message)) + } else { + callback() + } + }, + // 校验ip + validIP(rule, value, callback) { + var reg = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/ + if (reg.test(value)) { + callback() + } else { + callback(new Error(rule.message)) + } + }, + + // 端口号 + validPort(rule, value, callback) { + if (/^[1-9]\d*|0$/.test(value) && value * 1 >= 0 && value * 1 <= 65535) { + callback() + } else { + callback(new Error(rule.message)) + } + }, +} diff --git a/src/views/404.vue b/src/views/404.vue new file mode 100644 index 0000000000000000000000000000000000000000..287cc2fe0175c09f159638dbb7e743c11cdf665f --- /dev/null +++ b/src/views/404.vue @@ -0,0 +1,262 @@ + + + + + diff --git a/src/views/components/bindVdc/bindVdcBox.vue b/src/views/components/bindVdc/bindVdcBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..d35952c6205aa8a50f02f2a1b7c333f0dcd99ae0 --- /dev/null +++ b/src/views/components/bindVdc/bindVdcBox.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/components/bindVdc/bindVdcModal.vue b/src/views/components/bindVdc/bindVdcModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..8df28772bf40f3e720ef7e32fe827d6e2d25f9ad --- /dev/null +++ b/src/views/components/bindVdc/bindVdcModal.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/views/components/bindVirtualFirewall/bindVirtualFirewallBox.vue b/src/views/components/bindVirtualFirewall/bindVirtualFirewallBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..504321d8603291cddcbd7738b41d3abcbe942b70 --- /dev/null +++ b/src/views/components/bindVirtualFirewall/bindVirtualFirewallBox.vue @@ -0,0 +1,150 @@ + + + + diff --git a/src/views/components/bindVirtualFirewall/bindVirtualFirewallModal.vue b/src/views/components/bindVirtualFirewall/bindVirtualFirewallModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..ef49d07e3c29c7afdb21622fa5dfb7684e089456 --- /dev/null +++ b/src/views/components/bindVirtualFirewall/bindVirtualFirewallModal.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/src/views/components/setVdcNetWork/createEditNetworkBox.vue b/src/views/components/setVdcNetWork/createEditNetworkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..ce64f0d7be4d6fbe2f28b15f5b375de23c2e5848 --- /dev/null +++ b/src/views/components/setVdcNetWork/createEditNetworkBox.vue @@ -0,0 +1,290 @@ + + + + + diff --git a/src/views/components/setVdcNetWork/selectVdcNetWorkBox.vue b/src/views/components/setVdcNetWork/selectVdcNetWorkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..867704ef68f486c29797698baeca0106d85dfe5a --- /dev/null +++ b/src/views/components/setVdcNetWork/selectVdcNetWorkBox.vue @@ -0,0 +1,193 @@ + + + + diff --git a/src/views/components/setVdcNetWork/setVdcNetWorkBox.vue b/src/views/components/setVdcNetWork/setVdcNetWorkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..d46cb0d75c289bd3dbb849be46bdade8230c1289 --- /dev/null +++ b/src/views/components/setVdcNetWork/setVdcNetWorkBox.vue @@ -0,0 +1,725 @@ + + + + diff --git a/src/views/components/setVdcNetWork/setVdcNetWorkModal.vue b/src/views/components/setVdcNetWork/setVdcNetWorkModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..979b37351f9b0c258f2825e813be17f562339a24 --- /dev/null +++ b/src/views/components/setVdcNetWork/setVdcNetWorkModal.vue @@ -0,0 +1,126 @@ + + + + + diff --git a/src/views/components/vdcBindVdc/bindVdcBox.vue b/src/views/components/vdcBindVdc/bindVdcBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..0aee6a6ed5759616f57d234a61f501794b211384 --- /dev/null +++ b/src/views/components/vdcBindVdc/bindVdcBox.vue @@ -0,0 +1,173 @@ + + + + diff --git a/src/views/components/vdcBindVdc/bindVdcModal.vue b/src/views/components/vdcBindVdc/bindVdcModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..832250ab1a34765b8ebedbe6ec553c2b862acea3 --- /dev/null +++ b/src/views/components/vdcBindVdc/bindVdcModal.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/src/views/components/vdcResourceAss/firstVdcresource.vue b/src/views/components/vdcResourceAss/firstVdcresource.vue new file mode 100644 index 0000000000000000000000000000000000000000..505db8119102cf97b823cb149b89211693e22163 --- /dev/null +++ b/src/views/components/vdcResourceAss/firstVdcresource.vue @@ -0,0 +1,427 @@ + + + + diff --git a/src/views/components/vdcResourceAss/vdcresource.vue b/src/views/components/vdcResourceAss/vdcresource.vue new file mode 100644 index 0000000000000000000000000000000000000000..823454285ad1cb314fc7fd21887a24d2956c01d2 --- /dev/null +++ b/src/views/components/vdcResourceAss/vdcresource.vue @@ -0,0 +1,416 @@ + + + + diff --git a/src/views/externalCloud/components/main/actbtnPmsList.js b/src/views/externalCloud/components/main/actbtnPmsList.js new file mode 100644 index 0000000000000000000000000000000000000000..a5245d184ec321ca74e7210bd1d36b5e0ca2e543 --- /dev/null +++ b/src/views/externalCloud/components/main/actbtnPmsList.js @@ -0,0 +1,447 @@ + +const actbtnPms = { + // 开机按钮start + startstatusShowList: [ + 'OFFLINE', // '离线(OFFLINE)' + ], + startstatusunShowList: [ + 'OVERDUE', // '已过期(OVERDUE)', + 'AVAILABLE', // '在线(AVAILABLE)', + 'CONNECTED', // '已连接(CONNECTED)', + 'INSTALLING', // '安装(INSTALLING)', + 'SUSPEND', // '暂停(SUSPEND)', + 'UNKNOWN', // '其他(UNKNOWN)', + ], + + starttaskStatusShowList: [ + 'NEW', // '新建(NEW)', + 'NEWFAILED', // '新建失败(NEWFAILED)', + 'INSTALLFAILED', // '安装失败(INSTALLFAILED)', + ], + starttaskStatusunShowList: [ + 'INSTALLING', // '安装中(INSTALLING)', + 'CREATING', // '正在创建(CREATING)', + 'STARTING', // '正在开机(STARTING)', + 'SHUTDOWNING', // '正在关机(SHUTDOWNING)', + 'REBOOTING', // '正在重启(REBOOTING)', + 'SUSPENDING', // '正在暂停(SUSPENDING)', + 'RESUMING', // '正在唤醒(RESUMING)', + 'VOLUME_MIGRATING', // '正在存储迁移(VOLUME_MIGRATING)', + 'HOST_MIGRATING', // '正在主机迁移(HOST_MIGRATING)', + 'BACKUP_RUNNING', // '正在备份(BACKUP_RUNNING)', + 'BACKUP_RECOVERING', // '正在备份恢复(BACKUP_RECOVERING)', + 'SNAPSHOT_RUNNING', // '正在快照(SNAPSHOT_RUNNING)', + 'SNAPSHOT_RECOVERING', // '正在快照恢复(SNAPSHOT_RECOVERING)', + 'IMPORTING', // '正在导入(IMPORTING)', + 'EXPORTING', // '正在导出(EXPORTING)', + 'CLONING', // '正在克隆(CLONING)', + 'DISK_COPYING', // '正在磁盘复制(DISK_COPYING)', + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 控制台按钮 vnc + vncstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + ], + vncstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + ], + + vnctaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + + ], + vnctaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'STARTING', // 正在开机(STARTING) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING',// 正在创建(CREATING) + 'SHUTDOWNING',// 正在关机(SHUTDOWNING) + 'VOLUME_MIGRATING',// 正在存储迁移(VOLUME_MIGRATING) + 'BACKUP_RUNNING',// 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING',// 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING',// 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING',// 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING',// 正在导入(IMPORTING) + 'EXPORTING',// 正在导出(EXPORTING) + 'CLONING',// 正在克隆(CLONING) + 'DISK_COPYING',// 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + + // 关机按钮 shutdown + shutdownstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + + ], + shutdownstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + shutdowntaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + + ], + shutdowntaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + + ], + + // 强制关机 abort + abortstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + + ], + abortstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + ], + + aborttaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + ], + aborttaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + // 重启 reboot + rebootstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + ], + rebootstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + ], + reboottaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + ], + reboottaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 强制重启 forcereboot + forcerebootstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + + ], + forcerebootstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + forcereboottaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + + ], + forcereboottaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + + ], + + + // 快照按钮 snapshot + snapshotstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + snapshotstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + ], + snapshottaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'INSTALLING', // 安装中(INSTALLING) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + + ], + snapshottaskStatusunShowList: [ + 'CREATING', // 正在创建(CREATING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + + ], + + // 变更规格按钮 edit + editstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + editstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + ], + edittaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'INSTALLING', // 安装中(INSTALLING) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + + ], + edittaskStatusunShowList: [ + 'NEWFAILED', // 新建失败(NEWFAILED) + 'CREATING', // 正在创建(CREATING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 申请延期按钮 applyDeferred + applyDeferredstatusShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + applyDeferredstatusunShowList: [ + ], + applyDeferredtaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'INSTALLING', // 安装中(INSTALLING) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'NEWFAILED', // 新建失败(NEWFAILED) + + ], + applyDeferredtaskStatusunShowList: [ + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + + // 删除按钮 delete + deletestatusShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + + ], + deletestatusunShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'UNKNOWN', // 其他(UNKNOWN) + ], + deletetaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + + ], + deletetaskStatusunShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'CREATING', // 正在创建(CREATING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 制作镜像按钮 makeImage + makeImagestatusShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + ], + makeImagestatusunShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'UNKNOWN', // 其他(UNKNOWN) + ], + deletetaskStatusShowList: [ + + ], + deletetaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'INSTALLING', // 安装中(INSTALLING) + 'CREATING', // 正在创建(CREATING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + +} +export default actbtnPms \ No newline at end of file diff --git a/src/views/externalCloud/components/main/btn-more.vue b/src/views/externalCloud/components/main/btn-more.vue new file mode 100644 index 0000000000000000000000000000000000000000..26efd6ab2562b478da301b4a7c9afc2cc32699c6 --- /dev/null +++ b/src/views/externalCloud/components/main/btn-more.vue @@ -0,0 +1,139 @@ + + + diff --git a/src/views/externalCloud/components/main/header-bar.vue b/src/views/externalCloud/components/main/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..d600ae47e368fb0a1e6d91e291e5e65623806f7d --- /dev/null +++ b/src/views/externalCloud/components/main/header-bar.vue @@ -0,0 +1,437 @@ + + + + + diff --git a/src/views/externalCloud/components/main/index.js b/src/views/externalCloud/components/main/index.js new file mode 100644 index 0000000000000000000000000000000000000000..89a94ebe00aea6286e68e1c9377412ceb269a392 --- /dev/null +++ b/src/views/externalCloud/components/main/index.js @@ -0,0 +1,2 @@ +export { default as headerBar } from './header-bar' +export { default as btnMore } from './btn-more' diff --git a/src/views/externalCloud/components/statuscell/index.vue b/src/views/externalCloud/components/statuscell/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..fe7ed45e5ca79fbd2dd2cce09a8a7d6126cc2937 --- /dev/null +++ b/src/views/externalCloud/components/statuscell/index.vue @@ -0,0 +1,143 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/detail-disk.vue b/src/views/externalCloud/vcenter/cloudServerDetail/detail-disk.vue new file mode 100644 index 0000000000000000000000000000000000000000..b7c7c6aea1c9fb707707d993411b18c33a40de64 --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/detail-disk.vue @@ -0,0 +1,109 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/detail-log.vue b/src/views/externalCloud/vcenter/cloudServerDetail/detail-log.vue new file mode 100644 index 0000000000000000000000000000000000000000..c255a234afca69dbc9aa828890f9b340b44f2ba3 --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/detail-log.vue @@ -0,0 +1,154 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/detail-monitor.vue b/src/views/externalCloud/vcenter/cloudServerDetail/detail-monitor.vue new file mode 100644 index 0000000000000000000000000000000000000000..2539b0d03cac6d0070b2d68722bb4c9825c8f14e --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/detail-monitor.vue @@ -0,0 +1,360 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/detail-network.vue b/src/views/externalCloud/vcenter/cloudServerDetail/detail-network.vue new file mode 100644 index 0000000000000000000000000000000000000000..50cd860033b8c61ee507fa01847bd7c54737ca9e --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/detail-network.vue @@ -0,0 +1,89 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/detail-summary.vue b/src/views/externalCloud/vcenter/cloudServerDetail/detail-summary.vue new file mode 100644 index 0000000000000000000000000000000000000000..31c74edef104313978770fbbfd2971e8477d1872 --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/detail-summary.vue @@ -0,0 +1,365 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/header-bar.vue b/src/views/externalCloud/vcenter/cloudServerDetail/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..3efcbf4300b4f62035fece629ac341931c337edb --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/header-bar.vue @@ -0,0 +1,160 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/index.js b/src/views/externalCloud/vcenter/cloudServerDetail/index.js new file mode 100644 index 0000000000000000000000000000000000000000..73b7ea376d412792c9204ce9eebe4081165168ec --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/index.js @@ -0,0 +1,5 @@ +export { default as detailSummary } from './detail-summary' +export { default as detailNetwork } from './detail-network.vue' +export { default as detailDisk } from './detail-disk.vue' +export { default as detailMonitor } from './detail-monitor' +export { default as detailLog } from './detail-log' diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/index.vue b/src/views/externalCloud/vcenter/cloudServerDetail/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..43f20273c2acc7074e3475e68383cb9031011cd6 --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/index.vue @@ -0,0 +1,300 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/serverI18nMap.js b/src/views/externalCloud/vcenter/cloudServerDetail/serverI18nMap.js new file mode 100644 index 0000000000000000000000000000000000000000..c4e461483496f99c885e61a85f1ab2f0e44695ce --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/serverI18nMap.js @@ -0,0 +1,149 @@ + +let serveri18nMap = { + serverVirtaulTaskGrid_type: 'ksvd.task.head.type', + serverVirtaulTaskGrid_createTime: 'ksvd.task.head.create_time', + serverVirtaulTaskGrid_startTime: 'ksvd.task.head.start_time', + serverVirtaulTaskGrid_finishTime: 'ksvd.task.head.finish_time', + serverVirtaulTaskGrid_action: 'ksvd.task.head.action', + serverVirtaulTaskGrid_objName: 'ksvd.task.head.objName', + serverVirtaulTaskGrid_operUser: 'ksvd.task.head.operUser', + serverVirtaulTaskGrid_status: 'ksvd.task.head.status', + serverVirtaulTaskGrid_reason: 'ksvd.task.head.reason', + serverVirtaulTaskGrid_detail: 'ksvd.task.head.detail', + showAllTask: 'serverVirutal.deskTop.showAllTask', + allStatus: 'serverVirutal.deskTop.allStatus', + doingStatus: 'serverVirutal.deskTop.doingStatus', + failStatus: 'serverVirutal.deskTop.failStatus', + successStatus: 'serverVirutal.deskTop.successStatus', + completeStatus: 'serverVirutal.deskTop.completeStatus', + taskProgress: 'serverVirutal.deskTop.taskProgress', + + servervirtualEdit: 'ksvd.task.action.servervirtual_servervirtauledit', + serverVirtaulHostMigrate: 'ksvd.task.action.servervirtual_servervirtaulhostmigrate', + serverVirtaulHostStorageMigrate: 'ksvd.task.action.servervirtual_servervirtaulhoststoragemigrate', + servervirtualVolMigrate: 'ksvd.task.action.servervirtual_servervirtualmigrate', + servervirtualForceReboot: 'serverVirtualizationService.ForceReboot', + servervirtualReboot: 'serverVirtualizationService.Reboot', + servervirtualPowerOn: 'serverVirtualizationService.PowerOn', + servervirtualShutDown: 'serverVirtualizationService.ShutDown', + servervirtualResume: 'serverVirtualizationService.Resume', + servervirtualPause: 'serverVirtualizationService.Suspend', + servervirtualForceShutDown: 'serverVirtualizationService.ForceShutDown', + servervirtualDelete: 'serverVirtualizationService.HardDelete', + servervirtualDeleteSoft: 'serverVirtualizationService.DeleteSoft', + servervirtualClone: 'serverVirtualizationService.fullClone', + servervirtualCloneLink: 'serverVirtualizationService.linkClone', + servervirtualCreate: 'serverVirtualizationService.createVirtualService', + servervirtualCreateByTemplate: 'serverVirtualizationService.createVirtualServiceByTemplate', + servervirtualExport: 'serverVirtualizationService.setVmExport', + servervirtualImport: 'serverVirtualizationService.importTemplateImage', + servervirtualCreateServerSnap: 'server.vm.snapshot.create.memSnapshot', + servervirtualCreateNoMemServerSnap: 'server.vm.snapshot.create.noMemSnapshot', + servervirtualSnapshotDelete: 'ksvd.task.action.servervirtual_servervirtualdeletesnapshot', + servervirtualSnapshotApply: 'ksvd.task.action.servervirtual_servervirtualapplysnapshot', + servervirtualBatchApply: 'ksvd.task.action.servervirtual_serverbatchvirtualapplysnapshot', + servervirtualBatchCreateSnap: 'ksvd.task.action.servervirtual_serverbatchvirtualcreatesnapshot', + servervirtualCreateBackUp: 'ksvd.task.action.servervirtual_servervirtaulbackup', + servervirtualRecoverBackUp: 'ksvd.task.action.servervirtual_servervirtaulrecoverbackup', + servervirtualDeleteBackUp: 'ksvd.task.action.servervirtual_servervirtauldeletebackup', + servervirtualDiskCopy: 'ksvd.task.action.servervirtual_servervirtauldiskcopy', + + aliasName: 'serverVirtualizationService.edit.vmName', + description: 'serverVirtualizationService.Description', + selectCluster: 'serverVirtualizationService.Cluster', + vcpuSocket: 'serverVirtualizationService.edit.vcpuSocket', + vcpuCores: 'serverVirtualizationService.edit.vcpuCores', + cpuMode: 'serverVirtualizationService.edit.cpuMode', + schedulingPriority: 'serverVirtualizationService.cpu.schedulingPriority', + cpuLimit: 'serverVirtualizationService.cpu.limit', + + numaConfig: 'serverVirtualizationService.edit.numaConfig', + memory: 'serverVirtualizationService.edit.memory', + memoryHugeConfig: 'serverVirtualizationService.edit.memoryHugeConfig', + memoryBubbleConfig: 'serverVirtualizationService.memory.recovery', + + addDisk: 'serverVirtualizationService.edit.addDisk', + delDisk: 'serverVirtualizationService.edit.delDisk', + diskCapacity: 'serverVirtualizationService.Disk', + targetBus: 'serverVirtualizationService.DiskType', + cacheType: 'serverVirtualizationService.edit.cacheMode', + provisionType: 'serverVirtualizationService.edit.provisionType', + readIOLimit: 'serverVirtualizationService.edit.disk.ioRange', + writeIOLimit: 'serverVirtualizationService.edit.disk.ioRange', + readIOPSLimit: 'serverVirtualizationService.edit.disk.iopsRange', + writeIOPSLimit: 'serverVirtualizationService.edit.disk.iopsRange', + + addInterface: 'serverVirtualizationService.edit.addInterface', + delInterface: 'serverVirtualizationService.edit.delInterface', + interfaceType: 'serverVirtualizationService.InterfaceType', + modeltype: 'serverVirtualizationService.edit.NetworkCardType', + poolName: 'serverVirtualizationService.edit.macAddressPool', + virtualSwitch: 'serverVirtualizationService.edit.virtualSwitch', + portGroup: 'serverVirtualizationService.edit.portGroup', + ipAddress: 'serverVirtualizationService.edit.ipAddress', + mac: 'serverVirtualizationService.edit.macAddress', + queueCount: 'serverVirtualizationService.queueCount', + mtuCount: 'serverVirtualizationService.mtuCount', + hotDrawing: 'serverVirtualizationService.hotDrawing', + + addIso: 'serverVirtualizationService.edit.addIso', + delIso: 'serverVirtualizationService.edit.delIso', + sourceFile: 'serverVirtualizationService.edit.imageFile', + + editDisk: 'serverVirtualizationService.edit.editDisk', + editInterface: 'serverVirtualizationService.edit.editInterface', + editIso: 'serverVirtualizationService.edit.editIso', + editUsb: 'serverVirtualizationService.edit.editUsb', + + graphicsCard: 'serverVirtualizationService.edit.graphicsCardType', + mouseType: 'serverVirtualizationService.edit.mouseType', + biosSwitch: 'serverVirtualizationService.edit.bios', + biosFile: 'serverVirtualizationService.edit.biosFile', + biosWaitTime: 'serverVirtualizationService.edit.biosWaitTime', + + addUsb: 'serverVirtualizationService.edit.addUsb', + delUsb: 'serverVirtualizationService.edit.delUsb', + hostId: 'serverVirtualizationService.edit.usbHost', + usbId: 'serverVirtualizationService.edit.vmUsb', + + vmBluescreen: 'serverVirtualizationService.edit.vmHA', + uniqbVmHA: 'serverVirtualizationService.edit.hostHA', + enableCpuDynamic: 'serverVirutal.dynamicPolicy.enableCpuDynamic', + enableMemDynamic: 'serverVirutal.dynamicPolicy.enableMemDynamic', + aotuMigrateSwitch: 'serverVirtualizationService.drs.aotuMigrateSwitch', + followHostStartAuto: 'serverVirtualizationService.edit.followHostStartAuto', + bootOrder: 'serverVirtualizationService.edit.bootOrder', + remoteOpen: 'serverVirtualizationService.edit.remoteOpen', + remotePassword: 'serverVirtualizationService.edit.remotePassword', + wholeness: 'serverVirtualizationService.wholeness', + existedTime: 'serverVirtualizationService.edit.existedTime', + noTime: 'serverVirtualizationService.edit.noTime', + customizeTime: 'serverVirtualizationService.edit.customizeTime', + + //values + HOST_PASSTHROUGH: 'serverVirtualizationService.edit.host-passthrough', + HOST_MODEL: 'serverVirtualizationService.edit.host-model', + CUSTOM: 'serverVirtualizationService.edit.custom', + schedulingPriorityLow: 'serverVirtualizationService.cpu.schedulingPriorityLow', + schedulingPriorityMiddle: 'serverVirtualizationService.cpu.schedulingPriorityMiddle', + schedulingPriorityHigh: 'serverVirtualizationService.cpu.schedulingPriorityHigh', + + graphicsCardQXL: 'serverVirtualizationService.edit.graphicsCardQXL', + graphicsCardVGA: 'serverVirtualizationService.edit.graphicsCardVGA', + graphicsCardCirrus: 'serverVirtualizationService.edit.graphicsCardCirrus', + virtio: 'serverVirtualizationService.edit.virtio', + + legacy: 'server.virtual.edit.machine.bios.type.legacy', + uefi: 'server.virtual.edit.machine.bios.type.uefi', + userUpload: 'server.virtual.edit.machine.bios.type.userUpload', + + noConfig: 'serverVirtualizationService.noConfig', + reOpen: 'serverVirtualizationService.reOpen', + byOther: 'serverVirtualizationService.byOther', + + close: 'serverVirtualizationService.close', + open: 'serverVirtualizationService.open', +} +export { + serveri18nMap +} \ No newline at end of file diff --git a/src/views/externalCloud/vcenter/cloudServerDetail/taskDetailInfo.js b/src/views/externalCloud/vcenter/cloudServerDetail/taskDetailInfo.js new file mode 100644 index 0000000000000000000000000000000000000000..f5a735c7ee7d67fe1c3a82407497ee96724b1008 --- /dev/null +++ b/src/views/externalCloud/vcenter/cloudServerDetail/taskDetailInfo.js @@ -0,0 +1,960 @@ +/** + * Created by kylin-ksvd on 21-10-25. + */ + +/* + * Declare our namespace + */ +import $ from 'jquery' //在需要使用的页面中 +import { serveri18nMap } from './serverI18nMap' +import i18n from '@/assets/common/lang/index' // 国际化 + +let KSVD +if (typeof KSVD == 'undefined') { + KSVD = {}; +} + +KSVD.i18n = new Object(); + + + +KSVD.updatei18nMap = function (newi18nMap) { + for (let key in newi18nMap) { + let mapKey = newi18nMap[key] + // KSVD.i18n[key] = newi18nMap[key]; + KSVD.i18n[key] = i18n.t(mapKey) + } +} +KSVD.updatei18nMap(serveri18nMap) + + +if (typeof KSVD.taskDetailInfo == 'undefined') { + KSVD.taskDetailInfo = {}; +} + + + +//数据初始化 +KSVD.taskDetailInfo.init = function (vmName, detailInfo) { + //操作对应关系 + var operData = { + "servervirtualEdit": KSVD.i18n.servervirtualEdit, + "serverVirtaulHostMigrate": KSVD.i18n.serverVirtaulHostMigrate, + "servervirtualVolMigrate": KSVD.i18n.servervirtualVolMigrate, + "servervirtualForceReboot": KSVD.i18n.servervirtualForceReboot, + "servervirtualReboot": KSVD.i18n.servervirtualReboot, + "servervirtualPowerOn": KSVD.i18n.servervirtualPowerOn, + "servervirtualShutDown": KSVD.i18n.servervirtualShutDown, + "servervirtualResume": KSVD.i18n.servervirtualResume, + "servervirtualPause": KSVD.i18n.servervirtualPause, + "servervirtualForceShutDown": KSVD.i18n.servervirtualForceShutDown, + "servervirtualDelete": KSVD.i18n.servervirtualDelete, + "servervirtualDeleteSoft": KSVD.i18n.servervirtualDeleteSoft, + "servervirtualClone": KSVD.i18n.servervirtualClone, + "servervirtualCloneLink": KSVD.i18n.servervirtualCloneLink, + "servervirtualCreate": KSVD.i18n.servervirtualCreate, + "servervirtualCreateByTemplate": KSVD.i18n.servervirtualCreateByTemplate, + "servervirtualExport": KSVD.i18n.servervirtualExport, + "servervirtualImport": KSVD.i18n.servervirtualImport, + "servervirtualCreateServerSnap": KSVD.i18n.servervirtualCreateServerSnap, + "servervirtualCreateNoMemServerSnap": KSVD.i18n.servervirtualCreateNoMemServerSnap, + "servervirtualSnapshotDelete": KSVD.i18n.servervirtualSnapshotDelete, + "servervirtualSnapshotApply": KSVD.i18n.servervirtualSnapshotApply, + "servervirtualBatchApply": KSVD.i18n.servervirtualBatchApply, + "servervirtualBatchCreateSnap": KSVD.i18n.servervirtualBatchCreateSnap, + "servervirtualCreateBackUp": KSVD.i18n.servervirtualCreateBackUp, + "servervirtualDeleteBackUp": KSVD.i18n.servervirtualDeleteBackUp, + "servervirtualRecoverBackUp": KSVD.i18n.servervirtualRecoverBackUp, + "servervirtualDiskCopy": KSVD.i18n.servervirtualDiskCopy, + "serverVirtaulHostStorageMigrate": KSVD.i18n.serverVirtaulHostStorageMigrate, + + }; + //编辑设备的添加删除对应关系 + var deviceData = { + "addIso": KSVD.i18n.addIso, + "delIso": KSVD.i18n.delIso, + "addInterface": KSVD.i18n.addInterface, + "delInterface": KSVD.i18n.delInterface, + "delDisk": KSVD.i18n.delDisk, + "addDisk": KSVD.i18n.addDisk, + "addUsb": KSVD.i18n.addUsb, + "delUsb": KSVD.i18n.delUsb, + + "editDisk": KSVD.i18n.editDisk, + "editInterface": KSVD.i18n.editInterface, + "editIso": KSVD.i18n.editIso, + "editUsb": KSVD.i18n.editUsb, + }; + //操作与属性的对应关系 + var initData = { + "servervirtualEdit": { + "addIso": KSVD.i18n.addIso, + "delIso": KSVD.i18n.delIso, + "addInterface": KSVD.i18n.addInterface, + "delInterface": KSVD.i18n.delInterface, + "delDisk": KSVD.i18n.delDisk, + "addDisk": KSVD.i18n.addDisk, + "addUsb": KSVD.i18n.addUsb, + "delUsb": KSVD.i18n.delUsb, + + "aliasName": KSVD.i18n.aliasName, + "selectCluster": KSVD.i18n.aliasName, + "description": KSVD.i18n.description, + "selectCluster": KSVD.i18n.selectCluster, + + "vcpuSocket": KSVD.i18n.vcpuSocket, + "vcpuCores": KSVD.i18n.vcpuCores, + "cpuMode": { + name: KSVD.i18n.cpuMode, + values: { + 'CUSTOM': KSVD.i18n.CUSTOM, + 'HOST_MODEL': KSVD.i18n.HOST_MODEL, + 'HOST_PASSTHROUGH': KSVD.i18n.HOST_PASSTHROUGH, + } + }, + "schedulingPriority": { + name: KSVD.i18n.schedulingPriority, + values: { + '1': KSVD.i18n.schedulingPriorityLow, + '2': KSVD.i18n.schedulingPriorityMiddle, + '3': KSVD.i18n.schedulingPriorityHigh, + } + }, + + "cpuLimit": KSVD.i18n.cpuLimit, + "numaConfig": { + name: KSVD.i18n.numaConfig, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "memory": KSVD.i18n.memory, + "memoryHugeConfig": { + name: KSVD.i18n.memoryHugeConfig, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + + + "memoryBubbleConfig": { + name: KSVD.i18n.memoryBubbleConfig, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + //磁盘属性对应关系 + "diskCapacity": KSVD.i18n.diskCapacity, + "targetBus": KSVD.i18n.targetBus, + "cacheType": KSVD.i18n.cacheType, + "provisionType": KSVD.i18n.provisionType, + "readIOLimit": KSVD.i18n.readIOLimit, + "writeIOLimit": KSVD.i18n.writeIOLimit, + "readIOPSLimit": KSVD.i18n.readIOPSLimit, + "writeIOPSLimit": KSVD.i18n.writeIOPSLimit, + //网卡属性对应关系 + "interfaceType": KSVD.i18n.interfaceType, + "modeltype": KSVD.i18n.modeltype, + "poolName": KSVD.i18n.poolName, + "virtualSwitch": KSVD.i18n.virtualSwitch, + "portGroup": KSVD.i18n.portGroup, + "ipAddress": KSVD.i18n.ipAddress, + "mac": KSVD.i18n.mac, + "queueCount": KSVD.i18n.queueCount, + "mtuCount": KSVD.i18n.mtuCount, + "hotDrawing": { + name: KSVD.i18n.hotDrawing, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + //光驱属性对应关系 + "sourceFile": KSVD.i18n.sourceFile, + //其他设备属性对应关系 + "graphicsCard": { + name: KSVD.i18n.graphicsCard, + values: { + 'qxl': KSVD.i18n.graphicsCardQXL, + 'vga': KSVD.i18n.graphicsCardVGA, + 'cirrus': KSVD.i18n.graphicsCardCirrus, + 'virtio': KSVD.i18n.virtio, + } + }, + "mouseType": KSVD.i18n.mouseType, + "biosSwitch": { + name: KSVD.i18n.biosSwitch, + values: { + '3': KSVD.i18n.legacy, + '2': KSVD.i18n.uefi, + '1': KSVD.i18n.userUpload, + } + }, + "biosFile": KSVD.i18n.biosFile, + "biosWaitTime": KSVD.i18n.biosWaitTime, + //usb属性对应关系 + "hostId": KSVD.i18n.hostId, + "usbId": KSVD.i18n.usbId, + //高级配置属性对应关系 + "vmBluescreen": { + name: KSVD.i18n.vmBluescreen, + values: { + '0': KSVD.i18n.noConfig, + '1': KSVD.i18n.reOpen, + '2': KSVD.i18n.byOther, + } + }, + "uniqbVmHA": { + name: KSVD.i18n.uniqbVmHA, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "enableCpuDynamic": { + name: KSVD.i18n.enableCpuDynamic, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "enableMemDynamic": { + name: KSVD.i18n.enableMemDynamic, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "aotuMigrateSwitch": { + name: KSVD.i18n.aotuMigrateSwitch, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "followHostStartAuto": { + name: KSVD.i18n.followHostStartAuto, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "bootOrder": { + name: KSVD.i18n.bootOrder, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "remoteOpen": { + name: KSVD.i18n.remoteOpen, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "remotePassword": KSVD.i18n.remotePassword, + "wholeness": { + name: KSVD.i18n.wholeness, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "existedTime": { + name: KSVD.i18n.existedTime, + values: { + 'noTime': KSVD.i18n.noTime, + 'customize': KSVD.i18n.customizeTime, + + } + }, + + + }, + "serverVirtaulHostMigrate": {}, + "serverVirtaulHostStorageMigrate": {}, + "servervirtualVolMigrate": {}, + "servervirtualForceReboot": {}, + "servervirtualReboot": {}, + "servervirtualPowerOn": {}, + "servervirtualShutDown": {}, + "servervirtualResume": {}, + "servervirtualForceShutDown": {}, + "servervirtualDelete": {}, + "servervirtualDeleteSoft": {}, + "servervirtualClone": {}, + "servervirtualCloneLink": {}, + "servervirtualCreate": {}, + "servervirtualCreateByTemplate": {}, + "servervirtualExport": {}, + "servervirtualImport": {}, + "servervirtualCreateServerSnap": {}, + "servervirtualSnapshotDelete": {}, + "servervirtualSnapshotApply": {}, + + "servervirtualCreateNoMemServerSnap": {}, + + "servervirtualBatchApply": {}, + "servervirtualBatchCreateSnap": {}, + "servervirtualCreateBackUp": {}, + "servervirtualDeleteBackUp": {}, + "servervirtualRecoverBackUp": {}, + "servervirtualDiskCopy": {}, + + }; + return KSVD.taskDetailInfo.detailJsonParse(vmName, detailInfo, operData, deviceData, initData); +} + +//任务中心详情的解析显示 +KSVD.taskDetailInfo.detailJsonParse = function (vmName, detailInfo, operData, deviceData, initData) { + if (!detailInfo) { + return ''; + } + + if (!KSVD.taskDetailInfo.isJSON(detailInfo)) { + return detailInfo; + } + var _obj = JSON.parse(detailInfo); + //操作类型 + var _objKey = Object.keys(_obj)[0]; + //操作明细 + var _objVal = _obj[_objKey]; + //操作类型名称 + var operName = operData[_objKey]; + var result = []; + //任务详情解释 + $.each(_objVal, function (index, ele) { + var properInfo = initData[_objKey][ele.enName]; + //属性单位对应关系 + var preUnit = (ele.preUnit) ? ele.preUnit : ''; + var nowUnit = (ele.nowUnit) ? ele.nowUnit : ''; + //修改的设备以及索引关系解析 测盘 光驱等 + var preInfo = ''; + if (ele.preName) { + var device = ele.preName.replace(/\d/g, ''); + var deviceIndex = ele.preName.replace(/\D/g, ''); + preInfo = deviceData[device] + deviceIndex; + } + //修改的属性关系解析 + var preValue = (ele.preValue || ele.preValue == false || ele.preValue == 0) ? ele.preValue : ''; + var nowValue = (ele.nowValue || ele.nowValue == false || ele.nowValue == 0) ? ele.nowValue : ''; + if (KSVD.taskDetailInfo.isJSON(properInfo)) { + preValue = (properInfo["values"][preValue] || properInfo["values"][preValue] == false || properInfo["values"][preValue] == 0) ? properInfo["values"][preValue] : ''; + nowValue = (properInfo["values"][nowValue] || properInfo["values"][nowValue] == false || properInfo["values"][nowValue] == 0) ? properInfo["values"][nowValue] : ''; + properInfo = properInfo["name"]; + } + var isEditDevice = deviceData[ele.enName]; + var temp = ''; + //没有目的的修改关系解析 + if (isEditDevice) { + temp += '[' + properInfo + ']'; + } else { + //用于匹配operType:[objName]的格式 必须包含objName + if (ele.objName) { + temp += '[' + ele.objName + ']'; + } else { + temp += '[' + preInfo + (properInfo ? properInfo + ':' : '') + preValue + preUnit + '->' + nowValue + nowUnit + ']'; + } + + } + result.push(temp); + }); + + var detailMess = (result.length > 0) ? result.join('、') : '[' + vmName + ']'; + return operName + ':' + detailMess; +} +//除去编辑的其他任务生成任务中心详情 +KSVD.taskDetailInfo.taskDetailForOthers = function (operType, preData, nowData, objName) { + var tempData = [{ "preValue": preData, "nowValue": nowData, "enName": "", "objName": objName ? objName : '' }]; + var result = []; + //发生变动的属性对应关系 + $.each(tempData, function (index, ele) { + if (ele.preValue != ele.nowValue) { + result.push(ele); + } + }); + var taskDetail = {}; + taskDetail[operType] = result; + return JSON.stringify(taskDetail); +} +//编辑云服务器生成改动的内容 +KSVD.taskDetailInfo.taskDetailNativeInfo = function (operType, preData, nowData) { + //修改前的内容 + var pMachine = preData.machine; + var pvcpuSocket = preData.cpu.vcpuSocket; + var pvcpuCores = preData.cpu.vcpuCores; + var pcpuMode = preData.cpu.cpuMode.name; + var pschedulingPriority = preData.cpu.schedulingPriority; + var pcpuLimit = preData.cpu.limit ? preData.cpu.limit : ''; + var pcpuNuma = preData.cpu.cpuNuma; + var pmemory = preData.machine.memory; + var pmemHugePage = preData.machine.memHugePage; + var pmemoryBubbleConfig = preData.machine.memBalloon; + var diskArr = []; + var iosObjArr = []; + var interfaceArr = preData.interfaces ? preData.interfaces : []; + var usbsArr = preData['usbs'] ? preData['usbs'] : []; + for (var i = 0; i < preData.disks.length; i++) { + if (preData.disks[i].device == 'cdrom') { + iosObjArr.push(preData.disks[i]) + } else { + diskArr.push(preData.disks[i]); + } + } + var pgraphicsCard = preData.graphicsCard; + var pmouseType = preData.mouse; + var pbiosWaitTime = preData.bios ? preData.bios.biosWaitTime : ''; + var pbiosFile = preData.bios ? preData.bios.biosFile : ''; + if (pbiosFile == 'null') { + pbiosFile = ''; + } + + var pbiosSwitch = preData.bios ? preData.bios.biosSwitch : ''; + + var pvmBluescreen = preData.hapolicy.vmBluescreen; + var puniqbVmHa = preData.hapolicy.uniqbVmHa; + var pcpuThresholdFlag = preData.dynamicModel ? preData.dynamicModel.cpuThresholdFlag : ''; + var pmemThresholdFlag = preData.dynamicModel ? preData.dynamicModel.memThresholdFlag : ''; + var pautoMigrate = preData.autoMigrate; + + var pisOpenRemote = preData.vnc ? preData.vnc.isOpenRemote : ''; + var premotePassword = preData.vnc ? preData.vnc.remotePassword : ''; + var pwholeness = preData.wholeness; + var pserverRecyleSwitch = preData.serverRecyleSwitch; + var pselectCluster = pMachine.select_Cluster; + + //修改后的内容 + var nName = nowData.aliasName; + var nDescription = nowData.description; + var nvcpuSocket = nowData.vcpu_socket; + var nvcpuCores = nowData.vcpu_cores; + var ncpuMode = nowData.cpu_mode; + var nschedulingPriority = nowData.schedulingPriority; + var ncpuLimit = nowData.limit ? nowData.limit : ''; + var ncpuNuma = nowData.cpu_numa; + var nmemory = nowData.memory; + var nmemoryUnit = nowData.mem_unit; + var nmemHugePage = nowData.mem_hugePage; + var nmemoryBubbleConfig = nowData.mem_balloon; + var disksObj = JSON.parse(nowData.diskCapacity); + var iosObj = JSON.parse(nowData.isoSelect); + var interfaceObj = JSON.parse(nowData.interfaces); + var usbsObj = JSON.parse(nowData.usbList); + + var ngraphicsCard = nowData.graphicsCard; + var nmouseType = nowData.mouseType; + var nbiosWaitTime = nowData.biosWaitTime; + var nbiosFile = (nowData.biosFile && nowData.biosFile != 'null') ? nowData.biosFile : ''; + var nbiosSwitch = nowData.biosSwitch; + + var nvmBluescreen = nowData.vmBluescreen; + var nuniqbVmHa = nowData.uniqbVmHa; + var ncpuThresholdFlag = nowData.cpuThresholdFlag; + var nmemThresholdFlag = nowData.memThresholdFlag; + var nautoMigrate = nowData.autoMigrate; + var nisOpenRemote = nowData.isOpenRemote; + var nremotePassword = nowData.remotePassword; + + var nwholeness = nowData.wholeness; + var nserverRecyleSwitch = nowData.serverRecyleSwitch; + var nselectCluster = nowData.select_Cluster; + //修改前后内容的映射关系 + var initData = [ + { + "preValue": pMachine.aliasName, + "nowValue": nName, + "enName": "aliasName", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pMachine.description, + "nowValue": nDescription, + "enName": "description", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pvcpuSocket, + "nowValue": nvcpuSocket, + "enName": "vcpuSocket", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pvcpuCores, + "nowValue": nvcpuCores, + "enName": "vcpuCores", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pcpuMode, + "nowValue": ncpuMode, + "enName": "cpuMode", + preUnit: "", + nowUnit: "", + }, + { + "preValue": pschedulingPriority, + "nowValue": nschedulingPriority, + "enName": "schedulingPriority", + preUnit: "", + nowUnit: "", + }, + { + "preValue": pcpuLimit, + "nowValue": ncpuLimit, + "enName": "cpuLimit", + preUnit: "", + nowUnit: "", + }, + { + "preValue": pcpuNuma, + "nowValue": ncpuNuma, + "enName": "numaConfig", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmemory, + "nowValue": nmemory, + "enName": "memory", + preUnit: pMachine.memUnit, + nowUnit: nmemoryUnit + }, + { + "preValue": pmemHugePage, + "nowValue": nmemHugePage, + "enName": "memoryHugeConfig", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmemoryBubbleConfig, + "nowValue": nmemoryBubbleConfig, + "enName": "memoryBubbleConfig", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pgraphicsCard, + "nowValue": ngraphicsCard, + "enName": "graphicsCard", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmouseType, + "nowValue": nmouseType, + "enName": "mouseType", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pbiosWaitTime, + "nowValue": nbiosWaitTime, + "enName": "biosWaitTime", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pbiosFile, + "nowValue": nbiosFile, + "enName": "biosFile", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pbiosSwitch, + "nowValue": nbiosSwitch, + "enName": "biosSwitch", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pvmBluescreen, + "nowValue": nvmBluescreen, + "enName": "vmBluescreen", + preUnit: "", + nowUnit: "" + }, + { + "preValue": puniqbVmHa, + "nowValue": nuniqbVmHa, + "enName": "uniqbVmHA", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pcpuThresholdFlag, + "nowValue": ncpuThresholdFlag, + "enName": "enableCpuDynamic", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmemThresholdFlag, + "nowValue": nmemThresholdFlag, + "enName": "enableMemDynamic", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pautoMigrate, + "nowValue": nautoMigrate, + "enName": "aotuMigrateSwitch", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pisOpenRemote, + "nowValue": nisOpenRemote, + "enName": "remoteOpen", + preUnit: "", + nowUnit: "" + }, + { + "preValue": premotePassword, + "nowValue": nremotePassword, + "enName": "remotePassword", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pwholeness, + "nowValue": nwholeness, + "enName": "wholeness", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pserverRecyleSwitch, + "nowValue": nserverRecyleSwitch, + "enName": "existedTime", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pselectCluster, + "nowValue": nselectCluster, + "enName": "selectCluster", + preUnit: "", + nowUnit: "" + }, + + + ]; + + //光驱和磁盘修改 + if (diskArr.length == disksObj.length) { + var delFlag = false; + for (var i = 0; i < diskArr.length; i++) { + if (disksObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + var preadIoUnit = diskArr[i].readIOLimitUnit ? diskArr[i].readIOLimitUnit : 0; + var nreadIoUnit = disksObj[i].readIOLimitUnit ? disksObj[i].readIOLimitUnit : 0; + + var pwriteIoUnit = diskArr[i].writeIOLimitUnit ? diskArr[i].writeIOLimitUnit : 0; + var nwriteIoUnit = disksObj[i].writeIOLimitUnit ? disksObj[i].writeIOLimitUnit : 0; + var ioUnit = ['KB/S', 'MB/S', 'GB/S']; + var jsonArr = [ + { + "preValue": diskArr[i].diskCapacity, + "nowValue": disksObj[i].diskCapacity, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "diskCapacity" + }, + { + "preValue": diskArr[i].targetBus, + "nowValue": disksObj[i].diskType, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "targetBus" + }, + { + "preValue": diskArr[i].cacheType, + "nowValue": disksObj[i].cacheType, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "cacheType" + }, + { + "preValue": diskArr[i].provisionType, + "nowValue": disksObj[i].provisionType, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "provisionType" + }, + { + "preValue": diskArr[i].readIOLimit, + "nowValue": disksObj[i].readIOLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "readIOLimit", + preUnit: ioUnit[preadIoUnit], + nowUnit: ioUnit[nreadIoUnit], + }, + { + "preValue": diskArr[i].writeIOLimit, + "nowValue": disksObj[i].writeIOLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "writeIOLimit", + preUnit: ioUnit[pwriteIoUnit], + nowUnit: ioUnit[nwriteIoUnit], + }, + { + "preValue": diskArr[i].readIOPSLimit, + "nowValue": disksObj[i].readIOPSLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "readIOPSLimit" + }, + { + "preValue": diskArr[i].writeIOPSLimit, + "nowValue": disksObj[i].writeIOPSLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "writeIOPSLimit" + } + ]; + + initData = initData.concat(jsonArr); + } + + } + //dele disk + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delDisk" }; + initData.push(jsonMap); + } + + } else { + if (disksObj.length > diskArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addDisk" }; + initData.push(jsonMap); + } + } + + //网卡修改 + if (interfaceArr.length == interfaceObj.length) { + var delFlag = false; + for (var i = 0; i < interfaceArr.length; i++) { + if (interfaceObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + + var jsonArr = [ + { + "preValue": (interfaceArr[i].interfaceType.name).toLowerCase(), + "nowValue": (interfaceObj[i].interfaceType).toLowerCase(), + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "interfaceType" + }, + { + "preValue": interfaceArr[i].modeltype, + "nowValue": interfaceObj[i].modeltype, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "modeltype" + }, + { + "preValue": interfaceArr[i].poolName, + "nowValue": interfaceObj[i].macAddress, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "poolName" + }, + { + "preValue": interfaceArr[i].virtualSwitch, + "nowValue": interfaceObj[i].virtualSwitch, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "virtualSwitch" + }, + { + "preValue": interfaceArr[i].portGroup, + "nowValue": interfaceObj[i].portGroup, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "portGroup" + }, + { + "preValue": interfaceArr[i].ip ? interfaceArr[i].ip : '', + "nowValue": interfaceObj[i].ip ? interfaceObj[i].ip : '', + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "ipAddress" + }, + { + "preValue": interfaceArr[i].mac ? interfaceArr[i].mac : '', + "nowValue": interfaceObj[i].mac ? interfaceObj[i].mac : '', + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "mac" + }, + + { + "preValue": interfaceArr[i].queueCount, + "nowValue": interfaceObj[i].queueCount, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "queueCount" + }, + { + "preValue": interfaceArr[i].mtuCount, + "nowValue": interfaceObj[i].mtuCount, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "mtuCount" + }, + { + "preValue": interfaceArr[i].hotDrawing, + "nowValue": interfaceObj[i].hotDrawing, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "hotDrawing" + }, + ]; + + initData = initData.concat(jsonArr); + } + + + } + //dele interface + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delInterface" }; + initData.push(jsonMap); + } + } else { + if (interfaceObj.length > interfaceArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addInterface" }; + initData.push(jsonMap); + } + } + //光驱性对应关系 + if (iosObjArr.length == iosObj.length) { + var delFlag = false; + for (var i = 0; i < iosObjArr.length; i++) { + if (iosObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + + + var jsonArr = [ + { + "preValue": iosObjArr[i].sourceFile ? iosObjArr[i].sourceFile : '', + "nowValue": iosObj[i].isoSelect ? iosObj[i].isoSelect : '', + "preName": 'editIso' + (i != 0 ? i : ''), + "enName": "sourceFile" + }, + ]; + initData = initData.concat(jsonArr); + } + } + //dele iso + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delIso" }; + initData.push(jsonMap); + } + } else { + if (iosObj.length > iosObjArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addIso" }; + initData.push(jsonMap); + } + + } + //usbs + if (usbsArr.length == usbsObj.length) { + var delFlag = false; + for (var i = 0; i < usbsArr.length; i++) { + if (usbsObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + + + var jsonArr = [ + { + "preValue": usbsArr[i].hostIp ? usbsArr[i].hostIp : '', + "nowValue": usbsObj[i].hostId ? usbsObj[i].hostId : '', + "preName": 'editUsb' + (i != 0 ? i : ''), + "enName": "hostId" + }, + { + "preValue": usbsArr[i].id ? usbsArr[i].id : '', + "nowValue": usbsObj[i].usbId ? usbsObj[i].usbId : '', + "preName": 'editUsb' + (i != 0 ? i : ''), + "enName": "usbId" + }, + ]; + initData = initData.concat(jsonArr); + } + } + //dele usb + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delUsb" }; + initData.push(jsonMap); + } + } else { + if (usbsObj.length > usbsArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addUsb" }; + initData.push(jsonMap); + } + + } + + var tempData = initData; + var result = []; + //发生变动的属性对应关系 + $.each(tempData, function (index, ele) { + if (ele.preValue != ele.nowValue) { + if (!(commonUtils.inputIsNull(ele.preValue) == true + && commonUtils.inputIsNull(ele.nowValue) == true)) { + result.push(ele); + } + + } + }); + var taskDetail = {}; + taskDetail[operType] = result; + return JSON.stringify(taskDetail); + +} +//判断是否为json串 +KSVD.taskDetailInfo.isJSON = function (str) { + if (typeof str == 'string') { + try { + var obj = JSON.parse(str); + if (typeof obj == 'object' && obj) { + return true; + } else { + return false; + } + + } catch (e) { + console.error('error:' + str + '!!!' + e); + return false; + } + } + var isjson = typeof (str) == "object" && Object.prototype.toString.call(str).toLowerCase() == "[object object]" && !str.length; + return isjson; +} + +export { + KSVD +} diff --git a/src/views/externalCloud/vcenter/createEditModal/createEditBox.vue b/src/views/externalCloud/vcenter/createEditModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..952f37cb1630a96377a5adbd9bb4c01bb0081af9 --- /dev/null +++ b/src/views/externalCloud/vcenter/createEditModal/createEditBox.vue @@ -0,0 +1,835 @@ + + + + diff --git a/src/views/externalCloud/vcenter/createEditModal/createEditModal.vue b/src/views/externalCloud/vcenter/createEditModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/externalCloud/vcenter/createEditModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/externalCloud/vcenter/detail.vue b/src/views/externalCloud/vcenter/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..258a3b2d1787f99f657ba236e8e05872d8b51497 --- /dev/null +++ b/src/views/externalCloud/vcenter/detail.vue @@ -0,0 +1,101 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServer.vue b/src/views/externalCloud/vcenter/detailPage/cloudServer.vue new file mode 100644 index 0000000000000000000000000000000000000000..12a5201a286c2a9dee641403de667d4d9745c925 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServer.vue @@ -0,0 +1,905 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/cloneVmDetailBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/cloneVmDetailBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..1dc84e5721b1b9398c10fa455c5c2e7310c513b9 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/cloneVmDetailBox.vue @@ -0,0 +1,311 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/createVmDetailBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/createVmDetailBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..2742258923fa0516dd59e19384c3e8b44403eb44 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/createVmDetailBox.vue @@ -0,0 +1,932 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/editVmBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/editVmBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..56115ac4d4f78aa9cc05f2abf632696e22d0761e --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/editVmBox.vue @@ -0,0 +1,906 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/editVmDetailBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/editVmDetailBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..2ca549c6d2808946939ff5ef2aad15f58c26ac7a --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/editVmDetailBox.vue @@ -0,0 +1,53 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/getStorageBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/getStorageBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..53ee590e76f8021f158f0b6543b754e01cfae736 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/getStorageBox.vue @@ -0,0 +1,261 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/getTemplateBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/getTemplateBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..f5db018868ac78bbee4e70be4f1be89f3b5f4fbb --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/getTemplateBox.vue @@ -0,0 +1,165 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/transferVmBox.vue b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/transferVmBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..c92172d10f56142ad9ac0a4bfa4dd85a864bce42 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/cloudServerCommpoents/transferVmBox.vue @@ -0,0 +1,550 @@ + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/clusterSummary.vue b/src/views/externalCloud/vcenter/detailPage/clusterSummary.vue new file mode 100644 index 0000000000000000000000000000000000000000..440d4adaed85fc65557b05bdea191e6e62bf1481 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/clusterSummary.vue @@ -0,0 +1,466 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/detailPage/detailStorage.vue b/src/views/externalCloud/vcenter/detailPage/detailStorage.vue new file mode 100644 index 0000000000000000000000000000000000000000..a397d4135053ea518491c4466ef050b3e71940a1 --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/detailStorage.vue @@ -0,0 +1,193 @@ + + + + \ No newline at end of file diff --git a/src/views/externalCloud/vcenter/detailPage/pagePhysicalHost.vue b/src/views/externalCloud/vcenter/detailPage/pagePhysicalHost.vue new file mode 100644 index 0000000000000000000000000000000000000000..1c12f24e9d15963cffafa9d80beb62eae92fd37b --- /dev/null +++ b/src/views/externalCloud/vcenter/detailPage/pagePhysicalHost.vue @@ -0,0 +1,189 @@ + + + + \ No newline at end of file diff --git a/src/views/externalCloud/vcenter/header-bar.vue b/src/views/externalCloud/vcenter/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..0e3c3415616918302a563454518b85c3c287173e --- /dev/null +++ b/src/views/externalCloud/vcenter/header-bar.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/externalCloud/vcenter/vcenter.vue b/src/views/externalCloud/vcenter/vcenter.vue new file mode 100644 index 0000000000000000000000000000000000000000..58297f86b7109c690afab950d3754d26e66c6fd2 --- /dev/null +++ b/src/views/externalCloud/vcenter/vcenter.vue @@ -0,0 +1,400 @@ + + + diff --git a/src/views/homePage/cloudHosting.vue b/src/views/homePage/cloudHosting.vue new file mode 100644 index 0000000000000000000000000000000000000000..8a0f27a5067385e5d11257272ecf20b056896e4f --- /dev/null +++ b/src/views/homePage/cloudHosting.vue @@ -0,0 +1,127 @@ + + + + + diff --git a/src/views/homePage/commonBox.vue b/src/views/homePage/commonBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..4306e3206cf1754225d6382c8df45759a522699e --- /dev/null +++ b/src/views/homePage/commonBox.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/views/homePage/index.vue b/src/views/homePage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..413d548f63bdf7bf52be94576e0577190130d464 --- /dev/null +++ b/src/views/homePage/index.vue @@ -0,0 +1,245 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/cloudHosting.vue b/src/views/homePage/ordinaryHome/cloudHosting.vue new file mode 100644 index 0000000000000000000000000000000000000000..3bafa9a4258db8bea88af30e14e16ff6d82465da --- /dev/null +++ b/src/views/homePage/ordinaryHome/cloudHosting.vue @@ -0,0 +1,130 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/commonBox.vue b/src/views/homePage/ordinaryHome/commonBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..4306e3206cf1754225d6382c8df45759a522699e --- /dev/null +++ b/src/views/homePage/ordinaryHome/commonBox.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/index.vue b/src/views/homePage/ordinaryHome/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..28a1afe8502e1d8558b35539323766d54a094e95 --- /dev/null +++ b/src/views/homePage/ordinaryHome/index.vue @@ -0,0 +1,263 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/overview.vue b/src/views/homePage/ordinaryHome/overview.vue new file mode 100644 index 0000000000000000000000000000000000000000..429ffb24cf69bbab05c783e9cfb1249aec612ee6 --- /dev/null +++ b/src/views/homePage/ordinaryHome/overview.vue @@ -0,0 +1,109 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/percentageBox.vue b/src/views/homePage/ordinaryHome/percentageBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..36529f65761c5a10eb4d84f8dd8f8e52a6610b3e --- /dev/null +++ b/src/views/homePage/ordinaryHome/percentageBox.vue @@ -0,0 +1,108 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/reviewWorkorder.vue b/src/views/homePage/ordinaryHome/reviewWorkorder.vue new file mode 100644 index 0000000000000000000000000000000000000000..d95aff02bffdc313d2a357e1340da5cb9b5c441d --- /dev/null +++ b/src/views/homePage/ordinaryHome/reviewWorkorder.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/reviewWorkorderAlerts.vue b/src/views/homePage/ordinaryHome/reviewWorkorderAlerts.vue new file mode 100644 index 0000000000000000000000000000000000000000..a7b12e4aae0f4f8973599fb72c8e4635df13b6be --- /dev/null +++ b/src/views/homePage/ordinaryHome/reviewWorkorderAlerts.vue @@ -0,0 +1,136 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/utilizationOverview.vue b/src/views/homePage/ordinaryHome/utilizationOverview.vue new file mode 100644 index 0000000000000000000000000000000000000000..b151a8b3f1d574489717ad6e552f08735054e42b --- /dev/null +++ b/src/views/homePage/ordinaryHome/utilizationOverview.vue @@ -0,0 +1,470 @@ + + + + + diff --git a/src/views/homePage/ordinaryHome/vdcListBox.vue b/src/views/homePage/ordinaryHome/vdcListBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..111f26ade6bc21f2f0e2d1a2d41938b1ea99bc94 --- /dev/null +++ b/src/views/homePage/ordinaryHome/vdcListBox.vue @@ -0,0 +1,264 @@ + + + + + diff --git a/src/views/homePage/percentageBox.vue b/src/views/homePage/percentageBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..36529f65761c5a10eb4d84f8dd8f8e52a6610b3e --- /dev/null +++ b/src/views/homePage/percentageBox.vue @@ -0,0 +1,108 @@ + + + + + diff --git a/src/views/homePage/physicalMachine.vue b/src/views/homePage/physicalMachine.vue new file mode 100644 index 0000000000000000000000000000000000000000..1f04f01d9485db60058f1d9a99cfe1fa470b96a3 --- /dev/null +++ b/src/views/homePage/physicalMachine.vue @@ -0,0 +1,126 @@ + + + + + diff --git a/src/views/homePage/reviewWorkorderAlerts.vue b/src/views/homePage/reviewWorkorderAlerts.vue new file mode 100644 index 0000000000000000000000000000000000000000..f0a80d90585b09ccbffb1a35453dae544d16cdb8 --- /dev/null +++ b/src/views/homePage/reviewWorkorderAlerts.vue @@ -0,0 +1,135 @@ + + + + + diff --git a/src/views/homePage/utilizationOverview.vue b/src/views/homePage/utilizationOverview.vue new file mode 100644 index 0000000000000000000000000000000000000000..7c49dceb8c575e237aa4781a02d1b5acbdabb71b --- /dev/null +++ b/src/views/homePage/utilizationOverview.vue @@ -0,0 +1,459 @@ + + + + + diff --git a/src/views/homePage/vdcListBox.vue b/src/views/homePage/vdcListBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..404c201a17c7c874f029732b862f3a8cc6378dfb --- /dev/null +++ b/src/views/homePage/vdcListBox.vue @@ -0,0 +1,436 @@ + + + + + diff --git a/src/views/login/components/login-form.vue b/src/views/login/components/login-form.vue new file mode 100644 index 0000000000000000000000000000000000000000..aa803139c34d99e5f2b32df15f0730689005ff41 --- /dev/null +++ b/src/views/login/components/login-form.vue @@ -0,0 +1,288 @@ + + + + + diff --git a/src/views/login/index.vue b/src/views/login/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..4219863510e51d82ce2198351b937f317d438bfd --- /dev/null +++ b/src/views/login/index.vue @@ -0,0 +1,123 @@ + + + + + diff --git a/src/views/monitor/alarmevent/alarmLog/clusterAlarmlog.vue b/src/views/monitor/alarmevent/alarmLog/clusterAlarmlog.vue new file mode 100644 index 0000000000000000000000000000000000000000..e1bd575a3d84e8708ca2d62fdd36264409a35d15 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmLog/clusterAlarmlog.vue @@ -0,0 +1,228 @@ + + + + diff --git a/src/views/monitor/alarmevent/alarmLog/clusterAlarmlogHeader.vue b/src/views/monitor/alarmevent/alarmLog/clusterAlarmlogHeader.vue new file mode 100644 index 0000000000000000000000000000000000000000..c79c296e9f862e0d12f45e790ab7f1d51240cf5d --- /dev/null +++ b/src/views/monitor/alarmevent/alarmLog/clusterAlarmlogHeader.vue @@ -0,0 +1,228 @@ + + + + + diff --git a/src/views/monitor/alarmevent/alarmLog/index.vue b/src/views/monitor/alarmevent/alarmLog/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..f2226b283a74b7dae1f17b4b12cb963a7782fbb0 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmLog/index.vue @@ -0,0 +1,46 @@ + + + diff --git a/src/views/monitor/alarmevent/alarmLog/platformAlarmlog.vue b/src/views/monitor/alarmevent/alarmLog/platformAlarmlog.vue new file mode 100644 index 0000000000000000000000000000000000000000..b14a0ab5f09ca9ac387e96e0df1cacfb27907c57 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmLog/platformAlarmlog.vue @@ -0,0 +1,192 @@ + + + + + diff --git a/src/views/monitor/alarmevent/alarmLog/platformAlarmlogHeader.vue b/src/views/monitor/alarmevent/alarmLog/platformAlarmlogHeader.vue new file mode 100644 index 0000000000000000000000000000000000000000..fb18bd551d5c969db830950c3f5e3cc5e7b922c1 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmLog/platformAlarmlogHeader.vue @@ -0,0 +1,237 @@ + + + + + diff --git a/src/views/monitor/alarmevent/alarmSet/cloudServerAlarmPolicy.vue b/src/views/monitor/alarmevent/alarmSet/cloudServerAlarmPolicy.vue new file mode 100644 index 0000000000000000000000000000000000000000..127a1b19df0bc503724ba365c9d69863bff75d49 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/cloudServerAlarmPolicy.vue @@ -0,0 +1,224 @@ + + + + \ No newline at end of file diff --git a/src/views/monitor/alarmevent/alarmSet/clusterAlarmSettings.vue b/src/views/monitor/alarmevent/alarmSet/clusterAlarmSettings.vue new file mode 100644 index 0000000000000000000000000000000000000000..55f60a2aab8175f7e2c6cb3430da4b30f2f2b84c --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/clusterAlarmSettings.vue @@ -0,0 +1,142 @@ + + + + diff --git a/src/views/monitor/alarmevent/alarmSet/header-bar.vue b/src/views/monitor/alarmevent/alarmSet/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..2d9ef8f891177d4b9e0ff8dd4781edb92b74db20 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/header-bar.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/src/views/monitor/alarmevent/alarmSet/index.vue b/src/views/monitor/alarmevent/alarmSet/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..6105af12a8a18aaba71a882393157f4f92dddb53 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/index.vue @@ -0,0 +1,50 @@ + + + + diff --git a/src/views/monitor/alarmevent/alarmSet/physicalServerAlertPolicy.vue b/src/views/monitor/alarmevent/alarmSet/physicalServerAlertPolicy.vue new file mode 100644 index 0000000000000000000000000000000000000000..e53bff5b7ef63525f2e2379871facc40e099b1c2 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/physicalServerAlertPolicy.vue @@ -0,0 +1,223 @@ + + + + \ No newline at end of file diff --git a/src/views/monitor/alarmevent/alarmSet/platformAlarmSettings.vue b/src/views/monitor/alarmevent/alarmSet/platformAlarmSettings.vue new file mode 100644 index 0000000000000000000000000000000000000000..599e7b6194ef09340a0cb8a62df873899149a7d4 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/platformAlarmSettings.vue @@ -0,0 +1,242 @@ + + + + \ No newline at end of file diff --git a/src/views/monitor/alarmevent/alarmSet/selectlist.js b/src/views/monitor/alarmevent/alarmSet/selectlist.js new file mode 100644 index 0000000000000000000000000000000000000000..fc5c5e00bb933077accb145d06a62a383dd70a19 --- /dev/null +++ b/src/views/monitor/alarmevent/alarmSet/selectlist.js @@ -0,0 +1,101 @@ + +export default { + level: [{ + "value": "ALL", + "label": "monitoring.evtSeverity.ALL" + }, { + "value": "INFO", + "label": "monitoring.evtSeverity.INFO" + }, { + "value": "WARN", + "label": "monitoring.evtSeverity.WARN" + }, { + "value": "ERROR", + "label": "monitoring.evtSeverity.ERROR" + }], + type: [{ + "value": "ALL", + "label": "monitoring.event.type.ALL" + }, { + "value": "SERVER_ONLINE", + "label": "monitoring.event.type.SERVER_ONLINE" + }, { + "value": "SERVER_OFFLINE", + "label": "monitoring.event.type.SERVER_OFFLINE" + }, { + "value": "SERVER_KSVD_START", + "label": "monitoring.event.type.SERVER_KSVD_START" + }, { + "value": "SERVER_KSVD_STOP", + "label": "monitoring.event.type.SERVER_KSVD_STOP" + }, { + "value": "SERVER_KSVD_MSG", + "label": "monitoring.event.type.SERVER_KSVD_MSG" + }, { + "value": "CM_ACTIVE", + "label": "monitoring.event.type.CM_ACTIVE" + }, { + "value": "CM_STANDBY", + "label": "monitoring.event.type.CM_STANDBY" + }, { + "value": "KSVDCMD_RESTART", + "label": "monitoring.event.type.KSVDCMD_RESTART" + }, { + "value": "KSVDCMD_DOWN", + "label": "monitoring.event.type.KSVDCMD_DOWN" + }, { + "value": "KSVDMPCD_RESTART", + "label": "monitoring.event.type.KSVDMPCD_RESTART" + }, { + "value": "KSVDMPCD_DOWN", + "label": "monitoring.event.type.KSVDMPCD_DOWN" + }, { + "value": "KSVDSMARTD_RESTART", + "label": "monitoring.event.type.KSVDSMARTD_RESTART" + }, { + "value": "KSVDSMARTD_DOWN", + "label": "monitoring.event.type.KSVDSMARTD_DOWN" + }, { + "value": "KSVDBRANCHD_RESTART", + "label": "monitoring.event.type.KSVDBRANCHD_RESTART" + }, { + "value": "KSVDBRANCHD_DOWN", + "label": "monitoring.event.type.KSVDBRANCHD_DOWN" + }, { + "value": "DHCPD_RESTART", + "label": "monitoring.event.type.DHCPD_RESTART" + }, { + "value": "DHCPD_DOWN", + "label": "monitoring.event.type.DHCPD_DOWN" + }, { + "value": "KSVDUDPD_RESTART", + "label": "monitoring.event.type.KSVDUDPD_RESTART" + }, { + "value": "KSVDUDPD_DOWN", + "label": "monitoring.event.type.KSVDUDPD_DOWN" + }, { + "value": "KSVDP2P_RESTART", + "label": "monitoring.event.type.KSVDP2P_RESTART" + }, { + "value": "KSVDP2P_DOWN", + "label": "monitoring.event.type.KSVDP2P_DOWN" + }, { + "value": "KSVDCACHEIO_RESTART", + "label": "monitoring.event.type.KSVDCACHEIO_RESTART" + }, { + "value": "KSVDCACHEIO_DOWN", + "label": "monitoring.event.type.KSVDCACHEIO_DOWN" + }, { + "value": "KSVD_NETD_RESTART", + "label": "monitoring.event.type.KSVD_NETD_RESTART" + }, { + "value": "KSVD_NETD_DOWN", + "label": "monitoring.event.type.KSVD_NETD_DOWN" + }, { + "value": "KSVD_DPM_WAKEUP", + "label": "monitoring.event.type.KSVD_DPM_WAKEUP" + }, { + "value": "KSVD_DPM_POWEROFF", + "label": "monitoring.event.type.KSVD_DPM_POWEROFF" + }] +} \ No newline at end of file diff --git a/src/views/monitor/operationLog/cloudServerevents/header-bar.vue b/src/views/monitor/operationLog/cloudServerevents/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..26df6cd303a652ed114893f6ea95ccea172c7f89 --- /dev/null +++ b/src/views/monitor/operationLog/cloudServerevents/header-bar.vue @@ -0,0 +1,228 @@ + + + + + diff --git a/src/views/monitor/operationLog/cloudServerevents/index.vue b/src/views/monitor/operationLog/cloudServerevents/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..9ea475fc65bf2abc866d737fe7bc927f0487c2af --- /dev/null +++ b/src/views/monitor/operationLog/cloudServerevents/index.vue @@ -0,0 +1,227 @@ + + + diff --git a/src/views/monitor/operationLog/physicalHostevents/header-bar.vue b/src/views/monitor/operationLog/physicalHostevents/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..1e2bf9d8fff1e56947e74bed45c103637dcfea41 --- /dev/null +++ b/src/views/monitor/operationLog/physicalHostevents/header-bar.vue @@ -0,0 +1,203 @@ + + + + + diff --git a/src/views/monitor/operationLog/physicalHostevents/index.vue b/src/views/monitor/operationLog/physicalHostevents/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..8a9a42dd2300cda104d2266e832eda0f0818f2b1 --- /dev/null +++ b/src/views/monitor/operationLog/physicalHostevents/index.vue @@ -0,0 +1,212 @@ + + + diff --git a/src/views/monitor/taskcenter/index.vue b/src/views/monitor/taskcenter/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..9506ee5fef21afc1badda6e3a7e2a341f9926510 --- /dev/null +++ b/src/views/monitor/taskcenter/index.vue @@ -0,0 +1,277 @@ + + + + + diff --git a/src/views/monitor/taskcenter/taskcenterHeader.vue b/src/views/monitor/taskcenter/taskcenterHeader.vue new file mode 100644 index 0000000000000000000000000000000000000000..61d818a63271f703a321f8cdeca938dc0a381f66 --- /dev/null +++ b/src/views/monitor/taskcenter/taskcenterHeader.vue @@ -0,0 +1,258 @@ + + + + + diff --git a/src/views/monitor/taskcenter/taskcenterModal/taskcenterBox.vue b/src/views/monitor/taskcenter/taskcenterModal/taskcenterBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..17778e3ba192d3da75d08e9e8943cc2563aa6d50 --- /dev/null +++ b/src/views/monitor/taskcenter/taskcenterModal/taskcenterBox.vue @@ -0,0 +1,254 @@ + + + diff --git a/src/views/monitor/taskcenter/taskcenterModal/taskcenterModal.vue b/src/views/monitor/taskcenter/taskcenterModal/taskcenterModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..d0b09451c21805b8d5de0fbccda8d2644023a3e0 --- /dev/null +++ b/src/views/monitor/taskcenter/taskcenterModal/taskcenterModal.vue @@ -0,0 +1,121 @@ + + + + + diff --git a/src/views/monitor/taskcenter/teskDetail/teskDetailBox.vue b/src/views/monitor/taskcenter/teskDetail/teskDetailBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..9b3977389e7121582cf70eb2fcca2b36930866b2 --- /dev/null +++ b/src/views/monitor/taskcenter/teskDetail/teskDetailBox.vue @@ -0,0 +1,139 @@ + + + diff --git a/src/views/monitor/taskcenter/teskDetail/teskDetailModal.vue b/src/views/monitor/taskcenter/teskDetail/teskDetailModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..7edc48e874724024403cd5f89f6ad510121c436b --- /dev/null +++ b/src/views/monitor/taskcenter/teskDetail/teskDetailModal.vue @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file diff --git a/src/views/monitor/taskcenter/testCenterstatus.vue b/src/views/monitor/taskcenter/testCenterstatus.vue new file mode 100644 index 0000000000000000000000000000000000000000..e0bf023bdd84b248072b9091b303972d8b1a3a16 --- /dev/null +++ b/src/views/monitor/taskcenter/testCenterstatus.vue @@ -0,0 +1,131 @@ + + + + diff --git a/src/views/network/drawer/create-network-drawer.vue b/src/views/network/drawer/create-network-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..082178af37dec5f8f683ee409745221c6b90aec1 --- /dev/null +++ b/src/views/network/drawer/create-network-drawer.vue @@ -0,0 +1,49 @@ + + + + + \ No newline at end of file diff --git a/src/views/network/drawer/createNetworkConfigDrawer.vue b/src/views/network/drawer/createNetworkConfigDrawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..2e4b61f0f9b83ac51fa10e2fe06a2370af54e4ae --- /dev/null +++ b/src/views/network/drawer/createNetworkConfigDrawer.vue @@ -0,0 +1,278 @@ + + + + diff --git a/src/views/network/header-bar.vue b/src/views/network/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..ef4264a5d3a2f0b72f712c789c45a89b2b890209 --- /dev/null +++ b/src/views/network/header-bar.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/network/index.vue b/src/views/network/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..287562c36c1c94e33539a09fa540ac380da77967 --- /dev/null +++ b/src/views/network/index.vue @@ -0,0 +1,206 @@ + + + diff --git a/src/views/operate/authorityMgr/roleMgr/createRole/createRoleBox.vue b/src/views/operate/authorityMgr/roleMgr/createRole/createRoleBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..1e56b9c03e4798bb2ae3af618f1c871a9590fd5e --- /dev/null +++ b/src/views/operate/authorityMgr/roleMgr/createRole/createRoleBox.vue @@ -0,0 +1,495 @@ + + + + diff --git a/src/views/operate/authorityMgr/roleMgr/createRole/createRoleMadal.vue b/src/views/operate/authorityMgr/roleMgr/createRole/createRoleMadal.vue new file mode 100644 index 0000000000000000000000000000000000000000..9704cb9c0d9e3bba9b24f1161b6f7c54c8953307 --- /dev/null +++ b/src/views/operate/authorityMgr/roleMgr/createRole/createRoleMadal.vue @@ -0,0 +1,54 @@ + + + + + \ No newline at end of file diff --git a/src/views/operate/authorityMgr/roleMgr/detailRole/detailRoleBox.vue b/src/views/operate/authorityMgr/roleMgr/detailRole/detailRoleBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..23a0bf0a4dd8b677c96e1f9a308fb8a2ad31cd9a --- /dev/null +++ b/src/views/operate/authorityMgr/roleMgr/detailRole/detailRoleBox.vue @@ -0,0 +1,151 @@ + + + + diff --git a/src/views/operate/authorityMgr/roleMgr/detailRole/detailRoleMadal.vue b/src/views/operate/authorityMgr/roleMgr/detailRole/detailRoleMadal.vue new file mode 100644 index 0000000000000000000000000000000000000000..35ca4cccb523356ad10a4f1466c6f2d29aeaee36 --- /dev/null +++ b/src/views/operate/authorityMgr/roleMgr/detailRole/detailRoleMadal.vue @@ -0,0 +1,54 @@ + + + + + \ No newline at end of file diff --git a/src/views/operate/authorityMgr/roleMgr/header-bar.vue b/src/views/operate/authorityMgr/roleMgr/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..c9936d53e6c027984287c8a3396df551ed58bca3 --- /dev/null +++ b/src/views/operate/authorityMgr/roleMgr/header-bar.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/operate/authorityMgr/roleMgr/index.vue b/src/views/operate/authorityMgr/roleMgr/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..cd00fa871df00815bc152cec0de891351f988f5c --- /dev/null +++ b/src/views/operate/authorityMgr/roleMgr/index.vue @@ -0,0 +1,286 @@ + + + + + diff --git a/src/views/operate/authorityMgr/userMgr/bindRoleModal/bindRoleBox.vue b/src/views/operate/authorityMgr/userMgr/bindRoleModal/bindRoleBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..7aa4ccbf879181230a1cf3bfdfcc1b33690eb74c --- /dev/null +++ b/src/views/operate/authorityMgr/userMgr/bindRoleModal/bindRoleBox.vue @@ -0,0 +1,227 @@ + + + diff --git a/src/views/operate/authorityMgr/userMgr/bindRoleModal/bindRoleModal.vue b/src/views/operate/authorityMgr/userMgr/bindRoleModal/bindRoleModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..2e3f703e5bb0fe7f0b65eaec0a7a638ef9918c4e --- /dev/null +++ b/src/views/operate/authorityMgr/userMgr/bindRoleModal/bindRoleModal.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/views/operate/authorityMgr/userMgr/createUser/createUserBox.vue b/src/views/operate/authorityMgr/userMgr/createUser/createUserBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..3656c3b4d3005a7526c889ac4fabfffbfb27be52 --- /dev/null +++ b/src/views/operate/authorityMgr/userMgr/createUser/createUserBox.vue @@ -0,0 +1,563 @@ + + + + diff --git a/src/views/operate/authorityMgr/userMgr/createUser/createUserModal.vue b/src/views/operate/authorityMgr/userMgr/createUser/createUserModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..eb07e5b3f8dfb18218b84aed8334af76fb4c1ed8 --- /dev/null +++ b/src/views/operate/authorityMgr/userMgr/createUser/createUserModal.vue @@ -0,0 +1,61 @@ + + + + + \ No newline at end of file diff --git a/src/views/operate/authorityMgr/userMgr/header-bar.vue b/src/views/operate/authorityMgr/userMgr/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..a53913ebd589576c6354c5f2771745810221a13e --- /dev/null +++ b/src/views/operate/authorityMgr/userMgr/header-bar.vue @@ -0,0 +1,107 @@ + + + + + diff --git a/src/views/operate/authorityMgr/userMgr/index.vue b/src/views/operate/authorityMgr/userMgr/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..4d37bb703f7afb647fda69e179ac45d16de7ac17 --- /dev/null +++ b/src/views/operate/authorityMgr/userMgr/index.vue @@ -0,0 +1,428 @@ + + + + + diff --git a/src/views/operate/organizationMgr/bindOrganization/bindOrgBox.vue b/src/views/operate/organizationMgr/bindOrganization/bindOrgBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..42daedd459e7513297738e914fa798aede418df2 --- /dev/null +++ b/src/views/operate/organizationMgr/bindOrganization/bindOrgBox.vue @@ -0,0 +1,168 @@ + + + + diff --git a/src/views/operate/organizationMgr/bindOrganization/bindOrgModal.vue b/src/views/operate/organizationMgr/bindOrganization/bindOrgModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..28314166159673659f0e70f1adb7de2486f0e423 --- /dev/null +++ b/src/views/operate/organizationMgr/bindOrganization/bindOrgModal.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/views/operate/organizationMgr/createOrganization/createorganizBox.vue b/src/views/operate/organizationMgr/createOrganization/createorganizBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..3b141260c3d633e16f778150169f425b23073101 --- /dev/null +++ b/src/views/operate/organizationMgr/createOrganization/createorganizBox.vue @@ -0,0 +1,556 @@ + + + + diff --git a/src/views/operate/organizationMgr/createOrganization/createorganizModal.vue b/src/views/operate/organizationMgr/createOrganization/createorganizModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..200486eb77bfc65467c57e2be1fdecf8a754ec51 --- /dev/null +++ b/src/views/operate/organizationMgr/createOrganization/createorganizModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/operate/organizationMgr/detail.vue b/src/views/operate/organizationMgr/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..55f8ca6d82d1f0d6574329d5a65e95a58c4181c2 --- /dev/null +++ b/src/views/operate/organizationMgr/detail.vue @@ -0,0 +1,41 @@ + + + + + + diff --git a/src/views/operate/organizationMgr/index.vue b/src/views/operate/organizationMgr/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..735c16b9275349b0fe6d2c2437d6b33ac8363103 --- /dev/null +++ b/src/views/operate/organizationMgr/index.vue @@ -0,0 +1,432 @@ + + + + + + diff --git a/src/views/operate/organizationMgr/modifyOrgName/modifyOrgNameBox.vue b/src/views/operate/organizationMgr/modifyOrgName/modifyOrgNameBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..086e94945605392780b77ed0be179bbdaf9efa84 --- /dev/null +++ b/src/views/operate/organizationMgr/modifyOrgName/modifyOrgNameBox.vue @@ -0,0 +1,142 @@ + + + + diff --git a/src/views/operate/organizationMgr/modifyOrgName/modifyOrgNameModal.vue b/src/views/operate/organizationMgr/modifyOrgName/modifyOrgNameModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..b65cbe6fd7563489e24624555362344215cf8a84 --- /dev/null +++ b/src/views/operate/organizationMgr/modifyOrgName/modifyOrgNameModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/operate/organizationMgr/orgdetail/outline.vue b/src/views/operate/organizationMgr/orgdetail/outline.vue new file mode 100644 index 0000000000000000000000000000000000000000..6728a622472f964ae0090f3d66ab97e600142280 --- /dev/null +++ b/src/views/operate/organizationMgr/orgdetail/outline.vue @@ -0,0 +1,534 @@ + + + + \ No newline at end of file diff --git a/src/views/reliableCenter/kcpha/addKcp.vue b/src/views/reliableCenter/kcpha/addKcp.vue new file mode 100644 index 0000000000000000000000000000000000000000..d53363e23e590cf2203b2ff698adff97a720c117 --- /dev/null +++ b/src/views/reliableCenter/kcpha/addKcp.vue @@ -0,0 +1,204 @@ + + + + diff --git a/src/views/reliableCenter/kcpha/index.vue b/src/views/reliableCenter/kcpha/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..bebca735915d2c082387b23681bb00c6f6e85722 --- /dev/null +++ b/src/views/reliableCenter/kcpha/index.vue @@ -0,0 +1,175 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/components/getNetworkCardBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/components/getNetworkCardBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..beff8a8ec175cec4f0e324f54304c97ca64821ed --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/components/getNetworkCardBox.vue @@ -0,0 +1,219 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/components/getStorageBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/components/getStorageBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..c808604160f3ad9e7dce9bdca5af237bb5f6816d --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/components/getStorageBox.vue @@ -0,0 +1,224 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/components/recoverPlaceModel.vue b/src/views/reliableCenter/remoteDisasterRecovery/components/recoverPlaceModel.vue new file mode 100644 index 0000000000000000000000000000000000000000..6ef47574bf2412f7837aa0e6ef01826bfded6d81 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/components/recoverPlaceModel.vue @@ -0,0 +1,318 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStatus/disasterRecoveryDrill.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/disasterRecoveryDrill.vue new file mode 100644 index 0000000000000000000000000000000000000000..db10fd02096c19634851fc3dc26b9243dd28accf --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/disasterRecoveryDrill.vue @@ -0,0 +1,422 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStatus/drStatus.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/drStatus.vue new file mode 100644 index 0000000000000000000000000000000000000000..5016746c8026032eb622a0e08d1f8022d04a26b6 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/drStatus.vue @@ -0,0 +1,756 @@ + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStatus/mainSiteRecover.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/mainSiteRecover.vue new file mode 100644 index 0000000000000000000000000000000000000000..2c746615d97216f80b2a0ebe28dd3d5d45571faf --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/mainSiteRecover.vue @@ -0,0 +1,322 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStatus/moveBackToThePrimary.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/moveBackToThePrimary.vue new file mode 100644 index 0000000000000000000000000000000000000000..5df42a101541ec5325405154a985d30405f6eef4 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/moveBackToThePrimary.vue @@ -0,0 +1,154 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStatus/recoverModel.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/recoverModel.vue new file mode 100644 index 0000000000000000000000000000000000000000..718e6e8ba953e154dafe375faaa3b7116cb18ec9 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/recoverModel.vue @@ -0,0 +1,382 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStatus/sleaverSiteRecovery.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/sleaverSiteRecovery.vue new file mode 100644 index 0000000000000000000000000000000000000000..d24e35478d9309228c6938d9105fe317511c59af --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStatus/sleaverSiteRecovery.vue @@ -0,0 +1,441 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/chooseLocation.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/chooseLocation.vue new file mode 100644 index 0000000000000000000000000000000000000000..e00080c2d2448364c9b8f6fe44f3a7bade61870f --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/chooseLocation.vue @@ -0,0 +1,257 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/choosenVmBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/choosenVmBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..5a8f6fb8f4e261e70cb53889e81f401929608285 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/choosenVmBox.vue @@ -0,0 +1,512 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/drStrategy.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/drStrategy.vue new file mode 100644 index 0000000000000000000000000000000000000000..2ed8709806cc2bc511b2e83346f24ca0c33561f1 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/drStrategy.vue @@ -0,0 +1,588 @@ + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/drStrategyInfor.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/drStrategyInfor.vue new file mode 100644 index 0000000000000000000000000000000000000000..2c58839ccbdd2b735247b8eebac764d86bd613ad --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/drStrategyInfor.vue @@ -0,0 +1,1212 @@ + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/vmBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/vmBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..bd41bd27758270ffe906f87730679aab9450c336 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/drStrategy/vmBox.vue @@ -0,0 +1,107 @@ + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/index.vue b/src/views/reliableCenter/remoteDisasterRecovery/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..5ea36180425316cd552c33c9a82e660c0cf8f8c5 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/index.vue @@ -0,0 +1,71 @@ + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/addLinkBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/addLinkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..38f7952e011d78dc4ef922b05e9df52460327a35 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/addLinkBox.vue @@ -0,0 +1,426 @@ + + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/editLinkBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/editLinkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..fedb76398c69f6bb18a716d906197ba46333647b --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/editLinkBox.vue @@ -0,0 +1,484 @@ + + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/index.vue b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..e983fabc66f89dfb49e296adde4ccead6a199360 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/index.vue @@ -0,0 +1,274 @@ + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/testLinkBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/testLinkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..e758f90e7355b13f6f324aa27b48e288417dda25 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/linkManagement/testLinkBox.vue @@ -0,0 +1,209 @@ + + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/secSiteDisaterRecoverData/secSiteDisaterRecoverData.vue b/src/views/reliableCenter/remoteDisasterRecovery/secSiteDisaterRecoverData/secSiteDisaterRecoverData.vue new file mode 100644 index 0000000000000000000000000000000000000000..2ee7fc8c5fb415a6492510a11994ad6dc881ee0d --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/secSiteDisaterRecoverData/secSiteDisaterRecoverData.vue @@ -0,0 +1,59 @@ + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/siteManagement/addSiteBox.vue b/src/views/reliableCenter/remoteDisasterRecovery/siteManagement/addSiteBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..e9f186d63325fd1d581cb71203a15789ac107c2a --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/siteManagement/addSiteBox.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/reliableCenter/remoteDisasterRecovery/siteManagement/siteManagement.vue b/src/views/reliableCenter/remoteDisasterRecovery/siteManagement/siteManagement.vue new file mode 100644 index 0000000000000000000000000000000000000000..bfcfc55be5ecb55d0e6885070c4c71e9da45e4e9 --- /dev/null +++ b/src/views/reliableCenter/remoteDisasterRecovery/siteManagement/siteManagement.vue @@ -0,0 +1,192 @@ + + + diff --git a/src/views/resource/availabilityZone/createEditModal/createEditBox.vue b/src/views/resource/availabilityZone/createEditModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..0e54ca38122bf494055344285b848ca461973bea --- /dev/null +++ b/src/views/resource/availabilityZone/createEditModal/createEditBox.vue @@ -0,0 +1,606 @@ + + + + diff --git a/src/views/resource/availabilityZone/createEditModal/createEditModal.vue b/src/views/resource/availabilityZone/createEditModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/availabilityZone/createEditModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/availabilityZone/detail.vue b/src/views/resource/availabilityZone/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..bbdb1eab14da0b9035a0754d196bc3acb65dd2b2 --- /dev/null +++ b/src/views/resource/availabilityZone/detail.vue @@ -0,0 +1,68 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/availabilityZone/detailPage/clusterSummary.vue b/src/views/resource/availabilityZone/detailPage/clusterSummary.vue new file mode 100644 index 0000000000000000000000000000000000000000..6389a197a87a821b8307f7d520f6b6f55da032a8 --- /dev/null +++ b/src/views/resource/availabilityZone/detailPage/clusterSummary.vue @@ -0,0 +1,543 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/availabilityZone/detailPage/detailStorage.vue b/src/views/resource/availabilityZone/detailPage/detailStorage.vue new file mode 100644 index 0000000000000000000000000000000000000000..1cfef6c1eca6d6c1827dedb303a27d5e1667632d --- /dev/null +++ b/src/views/resource/availabilityZone/detailPage/detailStorage.vue @@ -0,0 +1,177 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/availabilityZone/detailPage/pagePhysicalHost.vue b/src/views/resource/availabilityZone/detailPage/pagePhysicalHost.vue new file mode 100644 index 0000000000000000000000000000000000000000..7bec35344ba8a3cdd80170455d2adfcb122c255d --- /dev/null +++ b/src/views/resource/availabilityZone/detailPage/pagePhysicalHost.vue @@ -0,0 +1,229 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/availabilityZone/header-bar.vue b/src/views/resource/availabilityZone/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..e08cc1113d9ca3867d5136b071d30da2c81ead24 --- /dev/null +++ b/src/views/resource/availabilityZone/header-bar.vue @@ -0,0 +1,51 @@ + + + + + diff --git a/src/views/resource/availabilityZone/index.vue b/src/views/resource/availabilityZone/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..67b7a999c4662978c456923cbc8f7add20a05aec --- /dev/null +++ b/src/views/resource/availabilityZone/index.vue @@ -0,0 +1,314 @@ + + + diff --git a/src/views/resource/components/selectNetSpecList/selectNetSpecList.vue b/src/views/resource/components/selectNetSpecList/selectNetSpecList.vue new file mode 100644 index 0000000000000000000000000000000000000000..b054c03400a25d1e83dfb56e255e352c93505219 --- /dev/null +++ b/src/views/resource/components/selectNetSpecList/selectNetSpecList.vue @@ -0,0 +1,147 @@ + + + + diff --git a/src/views/resource/components/statuscell/index.vue b/src/views/resource/components/statuscell/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..6112e1891e8e3b98c12ba8ce2563239126fefee6 --- /dev/null +++ b/src/views/resource/components/statuscell/index.vue @@ -0,0 +1,117 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/detail-disk.vue b/src/views/resource/ecs/components/detail/detail-disk.vue new file mode 100644 index 0000000000000000000000000000000000000000..e11733b665d526d2e21ea75a6ffd94a01f1362cf --- /dev/null +++ b/src/views/resource/ecs/components/detail/detail-disk.vue @@ -0,0 +1,113 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/detail-log.vue b/src/views/resource/ecs/components/detail/detail-log.vue new file mode 100644 index 0000000000000000000000000000000000000000..1bc031a70ac34c7f7445245980e4eaf2e7bf1250 --- /dev/null +++ b/src/views/resource/ecs/components/detail/detail-log.vue @@ -0,0 +1,158 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/detail-monitor.vue b/src/views/resource/ecs/components/detail/detail-monitor.vue new file mode 100644 index 0000000000000000000000000000000000000000..0460dfc6fab2e89453a4308c7e4b49a9ac606b8a --- /dev/null +++ b/src/views/resource/ecs/components/detail/detail-monitor.vue @@ -0,0 +1,206 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/detail-network.vue b/src/views/resource/ecs/components/detail/detail-network.vue new file mode 100644 index 0000000000000000000000000000000000000000..00b1507d20dccb892e1a4bb9d1800d97d20beb16 --- /dev/null +++ b/src/views/resource/ecs/components/detail/detail-network.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/detail-summary.vue b/src/views/resource/ecs/components/detail/detail-summary.vue new file mode 100644 index 0000000000000000000000000000000000000000..a6b3e12eddccaaaaccbc73d598f29b8c24ff3f1f --- /dev/null +++ b/src/views/resource/ecs/components/detail/detail-summary.vue @@ -0,0 +1,360 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/header-bar.vue b/src/views/resource/ecs/components/detail/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..79395d334fd98f819653f540fa4f70fb52f9d084 --- /dev/null +++ b/src/views/resource/ecs/components/detail/header-bar.vue @@ -0,0 +1,140 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/index.js b/src/views/resource/ecs/components/detail/index.js new file mode 100644 index 0000000000000000000000000000000000000000..73b7ea376d412792c9204ce9eebe4081165168ec --- /dev/null +++ b/src/views/resource/ecs/components/detail/index.js @@ -0,0 +1,5 @@ +export { default as detailSummary } from './detail-summary' +export { default as detailNetwork } from './detail-network.vue' +export { default as detailDisk } from './detail-disk.vue' +export { default as detailMonitor } from './detail-monitor' +export { default as detailLog } from './detail-log' diff --git a/src/views/resource/ecs/components/detail/index.vue b/src/views/resource/ecs/components/detail/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..8eb0dc4833b67bc42cbaa9f1eb5419e4e29bcdfb --- /dev/null +++ b/src/views/resource/ecs/components/detail/index.vue @@ -0,0 +1,338 @@ + + + + + diff --git a/src/views/resource/ecs/components/detail/serverI18nMap.js b/src/views/resource/ecs/components/detail/serverI18nMap.js new file mode 100644 index 0000000000000000000000000000000000000000..c4e461483496f99c885e61a85f1ab2f0e44695ce --- /dev/null +++ b/src/views/resource/ecs/components/detail/serverI18nMap.js @@ -0,0 +1,149 @@ + +let serveri18nMap = { + serverVirtaulTaskGrid_type: 'ksvd.task.head.type', + serverVirtaulTaskGrid_createTime: 'ksvd.task.head.create_time', + serverVirtaulTaskGrid_startTime: 'ksvd.task.head.start_time', + serverVirtaulTaskGrid_finishTime: 'ksvd.task.head.finish_time', + serverVirtaulTaskGrid_action: 'ksvd.task.head.action', + serverVirtaulTaskGrid_objName: 'ksvd.task.head.objName', + serverVirtaulTaskGrid_operUser: 'ksvd.task.head.operUser', + serverVirtaulTaskGrid_status: 'ksvd.task.head.status', + serverVirtaulTaskGrid_reason: 'ksvd.task.head.reason', + serverVirtaulTaskGrid_detail: 'ksvd.task.head.detail', + showAllTask: 'serverVirutal.deskTop.showAllTask', + allStatus: 'serverVirutal.deskTop.allStatus', + doingStatus: 'serverVirutal.deskTop.doingStatus', + failStatus: 'serverVirutal.deskTop.failStatus', + successStatus: 'serverVirutal.deskTop.successStatus', + completeStatus: 'serverVirutal.deskTop.completeStatus', + taskProgress: 'serverVirutal.deskTop.taskProgress', + + servervirtualEdit: 'ksvd.task.action.servervirtual_servervirtauledit', + serverVirtaulHostMigrate: 'ksvd.task.action.servervirtual_servervirtaulhostmigrate', + serverVirtaulHostStorageMigrate: 'ksvd.task.action.servervirtual_servervirtaulhoststoragemigrate', + servervirtualVolMigrate: 'ksvd.task.action.servervirtual_servervirtualmigrate', + servervirtualForceReboot: 'serverVirtualizationService.ForceReboot', + servervirtualReboot: 'serverVirtualizationService.Reboot', + servervirtualPowerOn: 'serverVirtualizationService.PowerOn', + servervirtualShutDown: 'serverVirtualizationService.ShutDown', + servervirtualResume: 'serverVirtualizationService.Resume', + servervirtualPause: 'serverVirtualizationService.Suspend', + servervirtualForceShutDown: 'serverVirtualizationService.ForceShutDown', + servervirtualDelete: 'serverVirtualizationService.HardDelete', + servervirtualDeleteSoft: 'serverVirtualizationService.DeleteSoft', + servervirtualClone: 'serverVirtualizationService.fullClone', + servervirtualCloneLink: 'serverVirtualizationService.linkClone', + servervirtualCreate: 'serverVirtualizationService.createVirtualService', + servervirtualCreateByTemplate: 'serverVirtualizationService.createVirtualServiceByTemplate', + servervirtualExport: 'serverVirtualizationService.setVmExport', + servervirtualImport: 'serverVirtualizationService.importTemplateImage', + servervirtualCreateServerSnap: 'server.vm.snapshot.create.memSnapshot', + servervirtualCreateNoMemServerSnap: 'server.vm.snapshot.create.noMemSnapshot', + servervirtualSnapshotDelete: 'ksvd.task.action.servervirtual_servervirtualdeletesnapshot', + servervirtualSnapshotApply: 'ksvd.task.action.servervirtual_servervirtualapplysnapshot', + servervirtualBatchApply: 'ksvd.task.action.servervirtual_serverbatchvirtualapplysnapshot', + servervirtualBatchCreateSnap: 'ksvd.task.action.servervirtual_serverbatchvirtualcreatesnapshot', + servervirtualCreateBackUp: 'ksvd.task.action.servervirtual_servervirtaulbackup', + servervirtualRecoverBackUp: 'ksvd.task.action.servervirtual_servervirtaulrecoverbackup', + servervirtualDeleteBackUp: 'ksvd.task.action.servervirtual_servervirtauldeletebackup', + servervirtualDiskCopy: 'ksvd.task.action.servervirtual_servervirtauldiskcopy', + + aliasName: 'serverVirtualizationService.edit.vmName', + description: 'serverVirtualizationService.Description', + selectCluster: 'serverVirtualizationService.Cluster', + vcpuSocket: 'serverVirtualizationService.edit.vcpuSocket', + vcpuCores: 'serverVirtualizationService.edit.vcpuCores', + cpuMode: 'serverVirtualizationService.edit.cpuMode', + schedulingPriority: 'serverVirtualizationService.cpu.schedulingPriority', + cpuLimit: 'serverVirtualizationService.cpu.limit', + + numaConfig: 'serverVirtualizationService.edit.numaConfig', + memory: 'serverVirtualizationService.edit.memory', + memoryHugeConfig: 'serverVirtualizationService.edit.memoryHugeConfig', + memoryBubbleConfig: 'serverVirtualizationService.memory.recovery', + + addDisk: 'serverVirtualizationService.edit.addDisk', + delDisk: 'serverVirtualizationService.edit.delDisk', + diskCapacity: 'serverVirtualizationService.Disk', + targetBus: 'serverVirtualizationService.DiskType', + cacheType: 'serverVirtualizationService.edit.cacheMode', + provisionType: 'serverVirtualizationService.edit.provisionType', + readIOLimit: 'serverVirtualizationService.edit.disk.ioRange', + writeIOLimit: 'serverVirtualizationService.edit.disk.ioRange', + readIOPSLimit: 'serverVirtualizationService.edit.disk.iopsRange', + writeIOPSLimit: 'serverVirtualizationService.edit.disk.iopsRange', + + addInterface: 'serverVirtualizationService.edit.addInterface', + delInterface: 'serverVirtualizationService.edit.delInterface', + interfaceType: 'serverVirtualizationService.InterfaceType', + modeltype: 'serverVirtualizationService.edit.NetworkCardType', + poolName: 'serverVirtualizationService.edit.macAddressPool', + virtualSwitch: 'serverVirtualizationService.edit.virtualSwitch', + portGroup: 'serverVirtualizationService.edit.portGroup', + ipAddress: 'serverVirtualizationService.edit.ipAddress', + mac: 'serverVirtualizationService.edit.macAddress', + queueCount: 'serverVirtualizationService.queueCount', + mtuCount: 'serverVirtualizationService.mtuCount', + hotDrawing: 'serverVirtualizationService.hotDrawing', + + addIso: 'serverVirtualizationService.edit.addIso', + delIso: 'serverVirtualizationService.edit.delIso', + sourceFile: 'serverVirtualizationService.edit.imageFile', + + editDisk: 'serverVirtualizationService.edit.editDisk', + editInterface: 'serverVirtualizationService.edit.editInterface', + editIso: 'serverVirtualizationService.edit.editIso', + editUsb: 'serverVirtualizationService.edit.editUsb', + + graphicsCard: 'serverVirtualizationService.edit.graphicsCardType', + mouseType: 'serverVirtualizationService.edit.mouseType', + biosSwitch: 'serverVirtualizationService.edit.bios', + biosFile: 'serverVirtualizationService.edit.biosFile', + biosWaitTime: 'serverVirtualizationService.edit.biosWaitTime', + + addUsb: 'serverVirtualizationService.edit.addUsb', + delUsb: 'serverVirtualizationService.edit.delUsb', + hostId: 'serverVirtualizationService.edit.usbHost', + usbId: 'serverVirtualizationService.edit.vmUsb', + + vmBluescreen: 'serverVirtualizationService.edit.vmHA', + uniqbVmHA: 'serverVirtualizationService.edit.hostHA', + enableCpuDynamic: 'serverVirutal.dynamicPolicy.enableCpuDynamic', + enableMemDynamic: 'serverVirutal.dynamicPolicy.enableMemDynamic', + aotuMigrateSwitch: 'serverVirtualizationService.drs.aotuMigrateSwitch', + followHostStartAuto: 'serverVirtualizationService.edit.followHostStartAuto', + bootOrder: 'serverVirtualizationService.edit.bootOrder', + remoteOpen: 'serverVirtualizationService.edit.remoteOpen', + remotePassword: 'serverVirtualizationService.edit.remotePassword', + wholeness: 'serverVirtualizationService.wholeness', + existedTime: 'serverVirtualizationService.edit.existedTime', + noTime: 'serverVirtualizationService.edit.noTime', + customizeTime: 'serverVirtualizationService.edit.customizeTime', + + //values + HOST_PASSTHROUGH: 'serverVirtualizationService.edit.host-passthrough', + HOST_MODEL: 'serverVirtualizationService.edit.host-model', + CUSTOM: 'serverVirtualizationService.edit.custom', + schedulingPriorityLow: 'serverVirtualizationService.cpu.schedulingPriorityLow', + schedulingPriorityMiddle: 'serverVirtualizationService.cpu.schedulingPriorityMiddle', + schedulingPriorityHigh: 'serverVirtualizationService.cpu.schedulingPriorityHigh', + + graphicsCardQXL: 'serverVirtualizationService.edit.graphicsCardQXL', + graphicsCardVGA: 'serverVirtualizationService.edit.graphicsCardVGA', + graphicsCardCirrus: 'serverVirtualizationService.edit.graphicsCardCirrus', + virtio: 'serverVirtualizationService.edit.virtio', + + legacy: 'server.virtual.edit.machine.bios.type.legacy', + uefi: 'server.virtual.edit.machine.bios.type.uefi', + userUpload: 'server.virtual.edit.machine.bios.type.userUpload', + + noConfig: 'serverVirtualizationService.noConfig', + reOpen: 'serverVirtualizationService.reOpen', + byOther: 'serverVirtualizationService.byOther', + + close: 'serverVirtualizationService.close', + open: 'serverVirtualizationService.open', +} +export { + serveri18nMap +} \ No newline at end of file diff --git a/src/views/resource/ecs/components/detail/taskDetailInfo.js b/src/views/resource/ecs/components/detail/taskDetailInfo.js new file mode 100644 index 0000000000000000000000000000000000000000..fb99a6db01f8cfecac73fa2aa5668703188193ad --- /dev/null +++ b/src/views/resource/ecs/components/detail/taskDetailInfo.js @@ -0,0 +1,960 @@ +/** + * Created by kylin-ksvd on 21-10-25. + */ + +/* + * Declare our namespace + */ +import $ from 'jquery' //在需要使用的页面中 +import { serveri18nMap } from './serverI18nMap' +import i18n from '@/assets/common/lang/index' // 国际化 + +let KSVD +if (typeof KSVD == 'undefined') { + KSVD = {}; +} + +KSVD.i18n = new Object(); + + + +KSVD.updatei18nMap = function (newi18nMap) { + for (let key in newi18nMap) { + let mapKey = newi18nMap[key] + // KSVD.i18n[key] = newi18nMap[key]; + KSVD.i18n[key] = i18n.t(mapKey) + } +} +KSVD.updatei18nMap(serveri18nMap) + + +if (typeof KSVD.taskDetailInfo == 'undefined') { + KSVD.taskDetailInfo = {}; +} + + + +//数据初始化 +KSVD.taskDetailInfo.init = function (vmName, detailInfo) { + //操作对应关系 + var operData = { + "servervirtualEdit": KSVD.i18n.servervirtualEdit, + "serverVirtaulHostMigrate": KSVD.i18n.serverVirtaulHostMigrate, + "servervirtualVolMigrate": KSVD.i18n.servervirtualVolMigrate, + "servervirtualForceReboot": KSVD.i18n.servervirtualForceReboot, + "servervirtualReboot": KSVD.i18n.servervirtualReboot, + "servervirtualPowerOn": KSVD.i18n.servervirtualPowerOn, + "servervirtualShutDown": KSVD.i18n.servervirtualShutDown, + "servervirtualResume": KSVD.i18n.servervirtualResume, + "servervirtualPause": KSVD.i18n.servervirtualPause, + "servervirtualForceShutDown": KSVD.i18n.servervirtualForceShutDown, + "servervirtualDelete": KSVD.i18n.servervirtualDelete, + "servervirtualDeleteSoft": KSVD.i18n.servervirtualDeleteSoft, + "servervirtualClone": KSVD.i18n.servervirtualClone, + "servervirtualCloneLink": KSVD.i18n.servervirtualCloneLink, + "servervirtualCreate": KSVD.i18n.servervirtualCreate, + "servervirtualCreateByTemplate": KSVD.i18n.servervirtualCreateByTemplate, + "servervirtualExport": KSVD.i18n.servervirtualExport, + "servervirtualImport": KSVD.i18n.servervirtualImport, + "servervirtualCreateServerSnap": KSVD.i18n.servervirtualCreateServerSnap, + "servervirtualCreateNoMemServerSnap": KSVD.i18n.servervirtualCreateNoMemServerSnap, + "servervirtualSnapshotDelete": KSVD.i18n.servervirtualSnapshotDelete, + "servervirtualSnapshotApply": KSVD.i18n.servervirtualSnapshotApply, + "servervirtualBatchApply": KSVD.i18n.servervirtualBatchApply, + "servervirtualBatchCreateSnap": KSVD.i18n.servervirtualBatchCreateSnap, + "servervirtualCreateBackUp": KSVD.i18n.servervirtualCreateBackUp, + "servervirtualDeleteBackUp": KSVD.i18n.servervirtualDeleteBackUp, + "servervirtualRecoverBackUp": KSVD.i18n.servervirtualRecoverBackUp, + "servervirtualDiskCopy": KSVD.i18n.servervirtualDiskCopy, + "serverVirtaulHostStorageMigrate": KSVD.i18n.serverVirtaulHostStorageMigrate, + + }; + //编辑设备的添加删除对应关系 + var deviceData = { + "addIso": KSVD.i18n.addIso, + "delIso": KSVD.i18n.delIso, + "addInterface": KSVD.i18n.addInterface, + "delInterface": KSVD.i18n.delInterface, + "delDisk": KSVD.i18n.delDisk, + "addDisk": KSVD.i18n.addDisk, + "addUsb": KSVD.i18n.addUsb, + "delUsb": KSVD.i18n.delUsb, + + "editDisk": KSVD.i18n.editDisk, + "editInterface": KSVD.i18n.editInterface, + "editIso": KSVD.i18n.editIso, + "editUsb": KSVD.i18n.editUsb, + }; + //操作与属性的对应关系 + var initData = { + "servervirtualEdit": { + "addIso": KSVD.i18n.addIso, + "delIso": KSVD.i18n.delIso, + "addInterface": KSVD.i18n.addInterface, + "delInterface": KSVD.i18n.delInterface, + "delDisk": KSVD.i18n.delDisk, + "addDisk": KSVD.i18n.addDisk, + "addUsb": KSVD.i18n.addUsb, + "delUsb": KSVD.i18n.delUsb, + + "aliasName": KSVD.i18n.aliasName, + "selectCluster": KSVD.i18n.aliasName, + "description": KSVD.i18n.description, + "selectCluster": KSVD.i18n.selectCluster, + + "vcpuSocket": KSVD.i18n.vcpuSocket, + "vcpuCores": KSVD.i18n.vcpuCores, + "cpuMode": { + name: KSVD.i18n.cpuMode, + values: { + 'CUSTOM': KSVD.i18n.CUSTOM, + 'HOST_MODEL': KSVD.i18n.HOST_MODEL, + 'HOST_PASSTHROUGH': KSVD.i18n.HOST_PASSTHROUGH, + } + }, + "schedulingPriority": { + name: KSVD.i18n.schedulingPriority, + values: { + '1': KSVD.i18n.schedulingPriorityLow, + '2': KSVD.i18n.schedulingPriorityMiddle, + '3': KSVD.i18n.schedulingPriorityHigh, + } + }, + + "cpuLimit": KSVD.i18n.cpuLimit, + "numaConfig": { + name: KSVD.i18n.numaConfig, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "memory": KSVD.i18n.memory, + "memoryHugeConfig": { + name: KSVD.i18n.memoryHugeConfig, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + + + "memoryBubbleConfig": { + name: KSVD.i18n.memoryBubbleConfig, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + //磁盘属性对应关系 + "diskCapacity": KSVD.i18n.diskCapacity, + "targetBus": KSVD.i18n.targetBus, + "cacheType": KSVD.i18n.cacheType, + "provisionType": KSVD.i18n.provisionType, + "readIOLimit": KSVD.i18n.readIOLimit, + "writeIOLimit": KSVD.i18n.writeIOLimit, + "readIOPSLimit": KSVD.i18n.readIOPSLimit, + "writeIOPSLimit": KSVD.i18n.writeIOPSLimit, + //网卡属性对应关系 + "interfaceType": KSVD.i18n.interfaceType, + "modeltype": KSVD.i18n.modeltype, + "poolName": KSVD.i18n.poolName, + "virtualSwitch": KSVD.i18n.virtualSwitch, + "portGroup": KSVD.i18n.portGroup, + "ipAddress": KSVD.i18n.ipAddress, + "mac": KSVD.i18n.mac, + "queueCount": KSVD.i18n.queueCount, + "mtuCount": KSVD.i18n.mtuCount, + "hotDrawing": { + name: KSVD.i18n.hotDrawing, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + //光驱属性对应关系 + "sourceFile": KSVD.i18n.sourceFile, + //其他设备属性对应关系 + "graphicsCard": { + name: KSVD.i18n.graphicsCard, + values: { + 'qxl': KSVD.i18n.graphicsCardQXL, + 'vga': KSVD.i18n.graphicsCardVGA, + 'cirrus': KSVD.i18n.graphicsCardCirrus, + 'virtio': KSVD.i18n.virtio, + } + }, + "mouseType": KSVD.i18n.mouseType, + "biosSwitch": { + name: KSVD.i18n.biosSwitch, + values: { + '3': KSVD.i18n.legacy, + '2': KSVD.i18n.uefi, + '1': KSVD.i18n.userUpload, + } + }, + "biosFile": KSVD.i18n.biosFile, + "biosWaitTime": KSVD.i18n.biosWaitTime, + //usb属性对应关系 + "hostId": KSVD.i18n.hostId, + "usbId": KSVD.i18n.usbId, + //高级配置属性对应关系 + "vmBluescreen": { + name: KSVD.i18n.vmBluescreen, + values: { + '0': KSVD.i18n.noConfig, + '1': KSVD.i18n.reOpen, + '2': KSVD.i18n.byOther, + } + }, + "uniqbVmHA": { + name: KSVD.i18n.uniqbVmHA, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "enableCpuDynamic": { + name: KSVD.i18n.enableCpuDynamic, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "enableMemDynamic": { + name: KSVD.i18n.enableMemDynamic, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "aotuMigrateSwitch": { + name: KSVD.i18n.aotuMigrateSwitch, + values: { + '0': KSVD.i18n.close, + '1': KSVD.i18n.open, + } + }, + "followHostStartAuto": { + name: KSVD.i18n.followHostStartAuto, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "bootOrder": { + name: KSVD.i18n.bootOrder, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "remoteOpen": { + name: KSVD.i18n.remoteOpen, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "remotePassword": KSVD.i18n.remotePassword, + "wholeness": { + name: KSVD.i18n.wholeness, + values: { + '0': 'false', + '1': 'true', + 'false': 'false', + 'true': 'true', + + } + }, + "existedTime": { + name: KSVD.i18n.existedTime, + values: { + 'noTime': KSVD.i18n.noTime, + 'customize': KSVD.i18n.customizeTime, + + } + }, + + + }, + "serverVirtaulHostMigrate": {}, + "serverVirtaulHostStorageMigrate": {}, + "servervirtualVolMigrate": {}, + "servervirtualForceReboot": {}, + "servervirtualReboot": {}, + "servervirtualPowerOn": {}, + "servervirtualShutDown": {}, + "servervirtualResume": {}, + "servervirtualForceShutDown": {}, + "servervirtualDelete": {}, + "servervirtualDeleteSoft": {}, + "servervirtualClone": {}, + "servervirtualCloneLink": {}, + "servervirtualCreate": {}, + "servervirtualCreateByTemplate": {}, + "servervirtualExport": {}, + "servervirtualImport": {}, + "servervirtualCreateServerSnap": {}, + "servervirtualSnapshotDelete": {}, + "servervirtualSnapshotApply": {}, + + "servervirtualCreateNoMemServerSnap": {}, + + "servervirtualBatchApply": {}, + "servervirtualBatchCreateSnap": {}, + "servervirtualCreateBackUp": {}, + "servervirtualDeleteBackUp": {}, + "servervirtualRecoverBackUp": {}, + "servervirtualDiskCopy": {}, + + }; + return KSVD.taskDetailInfo.detailJsonParse(vmName, detailInfo, operData, deviceData, initData); +} + +//任务中心详情的解析显示 +KSVD.taskDetailInfo.detailJsonParse = function (vmName, detailInfo, operData, deviceData, initData) { + if (!detailInfo) { + return ''; + } + + if (!KSVD.taskDetailInfo.isJSON(detailInfo)) { + return detailInfo; + } + var _obj = JSON.parse(detailInfo); + //操作类型 + var _objKey = Object.keys(_obj)[0]; + //操作明细 + var _objVal = _obj[_objKey]; + //操作类型名称 + var operName = operData[_objKey]; + var result = []; + //任务详情解释 + $.each(_objVal, function (index, ele) { + var properInfo = initData[_objKey][ele.enName]; + //属性单位对应关系 + var preUnit = (ele.preUnit) ? ele.preUnit : ''; + var nowUnit = (ele.nowUnit) ? ele.nowUnit : ''; + //修改的设备以及索引关系解析 测盘 光驱等 + var preInfo = ''; + if (ele.preName) { + var device = ele.preName.replace(/\d/g, ''); + var deviceIndex = ele.preName.replace(/\D/g, ''); + preInfo = deviceData[device] + deviceIndex; + } + //修改的属性关系解析 + var preValue = (ele.preValue || ele.preValue == false || ele.preValue == 0) ? ele.preValue : ''; + var nowValue = (ele.nowValue || ele.nowValue == false || ele.nowValue == 0) ? ele.nowValue : ''; + if (KSVD.taskDetailInfo.isJSON(properInfo)) { + preValue = (properInfo["values"][preValue] || properInfo["values"][preValue] == false || properInfo["values"][preValue] == 0) ? properInfo["values"][preValue] : ''; + nowValue = (properInfo["values"][nowValue] || properInfo["values"][nowValue] == false || properInfo["values"][nowValue] == 0) ? properInfo["values"][nowValue] : ''; + properInfo = properInfo["name"]; + } + var isEditDevice = deviceData[ele.enName]; + var temp = ''; + //没有目的的修改关系解析 + if (isEditDevice) { + temp += '[' + properInfo + ']'; + } else { + //用于匹配operType:[objName]的格式 必须包含objName + if (ele.objName) { + temp += '[' + ele.objName + ']'; + } else { + temp += '[' + preInfo + (properInfo ? properInfo + ':' : '') + preValue + preUnit + '->' + nowValue + nowUnit + ']'; + } + + } + result.push(temp); + }); + + var detailMess = (result.length > 0) ? result.join('、') : '[' + vmName + ']'; + return operName + ':' + detailMess; +} +//除去编辑的其他任务生成任务中心详情 +KSVD.taskDetailInfo.taskDetailForOthers = function (operType, preData, nowData, objName) { + var tempData = [{ "preValue": preData, "nowValue": nowData, "enName": "", "objName": objName ? objName : '' }]; + var result = []; + //发生变动的属性对应关系 + $.each(tempData, function (index, ele) { + if (ele.preValue != ele.nowValue) { + result.push(ele); + } + }); + var taskDetail = {}; + taskDetail[operType] = result; + return JSON.stringify(taskDetail); +} +//编辑云服务器生成改动的内容 +KSVD.taskDetailInfo.taskDetailNativeInfo = function (operType, preData, nowData) { + //修改前的内容 + var pMachine = preData.machine; + var pvcpuSocket = preData.cpu.vcpuSocket; + var pvcpuCores = preData.cpu.vcpuCores; + var pcpuMode = preData.cpu.cpuMode.name; + var pschedulingPriority = preData.cpu.schedulingPriority; + var pcpuLimit = preData.cpu.limit ? preData.cpu.limit : ''; + var pcpuNuma = preData.cpu.cpuNuma; + var pmemory = preData.machine.memory; + var pmemHugePage = preData.machine.memHugePage; + var pmemoryBubbleConfig = preData.machine.memBalloon; + var diskArr = []; + var iosObjArr = []; + var interfaceArr = preData.interfaces ? preData.interfaces : []; + var usbsArr = preData['usbs'] ? preData['usbs'] : []; + for (var i = 0; i < preData.disks.length; i++) { + if (preData.disks[i].device == 'cdrom') { + iosObjArr.push(preData.disks[i]) + } else { + diskArr.push(preData.disks[i]); + } + } + var pgraphicsCard = preData.graphicsCard; + var pmouseType = preData.mouse; + var pbiosWaitTime = preData.bios ? preData.bios.biosWaitTime : ''; + var pbiosFile = preData.bios ? preData.bios.biosFile : ''; + if (pbiosFile == 'null') { + pbiosFile = ''; + } + + var pbiosSwitch = preData.bios ? preData.bios.biosSwitch : ''; + + var pvmBluescreen = preData.hapolicy.vmBluescreen; + var puniqbVmHa = preData.hapolicy.uniqbVmHa; + var pcpuThresholdFlag = preData.dynamicModel ? preData.dynamicModel.cpuThresholdFlag : ''; + var pmemThresholdFlag = preData.dynamicModel ? preData.dynamicModel.memThresholdFlag : ''; + var pautoMigrate = preData.autoMigrate; + + var pisOpenRemote = preData.vnc ? preData.vnc.isOpenRemote : ''; + var premotePassword = preData.vnc ? preData.vnc.remotePassword : ''; + var pwholeness = preData.wholeness; + var pserverRecyleSwitch = preData.serverRecyleSwitch; + var pselectCluster = pMachine.select_Cluster; + + //修改后的内容 + var nName = nowData.aliasName; + var nDescription = nowData.description; + var nvcpuSocket = nowData.vcpu_socket; + var nvcpuCores = nowData.vcpu_cores; + var ncpuMode = nowData.cpu_mode; + var nschedulingPriority = nowData.schedulingPriority; + var ncpuLimit = nowData.limit ? nowData.limit : ''; + var ncpuNuma = nowData.cpu_numa; + var nmemory = nowData.memory; + var nmemoryUnit = nowData.mem_unit; + var nmemHugePage = nowData.mem_hugePage; + var nmemoryBubbleConfig = nowData.mem_balloon; + var disksObj = JSON.parse(nowData.diskCapacity); + var iosObj = JSON.parse(nowData.isoSelect); + var interfaceObj = JSON.parse(nowData.interfaces); + var usbsObj = JSON.parse(nowData.usbList); + + var ngraphicsCard = nowData.graphicsCard; + var nmouseType = nowData.mouseType; + var nbiosWaitTime = nowData.biosWaitTime; + var nbiosFile = (nowData.biosFile && nowData.biosFile != 'null') ? nowData.biosFile : ''; + var nbiosSwitch = nowData.biosSwitch; + + var nvmBluescreen = nowData.vmBluescreen; + var nuniqbVmHa = nowData.uniqbVmHa; + var ncpuThresholdFlag = nowData.cpuThresholdFlag; + var nmemThresholdFlag = nowData.memThresholdFlag; + var nautoMigrate = nowData.autoMigrate; + var nisOpenRemote = nowData.isOpenRemote; + var nremotePassword = nowData.remotePassword; + + var nwholeness = nowData.wholeness; + var nserverRecyleSwitch = nowData.serverRecyleSwitch; + var nselectCluster = nowData.select_Cluster; + //修改前后内容的映射关系 + var initData = [ + { + "preValue": pMachine.aliasName, + "nowValue": nName, + "enName": "aliasName", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pMachine.description, + "nowValue": nDescription, + "enName": "description", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pvcpuSocket, + "nowValue": nvcpuSocket, + "enName": "vcpuSocket", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pvcpuCores, + "nowValue": nvcpuCores, + "enName": "vcpuCores", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pcpuMode, + "nowValue": ncpuMode, + "enName": "cpuMode", + preUnit: "", + nowUnit: "", + }, + { + "preValue": pschedulingPriority, + "nowValue": nschedulingPriority, + "enName": "schedulingPriority", + preUnit: "", + nowUnit: "", + }, + { + "preValue": pcpuLimit, + "nowValue": ncpuLimit, + "enName": "cpuLimit", + preUnit: "", + nowUnit: "", + }, + { + "preValue": pcpuNuma, + "nowValue": ncpuNuma, + "enName": "numaConfig", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmemory, + "nowValue": nmemory, + "enName": "memory", + preUnit: pMachine.memUnit, + nowUnit: nmemoryUnit + }, + { + "preValue": pmemHugePage, + "nowValue": nmemHugePage, + "enName": "memoryHugeConfig", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmemoryBubbleConfig, + "nowValue": nmemoryBubbleConfig, + "enName": "memoryBubbleConfig", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pgraphicsCard, + "nowValue": ngraphicsCard, + "enName": "graphicsCard", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmouseType, + "nowValue": nmouseType, + "enName": "mouseType", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pbiosWaitTime, + "nowValue": nbiosWaitTime, + "enName": "biosWaitTime", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pbiosFile, + "nowValue": nbiosFile, + "enName": "biosFile", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pbiosSwitch, + "nowValue": nbiosSwitch, + "enName": "biosSwitch", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pvmBluescreen, + "nowValue": nvmBluescreen, + "enName": "vmBluescreen", + preUnit: "", + nowUnit: "" + }, + { + "preValue": puniqbVmHa, + "nowValue": nuniqbVmHa, + "enName": "uniqbVmHA", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pcpuThresholdFlag, + "nowValue": ncpuThresholdFlag, + "enName": "enableCpuDynamic", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pmemThresholdFlag, + "nowValue": nmemThresholdFlag, + "enName": "enableMemDynamic", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pautoMigrate, + "nowValue": nautoMigrate, + "enName": "aotuMigrateSwitch", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pisOpenRemote, + "nowValue": nisOpenRemote, + "enName": "remoteOpen", + preUnit: "", + nowUnit: "" + }, + { + "preValue": premotePassword, + "nowValue": nremotePassword, + "enName": "remotePassword", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pwholeness, + "nowValue": nwholeness, + "enName": "wholeness", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pserverRecyleSwitch, + "nowValue": nserverRecyleSwitch, + "enName": "existedTime", + preUnit: "", + nowUnit: "" + }, + { + "preValue": pselectCluster, + "nowValue": nselectCluster, + "enName": "selectCluster", + preUnit: "", + nowUnit: "" + }, + + + ]; + + //光驱和磁盘修改 + if (diskArr.length == disksObj.length) { + var delFlag = false; + for (var i = 0; i < diskArr.length; i++) { + if (disksObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + var preadIoUnit = diskArr[i].readIOLimitUnit ? diskArr[i].readIOLimitUnit : 0; + var nreadIoUnit = disksObj[i].readIOLimitUnit ? disksObj[i].readIOLimitUnit : 0; + + var pwriteIoUnit = diskArr[i].writeIOLimitUnit ? diskArr[i].writeIOLimitUnit : 0; + var nwriteIoUnit = disksObj[i].writeIOLimitUnit ? disksObj[i].writeIOLimitUnit : 0; + var ioUnit = ['KB/S', 'MB/S', 'GB/S']; + var jsonArr = [ + { + "preValue": diskArr[i].diskCapacity, + "nowValue": disksObj[i].diskCapacity, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "diskCapacity" + }, + { + "preValue": diskArr[i].targetBus, + "nowValue": disksObj[i].diskType, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "targetBus" + }, + { + "preValue": diskArr[i].cacheType, + "nowValue": disksObj[i].cacheType, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "cacheType" + }, + { + "preValue": diskArr[i].provisionType, + "nowValue": disksObj[i].provisionType, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "provisionType" + }, + { + "preValue": diskArr[i].readIOLimit, + "nowValue": disksObj[i].readIOLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "readIOLimit", + preUnit: ioUnit[preadIoUnit], + nowUnit: ioUnit[nreadIoUnit], + }, + { + "preValue": diskArr[i].writeIOLimit, + "nowValue": disksObj[i].writeIOLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "writeIOLimit", + preUnit: ioUnit[pwriteIoUnit], + nowUnit: ioUnit[nwriteIoUnit], + }, + { + "preValue": diskArr[i].readIOPSLimit, + "nowValue": disksObj[i].readIOPSLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "readIOPSLimit" + }, + { + "preValue": diskArr[i].writeIOPSLimit, + "nowValue": disksObj[i].writeIOPSLimit, + "preName": 'editDisk' + (i != 0 ? i : ''), + enName: "writeIOPSLimit" + } + ]; + + initData = initData.concat(jsonArr); + } + + } + //dele disk + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delDisk" }; + initData.push(jsonMap); + } + + } else { + if (disksObj.length > diskArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addDisk" }; + initData.push(jsonMap); + } + } + + //网卡修改 + if (interfaceArr.length == interfaceObj.length) { + var delFlag = false; + for (var i = 0; i < interfaceArr.length; i++) { + if (interfaceObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + + var jsonArr = [ + { + "preValue": (interfaceArr[i].interfaceType.name).toLowerCase(), + "nowValue": (interfaceObj[i].interfaceType).toLowerCase(), + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "interfaceType" + }, + { + "preValue": interfaceArr[i].modeltype, + "nowValue": interfaceObj[i].modeltype, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "modeltype" + }, + { + "preValue": interfaceArr[i].poolName, + "nowValue": interfaceObj[i].macAddress, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "poolName" + }, + { + "preValue": interfaceArr[i].virtualSwitch, + "nowValue": interfaceObj[i].virtualSwitch, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "virtualSwitch" + }, + { + "preValue": interfaceArr[i].portGroup, + "nowValue": interfaceObj[i].portGroup, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "portGroup" + }, + { + "preValue": interfaceArr[i].ip ? interfaceArr[i].ip : '', + "nowValue": interfaceObj[i].ip ? interfaceObj[i].ip : '', + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "ipAddress" + }, + { + "preValue": interfaceArr[i].mac ? interfaceArr[i].mac : '', + "nowValue": interfaceObj[i].mac ? interfaceObj[i].mac : '', + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "mac" + }, + + { + "preValue": interfaceArr[i].queueCount, + "nowValue": interfaceObj[i].queueCount, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "queueCount" + }, + { + "preValue": interfaceArr[i].mtuCount, + "nowValue": interfaceObj[i].mtuCount, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "mtuCount" + }, + { + "preValue": interfaceArr[i].hotDrawing, + "nowValue": interfaceObj[i].hotDrawing, + "preName": 'editInterface' + (i != 0 ? i : ''), + enName: "hotDrawing" + }, + ]; + + initData = initData.concat(jsonArr); + } + + + } + //dele interface + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delInterface" }; + initData.push(jsonMap); + } + } else { + if (interfaceObj.length > interfaceArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addInterface" }; + initData.push(jsonMap); + } + } + //光驱性对应关系 + if (iosObjArr.length == iosObj.length) { + var delFlag = false; + for (var i = 0; i < iosObjArr.length; i++) { + if (iosObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + + + var jsonArr = [ + { + "preValue": iosObjArr[i].sourceFile ? iosObjArr[i].sourceFile : '', + "nowValue": iosObj[i].isoSelect ? iosObj[i].isoSelect : '', + "preName": 'editIso' + (i != 0 ? i : ''), + "enName": "sourceFile" + }, + ]; + initData = initData.concat(jsonArr); + } + } + //dele iso + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delIso" }; + initData.push(jsonMap); + } + } else { + if (iosObj.length > iosObjArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addIso" }; + initData.push(jsonMap); + } + + } + //usbs + if (usbsArr.length == usbsObj.length) { + var delFlag = false; + for (var i = 0; i < usbsArr.length; i++) { + if (usbsObj[i].lastUpdateType == 'delete') { + delFlag = true; + } else { + + + var jsonArr = [ + { + "preValue": usbsArr[i].hostIp ? usbsArr[i].hostIp : '', + "nowValue": usbsObj[i].hostId ? usbsObj[i].hostId : '', + "preName": 'editUsb' + (i != 0 ? i : ''), + "enName": "hostId" + }, + { + "preValue": usbsArr[i].id ? usbsArr[i].id : '', + "nowValue": usbsObj[i].usbId ? usbsObj[i].usbId : '', + "preName": 'editUsb' + (i != 0 ? i : ''), + "enName": "usbId" + }, + ]; + initData = initData.concat(jsonArr); + } + } + //dele usb + if (delFlag) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "delUsb" }; + initData.push(jsonMap); + } + } else { + if (usbsObj.length > usbsArr.length) { + var jsonMap = { "preValue": "0", "nowValue": "1", "enName": "addUsb" }; + initData.push(jsonMap); + } + + } + + var tempData = initData; + var result = []; + //发生变动的属性对应关系 + $.each(tempData, function (index, ele) { + if (ele.preValue != ele.nowValue) { + if (!(commonUtils.inputIsNull(ele.preValue) == true + && commonUtils.inputIsNull(ele.nowValue) == true)) { + result.push(ele); + } + + } + }); + var taskDetail = {}; + taskDetail[operType] = result; + return JSON.stringify(taskDetail); + +} +//判断是否为json串 +KSVD.taskDetailInfo.isJSON = function (str) { + if (typeof str == 'string') { + try { + var obj = JSON.parse(str); + if (typeof obj == 'object' && obj) { + return true; + } else { + return false; + } + + } catch (e) { + console.error('error:' + str + '!!!' + e); + return false; + } + } + var isjson = typeof (str) == "object" && Object.prototype.toString.call(str).toLowerCase() == "[object object]" && !str.length; + return isjson; +} + +export { + KSVD +} diff --git a/src/views/resource/ecs/components/main/actbtnPmsList.js b/src/views/resource/ecs/components/main/actbtnPmsList.js new file mode 100644 index 0000000000000000000000000000000000000000..a5245d184ec321ca74e7210bd1d36b5e0ca2e543 --- /dev/null +++ b/src/views/resource/ecs/components/main/actbtnPmsList.js @@ -0,0 +1,447 @@ + +const actbtnPms = { + // 开机按钮start + startstatusShowList: [ + 'OFFLINE', // '离线(OFFLINE)' + ], + startstatusunShowList: [ + 'OVERDUE', // '已过期(OVERDUE)', + 'AVAILABLE', // '在线(AVAILABLE)', + 'CONNECTED', // '已连接(CONNECTED)', + 'INSTALLING', // '安装(INSTALLING)', + 'SUSPEND', // '暂停(SUSPEND)', + 'UNKNOWN', // '其他(UNKNOWN)', + ], + + starttaskStatusShowList: [ + 'NEW', // '新建(NEW)', + 'NEWFAILED', // '新建失败(NEWFAILED)', + 'INSTALLFAILED', // '安装失败(INSTALLFAILED)', + ], + starttaskStatusunShowList: [ + 'INSTALLING', // '安装中(INSTALLING)', + 'CREATING', // '正在创建(CREATING)', + 'STARTING', // '正在开机(STARTING)', + 'SHUTDOWNING', // '正在关机(SHUTDOWNING)', + 'REBOOTING', // '正在重启(REBOOTING)', + 'SUSPENDING', // '正在暂停(SUSPENDING)', + 'RESUMING', // '正在唤醒(RESUMING)', + 'VOLUME_MIGRATING', // '正在存储迁移(VOLUME_MIGRATING)', + 'HOST_MIGRATING', // '正在主机迁移(HOST_MIGRATING)', + 'BACKUP_RUNNING', // '正在备份(BACKUP_RUNNING)', + 'BACKUP_RECOVERING', // '正在备份恢复(BACKUP_RECOVERING)', + 'SNAPSHOT_RUNNING', // '正在快照(SNAPSHOT_RUNNING)', + 'SNAPSHOT_RECOVERING', // '正在快照恢复(SNAPSHOT_RECOVERING)', + 'IMPORTING', // '正在导入(IMPORTING)', + 'EXPORTING', // '正在导出(EXPORTING)', + 'CLONING', // '正在克隆(CLONING)', + 'DISK_COPYING', // '正在磁盘复制(DISK_COPYING)', + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 控制台按钮 vnc + vncstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + ], + vncstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + ], + + vnctaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + + ], + vnctaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'STARTING', // 正在开机(STARTING) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING',// 正在创建(CREATING) + 'SHUTDOWNING',// 正在关机(SHUTDOWNING) + 'VOLUME_MIGRATING',// 正在存储迁移(VOLUME_MIGRATING) + 'BACKUP_RUNNING',// 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING',// 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING',// 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING',// 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING',// 正在导入(IMPORTING) + 'EXPORTING',// 正在导出(EXPORTING) + 'CLONING',// 正在克隆(CLONING) + 'DISK_COPYING',// 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + + // 关机按钮 shutdown + shutdownstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + + ], + shutdownstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + shutdowntaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + + ], + shutdowntaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + + ], + + // 强制关机 abort + abortstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + + ], + abortstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + ], + + aborttaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + ], + aborttaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + // 重启 reboot + rebootstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + ], + rebootstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + ], + reboottaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + ], + reboottaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 强制重启 forcereboot + forcerebootstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + + ], + forcerebootstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + forcereboottaskStatusShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + + ], + forcereboottaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'REBOOTING', // 正在重启(REBOOTING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + + ], + + + // 快照按钮 snapshot + snapshotstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + snapshotstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + ], + snapshottaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'INSTALLING', // 安装中(INSTALLING) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + + ], + snapshottaskStatusunShowList: [ + 'CREATING', // 正在创建(CREATING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + + ], + + // 变更规格按钮 edit + editstatusShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + editstatusunShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + ], + edittaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'INSTALLING', // 安装中(INSTALLING) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + + ], + edittaskStatusunShowList: [ + 'NEWFAILED', // 新建失败(NEWFAILED) + 'CREATING', // 正在创建(CREATING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 申请延期按钮 applyDeferred + applyDeferredstatusShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'OFFLINE', // 离线(OFFLINE) + 'UNKNOWN', // 其他(UNKNOWN) + + ], + applyDeferredstatusunShowList: [ + ], + applyDeferredtaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'INSTALLING', // 安装中(INSTALLING) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'CREATING', // 正在创建(CREATING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'NEWFAILED', // 新建失败(NEWFAILED) + + ], + applyDeferredtaskStatusunShowList: [ + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + + // 删除按钮 delete + deletestatusShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + + ], + deletestatusunShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'UNKNOWN', // 其他(UNKNOWN) + ], + deletetaskStatusShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + + ], + deletetaskStatusunShowList: [ + 'INSTALLING', // 安装中(INSTALLING) + 'CREATING', // 正在创建(CREATING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + + // 制作镜像按钮 makeImage + makeImagestatusShowList: [ + 'OVERDUE', // 已过期(OVERDUE) + 'OFFLINE', // 离线(OFFLINE) + ], + makeImagestatusunShowList: [ + 'AVAILABLE', // 在线(AVAILABLE) + 'CONNECTED', // 已连接(CONNECTED) + 'INSTALLING', // 安装(INSTALLING) + 'SUSPEND', // 暂停(SUSPEND) + 'UNKNOWN', // 其他(UNKNOWN) + ], + deletetaskStatusShowList: [ + + ], + deletetaskStatusunShowList: [ + 'NEW', // 新建(NEW) + 'NEWFAILED', // 新建失败(NEWFAILED) + 'INSTALLFAILED', // 安装失败(INSTALLFAILED) + 'INSTALLING', // 安装中(INSTALLING) + 'CREATING', // 正在创建(CREATING) + 'STARTING', // 正在开机(STARTING) + 'SHUTDOWNING', // 正在关机(SHUTDOWNING) + 'REBOOTING', // 正在重启(REBOOTING) + 'SUSPENDING', // 正在暂停(SUSPENDING) + 'RESUMING', // 正在唤醒(RESUMING) + 'VOLUME_MIGRATING', // 正在存储迁移(VOLUME_MIGRATING) + 'HOST_MIGRATING', // 正在主机迁移(HOST_MIGRATING) + 'BACKUP_RUNNING', // 正在备份(BACKUP_RUNNING) + 'BACKUP_RECOVERING', // 正在备份恢复(BACKUP_RECOVERING) + 'SNAPSHOT_RUNNING', // 正在快照(SNAPSHOT_RUNNING) + 'SNAPSHOT_RECOVERING', // 正在快照恢复(SNAPSHOT_RECOVERING) + 'IMPORTING', // 正在导入(IMPORTING) + 'EXPORTING', // 正在导出(EXPORTING) + 'CLONING', // 正在克隆(CLONING) + 'DISK_COPYING', // 正在磁盘复制(DISK_COPYING) + 'CREATE_KCP_IMAGE', // 正在磁盘复制(CREATE_KCP_IMAGE) + ], + +} +export default actbtnPms \ No newline at end of file diff --git a/src/views/resource/ecs/components/main/btn-more.vue b/src/views/resource/ecs/components/main/btn-more.vue new file mode 100644 index 0000000000000000000000000000000000000000..47e4c8cbea18f640178f1cb24c86d08eea4fed7a --- /dev/null +++ b/src/views/resource/ecs/components/main/btn-more.vue @@ -0,0 +1,453 @@ + + + diff --git a/src/views/resource/ecs/components/main/header-bar.vue b/src/views/resource/ecs/components/main/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..a5627556471ad43564e0f1244160f07fae28dd47 --- /dev/null +++ b/src/views/resource/ecs/components/main/header-bar.vue @@ -0,0 +1,453 @@ + + + + + diff --git a/src/views/resource/ecs/components/main/index.js b/src/views/resource/ecs/components/main/index.js new file mode 100644 index 0000000000000000000000000000000000000000..89a94ebe00aea6286e68e1c9377412ceb269a392 --- /dev/null +++ b/src/views/resource/ecs/components/main/index.js @@ -0,0 +1,2 @@ +export { default as headerBar } from './header-bar' +export { default as btnMore } from './btn-more' diff --git a/src/views/resource/ecs/components/makeImage/createEditBox.vue b/src/views/resource/ecs/components/makeImage/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..fa9c90b99c1c7298d6e17095c3e341a4e89db121 --- /dev/null +++ b/src/views/resource/ecs/components/makeImage/createEditBox.vue @@ -0,0 +1,227 @@ + + + + diff --git a/src/views/resource/ecs/components/makeImage/createEditModal.vue b/src/views/resource/ecs/components/makeImage/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/ecs/components/makeImage/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/ecs/components/statusRow.vue b/src/views/resource/ecs/components/statusRow.vue new file mode 100644 index 0000000000000000000000000000000000000000..de46cc116ea3d106301dcbe15ef5186f64bfcc71 --- /dev/null +++ b/src/views/resource/ecs/components/statusRow.vue @@ -0,0 +1,96 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/ecs/components/systemImg.vue b/src/views/resource/ecs/components/systemImg.vue new file mode 100644 index 0000000000000000000000000000000000000000..835aa0746f8875163a23288c2acbb24cc138bc0f --- /dev/null +++ b/src/views/resource/ecs/components/systemImg.vue @@ -0,0 +1,50 @@ + + + + diff --git a/src/views/resource/ecs/components/taskStatusRow.vue b/src/views/resource/ecs/components/taskStatusRow.vue new file mode 100644 index 0000000000000000000000000000000000000000..f71559b1bc3a0f8b87197a57c5b9d0a86ddf584e --- /dev/null +++ b/src/views/resource/ecs/components/taskStatusRow.vue @@ -0,0 +1,182 @@ + + + + diff --git a/src/views/resource/ecs/components/transferVm/bindNetworkModal/bindNetworkBox.vue b/src/views/resource/ecs/components/transferVm/bindNetworkModal/bindNetworkBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..ed17dc36884f772ec8f351ba67c90470169125a9 --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/bindNetworkModal/bindNetworkBox.vue @@ -0,0 +1,206 @@ + + + diff --git a/src/views/resource/ecs/components/transferVm/bindNetworkModal/bindNetworkModal.vue b/src/views/resource/ecs/components/transferVm/bindNetworkModal/bindNetworkModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..3d043e20fcf5e772be65ff261cade5b82cf7d255 --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/bindNetworkModal/bindNetworkModal.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/src/views/resource/ecs/components/transferVm/bindOrgModal/bindOrgBox.vue b/src/views/resource/ecs/components/transferVm/bindOrgModal/bindOrgBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..f8159fa9f88a595340ae61cea10dcaad0f9cf01f --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/bindOrgModal/bindOrgBox.vue @@ -0,0 +1,173 @@ + + + + diff --git a/src/views/resource/ecs/components/transferVm/bindOrgModal/bindOrgModal.vue b/src/views/resource/ecs/components/transferVm/bindOrgModal/bindOrgModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..78b4b2d0fa9a42c0e3b4dd85b9c5dd4ee3785b3c --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/bindOrgModal/bindOrgModal.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/src/views/resource/ecs/components/transferVm/bindUserModal/bindUserBox.vue b/src/views/resource/ecs/components/transferVm/bindUserModal/bindUserBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..5eafcaa1c43b5152a6da2bb9c91e80f14aef53d2 --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/bindUserModal/bindUserBox.vue @@ -0,0 +1,202 @@ + + + diff --git a/src/views/resource/ecs/components/transferVm/bindUserModal/bindUserModal.vue b/src/views/resource/ecs/components/transferVm/bindUserModal/bindUserModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..86790bb270a99f5542db262d05d4f252bb61093f --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/bindUserModal/bindUserModal.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/src/views/resource/ecs/components/transferVm/createEditBox.vue b/src/views/resource/ecs/components/transferVm/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..c0473bd01f562628516ccf41fbc05ef0b45d4315 --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/createEditBox.vue @@ -0,0 +1,428 @@ + + + + diff --git a/src/views/resource/ecs/components/transferVm/createEditModal.vue b/src/views/resource/ecs/components/transferVm/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..c8f667e51860b9824ce3df940f4e07c361193219 --- /dev/null +++ b/src/views/resource/ecs/components/transferVm/createEditModal.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/src/views/resource/ecs/index.vue b/src/views/resource/ecs/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..96a130d8704b95163ddca0f39cf646189ea0197e --- /dev/null +++ b/src/views/resource/ecs/index.vue @@ -0,0 +1,1079 @@ + + + + + diff --git a/src/views/resource/hostTube/detalPage.vue b/src/views/resource/hostTube/detalPage.vue new file mode 100644 index 0000000000000000000000000000000000000000..894f18d6e3b33141f93a3ae1ea61e0705e22a750 --- /dev/null +++ b/src/views/resource/hostTube/detalPage.vue @@ -0,0 +1,124 @@ + + + diff --git a/src/views/resource/hostTube/index.vue b/src/views/resource/hostTube/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..ebe42a6d3e2c62d2f8fc6ac90f49feae66920700 --- /dev/null +++ b/src/views/resource/hostTube/index.vue @@ -0,0 +1,503 @@ + + + diff --git a/src/views/resource/hostTube/vmData.vue b/src/views/resource/hostTube/vmData.vue new file mode 100644 index 0000000000000000000000000000000000000000..0038dce78b3ac32fcb02f676b933f9c6ecd60160 --- /dev/null +++ b/src/views/resource/hostTube/vmData.vue @@ -0,0 +1,303 @@ + + + diff --git a/src/views/resource/imageMgr/components/convertTopublicMirror/createEditBox.vue b/src/views/resource/imageMgr/components/convertTopublicMirror/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..5a3b7ceef63413274bbc2cb49dd37271a6235d78 --- /dev/null +++ b/src/views/resource/imageMgr/components/convertTopublicMirror/createEditBox.vue @@ -0,0 +1,183 @@ + + + + diff --git a/src/views/resource/imageMgr/components/convertTopublicMirror/createEditModal.vue b/src/views/resource/imageMgr/components/convertTopublicMirror/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/imageMgr/components/convertTopublicMirror/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/imageMgr/components/convertTosharedImage/createEditBox.vue b/src/views/resource/imageMgr/components/convertTosharedImage/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..2c408505fa1a62427e71dc3d8b361f60f918e50a --- /dev/null +++ b/src/views/resource/imageMgr/components/convertTosharedImage/createEditBox.vue @@ -0,0 +1,189 @@ + + + + diff --git a/src/views/resource/imageMgr/components/convertTosharedImage/createEditModal.vue b/src/views/resource/imageMgr/components/convertTosharedImage/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/imageMgr/components/convertTosharedImage/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/imageMgr/components/imageDetail.vue b/src/views/resource/imageMgr/components/imageDetail.vue new file mode 100644 index 0000000000000000000000000000000000000000..c06fa158b0477b0ca436f1468fdeb2ad5d9d0f7e --- /dev/null +++ b/src/views/resource/imageMgr/components/imageDetail.vue @@ -0,0 +1,293 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/imageMgr/components/imageOperateLog.vue b/src/views/resource/imageMgr/components/imageOperateLog.vue new file mode 100644 index 0000000000000000000000000000000000000000..b9edededb330bfbad0a5d45650db25617b49716d --- /dev/null +++ b/src/views/resource/imageMgr/components/imageOperateLog.vue @@ -0,0 +1,293 @@ + + + + diff --git a/src/views/resource/imageMgr/components/imageStatus.vue b/src/views/resource/imageMgr/components/imageStatus.vue new file mode 100644 index 0000000000000000000000000000000000000000..966d2ecdb6273d9cfbbdb0e8d14a2a9a4920ec41 --- /dev/null +++ b/src/views/resource/imageMgr/components/imageStatus.vue @@ -0,0 +1,99 @@ + + + + + diff --git a/src/views/resource/imageMgr/components/imageupload.vue b/src/views/resource/imageMgr/components/imageupload.vue new file mode 100644 index 0000000000000000000000000000000000000000..1410921b256cfdadb465ca0d9a45affb227d1cdd --- /dev/null +++ b/src/views/resource/imageMgr/components/imageupload.vue @@ -0,0 +1,295 @@ + + + + + diff --git a/src/views/resource/imageMgr/components/imageuploading.vue b/src/views/resource/imageMgr/components/imageuploading.vue new file mode 100644 index 0000000000000000000000000000000000000000..7b695d68d3de34195f0fc60e5badff896f4473ef --- /dev/null +++ b/src/views/resource/imageMgr/components/imageuploading.vue @@ -0,0 +1,250 @@ + + + + + diff --git a/src/views/resource/imageMgr/components/logPercentBox.vue b/src/views/resource/imageMgr/components/logPercentBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..05b27ae7369912f0da22601306ceb626f6f45f81 --- /dev/null +++ b/src/views/resource/imageMgr/components/logPercentBox.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/src/views/resource/imageMgr/index.vue b/src/views/resource/imageMgr/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..d6af90aa2cac76d76d6f883f9c2bbb8392b97d60 --- /dev/null +++ b/src/views/resource/imageMgr/index.vue @@ -0,0 +1,64 @@ + + + + diff --git a/src/views/resource/imageMgr/privateImage/editImage/createEditBox.vue b/src/views/resource/imageMgr/privateImage/editImage/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..4f72d11283adb0ea39a73fc718fcb14c551b99e3 --- /dev/null +++ b/src/views/resource/imageMgr/privateImage/editImage/createEditBox.vue @@ -0,0 +1,141 @@ + + + + diff --git a/src/views/resource/imageMgr/privateImage/editImage/createEditModal.vue b/src/views/resource/imageMgr/privateImage/editImage/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/imageMgr/privateImage/editImage/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/imageMgr/privateImage/header.vue b/src/views/resource/imageMgr/privateImage/header.vue new file mode 100644 index 0000000000000000000000000000000000000000..4163549aa40270db06791f3fae96ab27e3a3a0ff --- /dev/null +++ b/src/views/resource/imageMgr/privateImage/header.vue @@ -0,0 +1,125 @@ + + + + + diff --git a/src/views/resource/imageMgr/privateImage/index.vue b/src/views/resource/imageMgr/privateImage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..85c619c86784e8beec2a5f1d979aedd3b220f752 --- /dev/null +++ b/src/views/resource/imageMgr/privateImage/index.vue @@ -0,0 +1,540 @@ + + + + diff --git a/src/views/resource/imageMgr/publicImage/editImage/createEditBox.vue b/src/views/resource/imageMgr/publicImage/editImage/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..ec8f71cea6ae4ef3290885234d1e890969c48155 --- /dev/null +++ b/src/views/resource/imageMgr/publicImage/editImage/createEditBox.vue @@ -0,0 +1,184 @@ + + + + diff --git a/src/views/resource/imageMgr/publicImage/editImage/createEditModal.vue b/src/views/resource/imageMgr/publicImage/editImage/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/imageMgr/publicImage/editImage/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/imageMgr/publicImage/header.vue b/src/views/resource/imageMgr/publicImage/header.vue new file mode 100644 index 0000000000000000000000000000000000000000..ae34eba79d5e0204f3fa7bbbe92cd4bc9ab81bd1 --- /dev/null +++ b/src/views/resource/imageMgr/publicImage/header.vue @@ -0,0 +1,143 @@ + + + + + diff --git a/src/views/resource/imageMgr/publicImage/index.vue b/src/views/resource/imageMgr/publicImage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..8233dcd5b52f09a002fa7548d907cc7d20cff7d0 --- /dev/null +++ b/src/views/resource/imageMgr/publicImage/index.vue @@ -0,0 +1,495 @@ + + + + diff --git a/src/views/resource/imageMgr/sharedMirror/editImage/createEditBox.vue b/src/views/resource/imageMgr/sharedMirror/editImage/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..175aa09a4cba8accba5919ead112c50b6b852d86 --- /dev/null +++ b/src/views/resource/imageMgr/sharedMirror/editImage/createEditBox.vue @@ -0,0 +1,143 @@ + + + + diff --git a/src/views/resource/imageMgr/sharedMirror/editImage/createEditModal.vue b/src/views/resource/imageMgr/sharedMirror/editImage/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/imageMgr/sharedMirror/editImage/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/imageMgr/sharedMirror/header.vue b/src/views/resource/imageMgr/sharedMirror/header.vue new file mode 100644 index 0000000000000000000000000000000000000000..e08d935c2d7fbc0ad224049e157b2bbe355cd752 --- /dev/null +++ b/src/views/resource/imageMgr/sharedMirror/header.vue @@ -0,0 +1,151 @@ + + + + + diff --git a/src/views/resource/imageMgr/sharedMirror/index.vue b/src/views/resource/imageMgr/sharedMirror/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..f91ff493398c985de8b174275a5ff60af5b94e31 --- /dev/null +++ b/src/views/resource/imageMgr/sharedMirror/index.vue @@ -0,0 +1,539 @@ + + + + diff --git a/src/views/resource/physicalCluster/createEditModal/createEditBox.vue b/src/views/resource/physicalCluster/createEditModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..67d5e95f9565ea1db3af43adc4ad0e7bf7dc19ec --- /dev/null +++ b/src/views/resource/physicalCluster/createEditModal/createEditBox.vue @@ -0,0 +1,919 @@ + + + + diff --git a/src/views/resource/physicalCluster/createEditModal/createEditModal.vue b/src/views/resource/physicalCluster/createEditModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/physicalCluster/createEditModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/physicalCluster/detail.vue b/src/views/resource/physicalCluster/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..93a7a90ae222f06b8f4d7f2833bca3a7094fc5d4 --- /dev/null +++ b/src/views/resource/physicalCluster/detail.vue @@ -0,0 +1,87 @@ + + + + diff --git a/src/views/resource/physicalCluster/detailPage/clusterSummary.vue b/src/views/resource/physicalCluster/detailPage/clusterSummary.vue new file mode 100644 index 0000000000000000000000000000000000000000..05e0589762b062f51cef74f22052b4cbaa28620b --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/clusterSummary.vue @@ -0,0 +1,445 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/physicalCluster/detailPage/detailStorage.vue b/src/views/resource/physicalCluster/detailPage/detailStorage.vue new file mode 100644 index 0000000000000000000000000000000000000000..8b13eb94e5ef6fdc8ab3e36150b904429ff7e0e4 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/detailStorage.vue @@ -0,0 +1,268 @@ + + + + diff --git a/src/views/resource/physicalCluster/detailPage/header-bar.vue b/src/views/resource/physicalCluster/detailPage/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..015f8cc587dfb6da140e72c1e22cc0caeabd5d50 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/header-bar.vue @@ -0,0 +1,35 @@ + + + + + diff --git a/src/views/resource/physicalCluster/detailPage/networkDetail/bindVirtualFirewall/bindVirtualFirewallBox.vue b/src/views/resource/physicalCluster/detailPage/networkDetail/bindVirtualFirewall/bindVirtualFirewallBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..504321d8603291cddcbd7738b41d3abcbe942b70 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/networkDetail/bindVirtualFirewall/bindVirtualFirewallBox.vue @@ -0,0 +1,150 @@ + + + + diff --git a/src/views/resource/physicalCluster/detailPage/networkDetail/bindVirtualFirewall/bindVirtualFirewallModal.vue b/src/views/resource/physicalCluster/detailPage/networkDetail/bindVirtualFirewall/bindVirtualFirewallModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..af9c17caf4a7a978bc08bf150b41a24e2e6e97d1 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/networkDetail/bindVirtualFirewall/bindVirtualFirewallModal.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/src/views/resource/physicalCluster/detailPage/networkDetail/mcL3Network.vue b/src/views/resource/physicalCluster/detailPage/networkDetail/mcL3Network.vue new file mode 100644 index 0000000000000000000000000000000000000000..87216a83eaf44e6c0a606de447793b7ea1b2de61 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/networkDetail/mcL3Network.vue @@ -0,0 +1,163 @@ + + + + + diff --git a/src/views/resource/physicalCluster/detailPage/networkDetail/netWorkSpec.vue b/src/views/resource/physicalCluster/detailPage/networkDetail/netWorkSpec.vue new file mode 100644 index 0000000000000000000000000000000000000000..e821774d859a70438d6aeb5b67b815ea348ef223 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/networkDetail/netWorkSpec.vue @@ -0,0 +1,1075 @@ + + + diff --git a/src/views/resource/physicalCluster/detailPage/networkDetail/networkDetail.vue b/src/views/resource/physicalCluster/detailPage/networkDetail/networkDetail.vue new file mode 100644 index 0000000000000000000000000000000000000000..0f1ac26d97571b7c88992bdd556210339c3818d7 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/networkDetail/networkDetail.vue @@ -0,0 +1,284 @@ + + + diff --git a/src/views/resource/physicalCluster/detailPage/networkDetail/networkSpecDetail.vue b/src/views/resource/physicalCluster/detailPage/networkDetail/networkSpecDetail.vue new file mode 100644 index 0000000000000000000000000000000000000000..33e76f03861342f6687aa393e3669a164ceb1c35 --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/networkDetail/networkSpecDetail.vue @@ -0,0 +1,195 @@ + + + diff --git a/src/views/resource/physicalCluster/detailPage/pagePhysicalHost.vue b/src/views/resource/physicalCluster/detailPage/pagePhysicalHost.vue new file mode 100644 index 0000000000000000000000000000000000000000..272260cadf300d761556ba60f6da5ef87364743d --- /dev/null +++ b/src/views/resource/physicalCluster/detailPage/pagePhysicalHost.vue @@ -0,0 +1,209 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/physicalCluster/header-bar.vue b/src/views/resource/physicalCluster/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..354814a280fa03af9ead5cbe9e422f427dae725a --- /dev/null +++ b/src/views/resource/physicalCluster/header-bar.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/src/views/resource/physicalCluster/index.vue b/src/views/resource/physicalCluster/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..9386fc281ac0459371b830a6c2fb852ba1c85308 --- /dev/null +++ b/src/views/resource/physicalCluster/index.vue @@ -0,0 +1,387 @@ + + + diff --git a/src/views/resource/vMwareMgr/createEditModal/createEditBox.vue b/src/views/resource/vMwareMgr/createEditModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..7cc0b424e8f01fd34572ddc8665a06c8f9f0b814 --- /dev/null +++ b/src/views/resource/vMwareMgr/createEditModal/createEditBox.vue @@ -0,0 +1,396 @@ + + + + diff --git a/src/views/resource/vMwareMgr/createEditModal/createEditModal.vue b/src/views/resource/vMwareMgr/createEditModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/vMwareMgr/createEditModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/vMwareMgr/detail.vue b/src/views/resource/vMwareMgr/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..70b77bc2b990a794b45ce7da5a857db664563321 --- /dev/null +++ b/src/views/resource/vMwareMgr/detail.vue @@ -0,0 +1,60 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/vMwareMgr/detailPage/pagePhysicalHost.vue b/src/views/resource/vMwareMgr/detailPage/pagePhysicalHost.vue new file mode 100644 index 0000000000000000000000000000000000000000..94bf44d4babd27cf9374ab3efa26cd439a1297da --- /dev/null +++ b/src/views/resource/vMwareMgr/detailPage/pagePhysicalHost.vue @@ -0,0 +1,244 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/vMwareMgr/detailPage/statuscell.vue b/src/views/resource/vMwareMgr/detailPage/statuscell.vue new file mode 100644 index 0000000000000000000000000000000000000000..37b288a73254f6775c2a463ab02636221c684ed1 --- /dev/null +++ b/src/views/resource/vMwareMgr/detailPage/statuscell.vue @@ -0,0 +1,64 @@ + + + + + + \ No newline at end of file diff --git a/src/views/resource/vMwareMgr/header-bar.vue b/src/views/resource/vMwareMgr/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..f54893e01f150332277d7374e651d1aea5f3736b --- /dev/null +++ b/src/views/resource/vMwareMgr/header-bar.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/resource/vMwareMgr/index.vue b/src/views/resource/vMwareMgr/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..edf5d511590b5dabe110bcf51d79689849eadc87 --- /dev/null +++ b/src/views/resource/vMwareMgr/index.vue @@ -0,0 +1,276 @@ + + + + diff --git a/src/views/resource/vdcPage/changeSpecModal/createEditBox.vue b/src/views/resource/vdcPage/changeSpecModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..2008ae3b7ae94d867a2c6d56db99e7c01a3c4824 --- /dev/null +++ b/src/views/resource/vdcPage/changeSpecModal/createEditBox.vue @@ -0,0 +1,287 @@ + + + + diff --git a/src/views/resource/vdcPage/changeSpecModal/createEditModal.vue b/src/views/resource/vdcPage/changeSpecModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/vdcPage/changeSpecModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/vdcPage/createEditModal/createEditBox.vue b/src/views/resource/vdcPage/createEditModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..a47fba37d0d6b8020659195daffcae4a2b8b38d7 --- /dev/null +++ b/src/views/resource/vdcPage/createEditModal/createEditBox.vue @@ -0,0 +1,741 @@ + + + + diff --git a/src/views/resource/vdcPage/createEditModal/createEditModal.vue b/src/views/resource/vdcPage/createEditModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/vdcPage/createEditModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/resource/vdcPage/detail.vue b/src/views/resource/vdcPage/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..697f45748aab153d2cf52b9142de667bfcf70213 --- /dev/null +++ b/src/views/resource/vdcPage/detail.vue @@ -0,0 +1,59 @@ + + + + \ No newline at end of file diff --git a/src/views/resource/vdcPage/detailPage/clusterSummary.vue b/src/views/resource/vdcPage/detailPage/clusterSummary.vue new file mode 100644 index 0000000000000000000000000000000000000000..6d8a0a764b4023f18a6282f8614e5f8a0dde7eb1 --- /dev/null +++ b/src/views/resource/vdcPage/detailPage/clusterSummary.vue @@ -0,0 +1,622 @@ + + + + diff --git a/src/views/resource/vdcPage/detailPage/header-bar.vue b/src/views/resource/vdcPage/detailPage/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..015f8cc587dfb6da140e72c1e22cc0caeabd5d50 --- /dev/null +++ b/src/views/resource/vdcPage/detailPage/header-bar.vue @@ -0,0 +1,35 @@ + + + + + diff --git a/src/views/resource/vdcPage/header-bar.vue b/src/views/resource/vdcPage/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..43835219d6fb0a36dfce1f154580c1c528bae804 --- /dev/null +++ b/src/views/resource/vdcPage/header-bar.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/resource/vdcPage/index.vue b/src/views/resource/vdcPage/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..8009fcee46832c891ecd65a0185543b0d386a578 --- /dev/null +++ b/src/views/resource/vdcPage/index.vue @@ -0,0 +1,435 @@ + + + + diff --git a/src/views/resource/vdcPage/vdcEditModal/createEditBox.vue b/src/views/resource/vdcPage/vdcEditModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..3b552b4f9579cf3c3c0ee6fea8df9b7b33588050 --- /dev/null +++ b/src/views/resource/vdcPage/vdcEditModal/createEditBox.vue @@ -0,0 +1,423 @@ + + + diff --git a/src/views/resource/vdcPage/vdcEditModal/createEditModal.vue b/src/views/resource/vdcPage/vdcEditModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/resource/vdcPage/vdcEditModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/workorder/bindIsoTempModal/bindTemplateBox.vue b/src/views/workorder/bindIsoTempModal/bindTemplateBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..c9bc43159747c0dfda9eb7f6d4880a4a84780975 --- /dev/null +++ b/src/views/workorder/bindIsoTempModal/bindTemplateBox.vue @@ -0,0 +1,290 @@ + + + + diff --git a/src/views/workorder/bindIsoTempModal/bindTemplateModal.vue b/src/views/workorder/bindIsoTempModal/bindTemplateModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..95f29781ce2a7e4fd06729d7518d9f7ac1d289e3 --- /dev/null +++ b/src/views/workorder/bindIsoTempModal/bindTemplateModal.vue @@ -0,0 +1,67 @@ + + + + + diff --git a/src/views/workorder/changeSpecModal/createEditBox.vue b/src/views/workorder/changeSpecModal/createEditBox.vue new file mode 100644 index 0000000000000000000000000000000000000000..04fc4556803de518b1a5d3cfb784d8d08b23e864 --- /dev/null +++ b/src/views/workorder/changeSpecModal/createEditBox.vue @@ -0,0 +1,277 @@ + + + + diff --git a/src/views/workorder/changeSpecModal/createEditModal.vue b/src/views/workorder/changeSpecModal/createEditModal.vue new file mode 100644 index 0000000000000000000000000000000000000000..27f60ccfdcad12c044cac49f02df70562575bb63 --- /dev/null +++ b/src/views/workorder/changeSpecModal/createEditModal.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/workorder/detail.vue b/src/views/workorder/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..6fa096348f21f6429b24e736a8ec75b6a6af4ba5 --- /dev/null +++ b/src/views/workorder/detail.vue @@ -0,0 +1,507 @@ + + + + + \ No newline at end of file diff --git a/src/views/workorder/detail/detail-drawer.vue b/src/views/workorder/detail/detail-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..9fe0311525e985678fb5f0cb9c21871382c8f22a --- /dev/null +++ b/src/views/workorder/detail/detail-drawer.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/workorder/detail/detail.vue b/src/views/workorder/detail/detail.vue new file mode 100644 index 0000000000000000000000000000000000000000..4d7d52113fdf17a6f3dd886b8b10bf52dbf11e9a --- /dev/null +++ b/src/views/workorder/detail/detail.vue @@ -0,0 +1,658 @@ + + + + + diff --git a/src/views/workorder/detail/ipsetDeiatl.vue b/src/views/workorder/detail/ipsetDeiatl.vue new file mode 100644 index 0000000000000000000000000000000000000000..a73cbcbabce161f180f745ab47b950d9c5bd7002 --- /dev/null +++ b/src/views/workorder/detail/ipsetDeiatl.vue @@ -0,0 +1,76 @@ + + + + diff --git a/src/views/workorder/detail/modifyVdcDetail.vue b/src/views/workorder/detail/modifyVdcDetail.vue new file mode 100644 index 0000000000000000000000000000000000000000..40207a79dd6852055cd3398c03d4d3e0f65b1ee6 --- /dev/null +++ b/src/views/workorder/detail/modifyVdcDetail.vue @@ -0,0 +1,171 @@ + + + + + diff --git a/src/views/workorder/drawer/PassServervmApply.vue b/src/views/workorder/drawer/PassServervmApply.vue new file mode 100644 index 0000000000000000000000000000000000000000..f8bdfa55d7706217b710e7b2fcaea6dc31798990 --- /dev/null +++ b/src/views/workorder/drawer/PassServervmApply.vue @@ -0,0 +1,573 @@ + + + + diff --git a/src/views/workorder/drawer/PassServervmIsoApply.vue b/src/views/workorder/drawer/PassServervmIsoApply.vue new file mode 100644 index 0000000000000000000000000000000000000000..18bd1612d6629070111a61f522f6ff5bca8eb5fb --- /dev/null +++ b/src/views/workorder/drawer/PassServervmIsoApply.vue @@ -0,0 +1,598 @@ + + + + diff --git a/src/views/workorder/drawer/PassServervmModify.vue b/src/views/workorder/drawer/PassServervmModify.vue new file mode 100644 index 0000000000000000000000000000000000000000..0577d9a85795ea1ed04a97b5addb41280d4458c9 --- /dev/null +++ b/src/views/workorder/drawer/PassServervmModify.vue @@ -0,0 +1,361 @@ + + + + diff --git a/src/views/workorder/drawer/computResources.vue b/src/views/workorder/drawer/computResources.vue new file mode 100644 index 0000000000000000000000000000000000000000..47bd22cf885d7d751edb87760837af28fd801b71 --- /dev/null +++ b/src/views/workorder/drawer/computResources.vue @@ -0,0 +1,257 @@ + + + + diff --git a/src/views/workorder/drawer/pass-apply-servervm-drawer.vue b/src/views/workorder/drawer/pass-apply-servervm-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..6d123819a885246e34d8104c602fa207e4f0d808 --- /dev/null +++ b/src/views/workorder/drawer/pass-apply-servervm-drawer.vue @@ -0,0 +1,129 @@ + + + + diff --git a/src/views/workorder/drawer/pass-drawer.vue b/src/views/workorder/drawer/pass-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..10d25daf44acbe157feb40cde7e99bbde91b1ec4 --- /dev/null +++ b/src/views/workorder/drawer/pass-drawer.vue @@ -0,0 +1,148 @@ + + + + + diff --git a/src/views/workorder/drawer/pass-modify-servervm-drawer.vue b/src/views/workorder/drawer/pass-modify-servervm-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..767d58be32835de6f8407579e3c4ed704b208f0b --- /dev/null +++ b/src/views/workorder/drawer/pass-modify-servervm-drawer.vue @@ -0,0 +1,62 @@ + + + + diff --git a/src/views/workorder/drawer/refuse-drawer.vue b/src/views/workorder/drawer/refuse-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..50c91c88a991fc0d69e9d7329f757ffc68dbaef6 --- /dev/null +++ b/src/views/workorder/drawer/refuse-drawer.vue @@ -0,0 +1,133 @@ + + + + + diff --git a/src/views/workorder/drawer/selectCluster-drawer.vue b/src/views/workorder/drawer/selectCluster-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..4fed277661165fd3bf80dedc61374d4609b9ea92 --- /dev/null +++ b/src/views/workorder/drawer/selectCluster-drawer.vue @@ -0,0 +1,202 @@ + + + + + diff --git a/src/views/workorder/drawer/selectNetwork-drawer.vue b/src/views/workorder/drawer/selectNetwork-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..39b022d8c14c823fc4e2dfb77568a18d3a1e4d9b --- /dev/null +++ b/src/views/workorder/drawer/selectNetwork-drawer.vue @@ -0,0 +1,208 @@ + + + + + diff --git a/src/views/workorder/drawer/selectTagNames-drawer.vue b/src/views/workorder/drawer/selectTagNames-drawer.vue new file mode 100644 index 0000000000000000000000000000000000000000..5c1ee76d55363140dbda3df82bd5e891c9953fd9 --- /dev/null +++ b/src/views/workorder/drawer/selectTagNames-drawer.vue @@ -0,0 +1,153 @@ + + + + + diff --git a/src/views/workorder/drawer/setDiskInfo.vue b/src/views/workorder/drawer/setDiskInfo.vue new file mode 100644 index 0000000000000000000000000000000000000000..797bb379362a7c7773abff89fe173c75d95fd03b --- /dev/null +++ b/src/views/workorder/drawer/setDiskInfo.vue @@ -0,0 +1,239 @@ + + + + diff --git a/src/views/workorder/drawer/setNetWorkInfo.vue b/src/views/workorder/drawer/setNetWorkInfo.vue new file mode 100644 index 0000000000000000000000000000000000000000..d606fb228625f36ae321c9f52ddc96bcaaaaffd7 --- /dev/null +++ b/src/views/workorder/drawer/setNetWorkInfo.vue @@ -0,0 +1,517 @@ + + + + diff --git a/src/views/workorder/header-bar.vue b/src/views/workorder/header-bar.vue new file mode 100644 index 0000000000000000000000000000000000000000..b46fb393d1b9c5087c41e2de9fca95504c86cd91 --- /dev/null +++ b/src/views/workorder/header-bar.vue @@ -0,0 +1,480 @@ + + + + + diff --git a/src/views/workorder/index.vue b/src/views/workorder/index.vue new file mode 100644 index 0000000000000000000000000000000000000000..c1f171ff10670e9d3415f53edaf115d12611dde2 --- /dev/null +++ b/src/views/workorder/index.vue @@ -0,0 +1,428 @@ + + + diff --git a/src/views/workorder/ipsetDeiatl.vue b/src/views/workorder/ipsetDeiatl.vue new file mode 100644 index 0000000000000000000000000000000000000000..a73cbcbabce161f180f745ab47b950d9c5bd7002 --- /dev/null +++ b/src/views/workorder/ipsetDeiatl.vue @@ -0,0 +1,76 @@ + + + + diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..6670daee7d8702e83cd2390c33f7681c124b422f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,5 @@ +{ + "vueCompilerOptions": { + "target": 2.7, + }, +} \ No newline at end of file diff --git a/vue.config.js b/vue.config.js new file mode 100644 index 0000000000000000000000000000000000000000..ebc492f47bc9ae01084c257f1d0e5d7ed0950841 --- /dev/null +++ b/vue.config.js @@ -0,0 +1,130 @@ +'use strict' +const path = require('path') +const defaultSettings = require('./src/settings.js') + +function resolve(dir) { + return path.join(__dirname, dir) +} + +const name = defaultSettings.title || '' // page title + +// If your port is set to 80, +// use administrator privileges to execute the command line. +// For example, Mac: sudo npm run +// You can change the port by the following methods: +// port = 9528 npm run dev OR npm run dev --port = 9528 +const port = process.env.port || process.env.npm_config_port || 8081 // dev port + +// All configuration item explanations can be find in https://cli.vuejs.org/config/ +module.exports = { + /** + * You will need to set publicPath if you plan to deploy your site under a sub path, + * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/, + * then publicPath should be set to "/bar/". + * In most cases please use '/' !!! + * Detail: https://cli.vuejs.org/config/#publicpath + */ + publicPath: '/kcp', + outputDir: 'dist', + assetsDir: 'static', + lintOnSave: false, + productionSourceMap: false, + css: { + loaderOptions: { + sass: { + prependData: ` + @import "@/styles/variables.scss"; + ` + } + } + }, + devServer: { + hot: true + // port: port, + // open: true, + // overlay: { + // warnings: false, + // errors: true + // }, + // before: require('./mock/mock-server.js') + }, + configureWebpack: { + // provide the app's title in webpack's name field, so that + // it can be accessed in index.html to inject the correct title. + name: name, + resolve: { + alias: { + '@': resolve('src') + } + }, + // 部分vue文件名都是index.vue 会覆盖导致source-map失效 + devtool: process.env.NODE_ENV === 'development' ? 'module-eval-source-map' : 'source-map' + }, + chainWebpack(config) { + // it can improve the speed of the first screen, it is recommended to turn on preload + config.plugin('preload').tap(() => [ + { + rel: 'preload', + // to ignore runtime.js + // https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171 + fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/], + include: 'initial' + } + ]) + + // when there are many pages, it will cause too many meaningless requests + config.plugins.delete('prefetch') + + // set svg-sprite-loader + config.module.rule('svg').exclude.add(resolve('src/icons')).end() + config.module + .rule('icons') + .test(/\.svg$/) + .include.add(resolve('src/icons')) + .end() + .use('svg-sprite-loader') + .loader('svg-sprite-loader') + .options({ + symbolId: 'icon-[name]' + }) + .end() + + config.when(process.env.NODE_ENV !== 'development', (config) => { + config + .plugin('ScriptExtHtmlWebpackPlugin') + .after('html') + .use('script-ext-html-webpack-plugin', [ + { + // `runtime` must same as runtimeChunk name. default is `runtime` + inline: /runtime\..*\.js$/ + } + ]) + .end() + config.optimization.splitChunks({ + chunks: 'all', + cacheGroups: { + libs: { + name: 'chunk-libs', + test: /[\\/]node_modules[\\/]/, + priority: 10, + chunks: 'initial' // only package third parties that are initially dependent + }, + elementUI: { + name: 'chunk-elementUI', // split elementUI into a single package + priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app + test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm + }, + commons: { + name: 'chunk-commons', + test: resolve('src/components'), // can customize your rules + minChunks: 3, // minimum common number + priority: 5, + reuseExistingChunk: true + } + } + }) + // https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk + config.optimization.runtimeChunk('single') + }) + } +}