diff --git a/supervise-crm-ui/.editorconfig b/supervise-crm-ui/.editorconfig new file mode 100644 index 00000000..ea6e20f5 --- /dev/null +++ b/supervise-crm-ui/.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/supervise-crm-ui/.env.development b/supervise-crm-ui/.env.development new file mode 100644 index 00000000..589688ed --- /dev/null +++ b/supervise-crm-ui/.env.development @@ -0,0 +1,9 @@ +# just a flag +ENV = 'development' + +# base api +VUE_APP_BASE_API = '/api/service' + +## 配置测试和本地开发时的 接口地址 +VUE_APP_URL = "http://127.0.0.1:8112" +##VUE_APP_URL = "http://120.46.172.184:8111" diff --git a/supervise-crm-ui/.env.production b/supervise-crm-ui/.env.production new file mode 100644 index 00000000..811f3444 --- /dev/null +++ b/supervise-crm-ui/.env.production @@ -0,0 +1,9 @@ +# just a flag +ENV = 'production' + +# base api +VUE_APP_BASE_API = '/api/service' + +## 配置 正式接口地址 +VUE_APP_URL = "http://120.46.131.15:8111" + diff --git a/supervise-crm-ui/.env.staging b/supervise-crm-ui/.env.staging new file mode 100644 index 00000000..a8793a09 --- /dev/null +++ b/supervise-crm-ui/.env.staging @@ -0,0 +1,8 @@ +NODE_ENV = production + +# just a flag +ENV = 'staging' + +# base api +VUE_APP_BASE_API = '/stage-api' + diff --git a/supervise-crm-ui/.eslintignore b/supervise-crm-ui/.eslintignore new file mode 100644 index 00000000..e6529fc0 --- /dev/null +++ b/supervise-crm-ui/.eslintignore @@ -0,0 +1,4 @@ +build/*.js +src/assets +public +dist diff --git a/supervise-crm-ui/.eslintrc.js b/supervise-crm-ui/.eslintrc.js new file mode 100644 index 00000000..bb624b1c --- /dev/null +++ b/supervise-crm-ui/.eslintrc.js @@ -0,0 +1,199 @@ +module.exports = { + root: true, + parserOptions: { + parser: 'babel-eslint', + sourceType: 'module' + }, + env: { + browser: true, + node: true, + es6: true, + }, + extends: ['plugin:vue/recommended', 'eslint: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-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 + // }], + 'indent': 'off', + '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': [2, '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/supervise-crm-ui/.gitignore b/supervise-crm-ui/.gitignore new file mode 100644 index 00000000..9ad28d23 --- /dev/null +++ b/supervise-crm-ui/.gitignore @@ -0,0 +1,16 @@ +.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 diff --git a/supervise-crm-ui/.travis.yml b/supervise-crm-ui/.travis.yml new file mode 100644 index 00000000..f4be7a08 --- /dev/null +++ b/supervise-crm-ui/.travis.yml @@ -0,0 +1,5 @@ +language: node_js +node_js: 10 +script: npm run test +notifications: + email: false diff --git a/supervise-crm-ui/LICENSE b/supervise-crm-ui/LICENSE new file mode 100644 index 00000000..61515750 --- /dev/null +++ b/supervise-crm-ui/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017-present PanJiaChen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/supervise-crm-ui/README-zh.md b/supervise-crm-ui/README-zh.md new file mode 100644 index 00000000..e69de29b diff --git a/supervise-crm-ui/README.md b/supervise-crm-ui/README.md new file mode 100644 index 00000000..a2f3c715 --- /dev/null +++ b/supervise-crm-ui/README.md @@ -0,0 +1,90 @@ +# vue-admin-template + +English | [简体中文](./README-zh.md) + +> A minimal vue admin template with Element UI & axios & iconfont & permission control & lint + +**Live demo:** http://panjiachen.github.io/vue-admin-template + + +**The current version is `v4.0+` build on `vue-cli`. If you want to use the old version , you can switch branch to [tag/3.11.0](https://github.com/PanJiaChen/vue-admin-template/tree/tag/3.11.0), it does not rely on `vue-cli`** + +## Build Setup + +```bash +# clone the project +git clone https://github.com/PanJiaChen/vue-admin-template.git + +# enter the project directory +cd vue-admin-template + +# install dependency +npm install + +# develop +npm run dev +``` + +This will automatically open http://localhost:9528 + +## Build + +```bash +# build for test environment +npm run build:stage + +# build for production environment +npm run build:prod +``` + +## Advanced + +```bash +# preview the release environment effect +npm run preview + +# preview the release environment effect + static resource analysis +npm run preview -- --report + +# code format check +npm run lint + +# code format check and auto fix +npm run lint -- --fix +``` + +Refer to [Documentation](https://panjiachen.github.io/vue-element-admin-site/guide/essentials/deploy.html) for more information + +## Demo + +![demo](https://github.com/PanJiaChen/PanJiaChen.github.io/blob/master/images/demo.gif) + +## Extra + +If you want router permission && generate menu by user roles , you can use this branch [permission-control](https://github.com/PanJiaChen/vue-admin-template/tree/permission-control) + +For `typescript` version, you can use [vue-typescript-admin-template](https://github.com/Armour/vue-typescript-admin-template) (Credits: [@Armour](https://github.com/Armour)) + +## Related Project + +- [vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) + +- [electron-vue-admin](https://github.com/PanJiaChen/electron-vue-admin) + +- [vue-typescript-admin-template](https://github.com/Armour/vue-typescript-admin-template) + +- [awesome-project](https://github.com/PanJiaChen/vue-element-admin/issues/2312) + +## Browsers support + +Modern browsers and Internet Explorer 10+. + +| [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](http://godban.github.io/browsers-support-badges/)
Safari | +| --------- | --------- | --------- | --------- | +| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions + +## License + +[MIT](https://github.com/PanJiaChen/vue-admin-template/blob/master/LICENSE) license. + +Copyright (c) 2017-present PanJiaChen diff --git a/supervise-crm-ui/babel.config.js b/supervise-crm-ui/babel.config.js new file mode 100644 index 00000000..c9349132 --- /dev/null +++ b/supervise-crm-ui/babel.config.js @@ -0,0 +1,15 @@ +module.exports = { + presets: [ + // https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app + // '@vue/cli-plugin-babel/preset', + ['@vue/app', { useBuiltIns: 'entry' }] + ], + '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/supervise-crm-ui/jest.config.js b/supervise-crm-ui/jest.config.js new file mode 100644 index 00000000..143cdc86 --- /dev/null +++ b/supervise-crm-ui/jest.config.js @@ -0,0 +1,24 @@ +module.exports = { + moduleFileExtensions: ['js', 'jsx', 'json', 'vue'], + transform: { + '^.+\\.vue$': 'vue-jest', + '.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': + 'jest-transform-stub', + '^.+\\.jsx?$': 'babel-jest' + }, + moduleNameMapper: { + '^@/(.*)$': '/src/$1' + }, + snapshotSerializers: ['jest-serializer-vue'], + testMatch: [ + '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' + ], + collectCoverageFrom: ['src/utils/**/*.{js,vue}', '!src/utils/auth.js', '!src/utils/request.js', 'src/components/**/*.{js,vue}'], + coverageDirectory: '/tests/unit/coverage', + // 'collectCoverage': true, + 'coverageReporters': [ + 'lcov', + 'text-summary' + ], + testURL: 'http://localhost/' +} diff --git a/supervise-crm-ui/jsconfig.json b/supervise-crm-ui/jsconfig.json new file mode 100644 index 00000000..ed079e2b --- /dev/null +++ b/supervise-crm-ui/jsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } + }, + "exclude": ["node_modules", "dist"] +} diff --git a/supervise-crm-ui/mock/index.js b/supervise-crm-ui/mock/index.js new file mode 100644 index 00000000..c514c135 --- /dev/null +++ b/supervise-crm-ui/mock/index.js @@ -0,0 +1,57 @@ +const Mock = require('mockjs') +const { param2Obj } = require('./utils') + +const user = require('./user') +const table = require('./table') + +const mocks = [ + ...user, + ...table +] + +// 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/supervise-crm-ui/mock/mock-server.js b/supervise-crm-ui/mock/mock-server.js new file mode 100644 index 00000000..8941ec0f --- /dev/null +++ b/supervise-crm-ui/mock/mock-server.js @@ -0,0 +1,81 @@ +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) { + console.log('request invoke:' + req.path) + 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.log(chalk.magentaBright(`\n > Mock Server hot reload success! changed ${path}`)) + } catch (error) { + console.log(chalk.redBright(error)) + } + } + }) +} diff --git a/supervise-crm-ui/mock/table.js b/supervise-crm-ui/mock/table.js new file mode 100644 index 00000000..bd0e0133 --- /dev/null +++ b/supervise-crm-ui/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: 20000, + data: { + total: items.length, + items: items + } + } + } + } +] diff --git a/supervise-crm-ui/mock/user.js b/supervise-crm-ui/mock/user.js new file mode 100644 index 00000000..75553385 --- /dev/null +++ b/supervise-crm-ui/mock/user.js @@ -0,0 +1,84 @@ + +const tokens = { + admin: { + token: 'admin-token' + }, + editor: { + token: 'editor-token' + } +} + +const users = { + 'admin-token': { + roles: ['admin'], + introduction: 'I am a super administrator', + avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif', + name: 'Super Admin' + }, + 'editor-token': { + roles: ['editor'], + introduction: 'I am an editor', + avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif', + name: 'Normal Editor' + } +} + +module.exports = [ + // user login + { + url: '/vue-admin-template/user/login', + type: 'post', + response: config => { + const { username } = config.body + const token = tokens[username] + + // mock error + if (!token) { + return { + code: 60204, + message: 'Account and password are incorrect.' + } + } + + return { + code: 20000, + data: token + } + } + }, + + // get user info + { + url: '/vue-admin-template/user/info\.*', + type: 'get', + response: config => { + const { token } = config.query + const info = users[token] + + // mock error + if (!info) { + return { + code: 50008, + message: 'Login failed, unable to get user details.' + } + } + + return { + code: 20000, + data: info + } + } + }, + + // user logout + { + url: '/vue-admin-template/user/logout', + type: 'post', + response: _ => { + return { + code: 20000, + data: 'success' + } + } + } +] diff --git a/supervise-crm-ui/mock/utils.js b/supervise-crm-ui/mock/utils.js new file mode 100644 index 00000000..95cc27d5 --- /dev/null +++ b/supervise-crm-ui/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/supervise-crm-ui/package.json b/supervise-crm-ui/package.json new file mode 100644 index 00000000..8ec1fff3 --- /dev/null +++ b/supervise-crm-ui/package.json @@ -0,0 +1,73 @@ +{ + "name": "admin-template", + "version": "4.4.0", + "description": "A vue admin template with Element UI & axios & iconfont & permission control & lint", + "author": "Pan ", + "scripts": { + "dev": "vue-cli-service serve", + "build:prod": "vue-cli-service build", + "build:stage": "vue-cli-service build --mode staging", + "preview": "node build/index.js --preview", + "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml", + "lint": "eslint --ext .js,.vue src", + "test:unit": "jest --clearCache && vue-cli-service test:unit", + "test:ci": "npm run lint && npm run test:unit" + }, + "dependencies": { + "axios": "^0.24.0", + "bpmn-js": "^9.2.2", + "core-js": "^2.6.12", + "ejs": "^2.7.4", + "element-ui": "2.13.2", + "js-cookie": "2.2.0", + "moment": "^2.29.1", + "normalize.css": "7.0.0", + "nprogress": "0.2.0", + "path-to-regexp": "2.4.0", + "portfinder": "^1.0.21", + "qs": "^6.9.4", + "sass-resources-loader": "^2.1.1", + "viewerjs": "^1.9.0", + "vue": "2.6.10", + "vue-amap": "^0.5.10", + "vue-router": "3.0.6", + "vuex": "3.1.0", + "vuex-persistedstate": "^4.0.0", + "xcrud": "^0.4.19" + }, + "devDependencies": { + "@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": "10.1.0", + "babel-jest": "23.6.0", + "babel-plugin-dynamic-import-node": "2.3.3", + "babel-polyfill": "^6.26.0", + "chalk": "2.4.2", + "connect": "3.6.6", + "eslint": "6.7.2", + "eslint-plugin-vue": "6.2.2", + "html-webpack-plugin": "3.2.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" +} diff --git a/supervise-crm-ui/pnpm-lock.yaml b/supervise-crm-ui/pnpm-lock.yaml new file mode 100644 index 00000000..1b42ad25 --- /dev/null +++ b/supervise-crm-ui/pnpm-lock.yaml @@ -0,0 +1,14470 @@ +lockfileVersion: 5.3 + +specifiers: + '@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 + axios: ^0.24.0 + babel-eslint: 10.1.0 + babel-jest: 23.6.0 + babel-plugin-dynamic-import-node: 2.3.3 + babel-polyfill: ^6.26.0 + chalk: 2.4.2 + connect: 3.6.6 + core-js: ^2.6.12 + ejs: ^2.7.4 + element-ui: 2.13.2 + eslint: 6.7.2 + eslint-plugin-vue: 6.2.2 + html-webpack-plugin: 3.2.0 + js-cookie: 2.2.0 + mockjs: 1.0.1-beta3 + normalize.css: 7.0.0 + nprogress: 0.2.0 + path-to-regexp: 2.4.0 + portfinder: ^1.0.21 + qs: ^6.9.4 + runjs: 4.3.2 + sass: 1.26.8 + sass-loader: 8.0.2 + sass-resources-loader: ^2.1.1 + script-ext-html-webpack-plugin: 2.1.3 + serve-static: 1.13.2 + svg-sprite-loader: 4.1.3 + svgo: 1.2.2 + viewerjs: ^1.9.0 + vue: 2.6.10 + vue-amap: ^0.5.10 + vue-router: 3.0.6 + vue-template-compiler: 2.6.10 + vuex: 3.1.0 + vuex-persistedstate: ^4.0.0 + +dependencies: + axios: registry.npmmirror.com/axios/0.24.0 + core-js: registry.npmmirror.com/core-js/2.6.12 + ejs: registry.npmmirror.com/ejs/2.7.4 + element-ui: registry.npmmirror.com/element-ui/2.13.2_vue@2.6.10 + js-cookie: registry.nlark.com/js-cookie/2.2.0 + normalize.css: registry.nlark.com/normalize.css/7.0.0 + nprogress: registry.npmmirror.com/nprogress/0.2.0 + path-to-regexp: registry.nlark.com/path-to-regexp/2.4.0 + portfinder: registry.nlark.com/portfinder/1.0.28 + qs: registry.nlark.com/qs/6.10.1 + sass-resources-loader: registry.npmmirror.com/sass-resources-loader/2.2.4 + viewerjs: registry.npmmirror.com/viewerjs/1.10.2 + vue: registry.npmmirror.com/vue/2.6.10 + vue-amap: registry.npmmirror.com/vue-amap/0.5.10 + vue-router: registry.npmmirror.com/vue-router/3.0.6 + vuex: registry.nlark.com/vuex/3.1.0 + vuex-persistedstate: registry.npmmirror.com/vuex-persistedstate/4.1.0_vuex@3.1.0 + +devDependencies: + '@vue/cli-plugin-babel': registry.npmmirror.com/@vue/cli-plugin-babel/4.4.4_73dc883dde44f18441aa6573f43c88d3 + '@vue/cli-plugin-eslint': registry.npmmirror.com/@vue/cli-plugin-eslint/4.4.4_4c02ce60bf5d245163a3258a3e654afe + '@vue/cli-plugin-unit-jest': registry.npmmirror.com/@vue/cli-plugin-unit-jest/4.4.4_1770ede1501523cd138a18b22895daee + '@vue/cli-service': registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f + '@vue/test-utils': registry.npmmirror.com/@vue/test-utils/1.0.0-beta.29_46af323429f830a6028b5e43b9b2e56c + autoprefixer: registry.npmmirror.com/autoprefixer/9.5.1 + babel-eslint: registry.npmmirror.com/babel-eslint/10.1.0_eslint@6.7.2 + babel-jest: registry.npmmirror.com/babel-jest/23.6.0 + babel-plugin-dynamic-import-node: registry.nlark.com/babel-plugin-dynamic-import-node/2.3.3 + babel-polyfill: registry.npmmirror.com/babel-polyfill/6.26.0 + chalk: registry.nlark.com/chalk/2.4.2 + connect: registry.nlark.com/connect/3.6.6 + eslint: registry.npmmirror.com/eslint/6.7.2 + eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/6.2.2_eslint@6.7.2 + html-webpack-plugin: registry.npmmirror.com/html-webpack-plugin/3.2.0 + mockjs: registry.nlark.com/mockjs/1.0.1-beta3 + runjs: registry.npmmirror.com/runjs/4.3.2 + sass: registry.npmmirror.com/sass/1.26.8 + sass-loader: registry.npmmirror.com/sass-loader/8.0.2_sass@1.26.8 + script-ext-html-webpack-plugin: registry.npmmirror.com/script-ext-html-webpack-plugin/2.1.3_html-webpack-plugin@3.2.0 + serve-static: registry.nlark.com/serve-static/1.13.2 + svg-sprite-loader: registry.npmmirror.com/svg-sprite-loader/4.1.3 + svgo: registry.npmmirror.com/svgo/1.2.2 + vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.6.10 + +packages: + + registry.nlark.com/@babel/helper-plugin-utils/7.14.5: + resolution: {integrity: sha1-WsgizpfuxGdBq3ClF5ceRDpwxak=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz} + name: '@babel/helper-plugin-utils' + version: 7.14.5 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/@babel/helper-validator-identifier/7.15.7: + resolution: {integrity: sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz} + name: '@babel/helper-validator-identifier' + version: 7.15.7 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/@babel/helper-validator-option/7.14.5: + resolution: {integrity: sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz} + name: '@babel/helper-validator-option' + version: 7.14.5 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0: + resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz} + id: registry.nlark.com/@babel/plugin-syntax-async-generators/7.8.4 + name: '@babel/plugin-syntax-async-generators' + version: 7.8.4 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0: + resolution: {integrity: sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz} + id: registry.nlark.com/@babel/plugin-syntax-class-properties/7.12.13 + name: '@babel/plugin-syntax-class-properties' + version: 7.12.13 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0: + resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz} + id: registry.nlark.com/@babel/plugin-syntax-class-static-block/7.14.5 + name: '@babel/plugin-syntax-class-static-block' + version: 7.14.5 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-dynamic-import/7.8.3 + name: '@babel/plugin-syntax-dynamic-import' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-AolkqbqA28CUyRXEh618TnpmRlo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-export-namespace-from/7.8.3 + name: '@babel/plugin-syntax-export-namespace-from' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-json-strings/7.8.3 + name: '@babel/plugin-syntax-json-strings' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0: + resolution: {integrity: sha1-ypHvRjA1MESLkGZSusLp/plB9pk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz} + id: registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4 + name: '@babel/plugin-syntax-logical-assignment-operators' + version: 7.10.4 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3 + name: '@babel/plugin-syntax-nullish-coalescing-operator' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0: + resolution: {integrity: sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz} + id: registry.nlark.com/@babel/plugin-syntax-numeric-separator/7.10.4 + name: '@babel/plugin-syntax-numeric-separator' + version: 7.10.4 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-object-rest-spread/7.8.3 + name: '@babel/plugin-syntax-object-rest-spread' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/7.8.3 + name: '@babel/plugin-syntax-optional-catch-binding' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0: + resolution: {integrity: sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz} + id: registry.nlark.com/@babel/plugin-syntax-optional-chaining/7.8.3 + name: '@babel/plugin-syntax-optional-chaining' + version: 7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0: + resolution: {integrity: sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz} + id: registry.nlark.com/@babel/plugin-syntax-private-property-in-object/7.14.5 + name: '@babel/plugin-syntax-private-property-in-object' + version: 7.14.5 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0: + resolution: {integrity: sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz} + id: registry.nlark.com/@babel/plugin-syntax-top-level-await/7.14.5 + name: '@babel/plugin-syntax-top-level-await' + version: 7.14.5 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.nlark.com/@cnakazawa/watch/1.0.4: + resolution: {integrity: sha1-+GSuhQBND8q29QvpFBxNo2jRZWo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz} + name: '@cnakazawa/watch' + version: 1.0.4 + engines: {node: '>=0.1.95'} + hasBin: true + dependencies: + exec-sh: registry.nlark.com/exec-sh/0.3.6 + minimist: registry.nlark.com/minimist/1.2.5 + dev: true + + registry.nlark.com/@hapi/topo/3.1.6: + resolution: {integrity: sha1-aNk1+j6uf91asNf5U/MgXYsr/Ck=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@hapi/topo/download/@hapi/topo-3.1.6.tgz} + name: '@hapi/topo' + version: 3.1.6 + deprecated: This version has been deprecated and is no longer supported or maintained + dependencies: + '@hapi/hoek': registry.npmmirror.com/@hapi/hoek/8.5.1 + dev: true + + registry.nlark.com/@intervolga/optimize-cssnano-plugin/1.0.6_webpack@4.46.0: + resolution: {integrity: sha1-vnx4RhKLiPapsdEmGgrQbrXA/fg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intervolga/optimize-cssnano-plugin/download/@intervolga/optimize-cssnano-plugin-1.0.6.tgz} + id: registry.nlark.com/@intervolga/optimize-cssnano-plugin/1.0.6 + name: '@intervolga/optimize-cssnano-plugin' + version: 1.0.6 + peerDependencies: + webpack: ^4.0.0 + dependencies: + cssnano: registry.npmmirror.com/cssnano/4.1.11 + cssnano-preset-default: registry.npmmirror.com/cssnano-preset-default/4.0.8 + postcss: registry.npmmirror.com/postcss/7.0.39 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.nlark.com/@jest/source-map/24.9.0: + resolution: {integrity: sha1-DiY6lEML5LQdpoPMwea//ioZFxQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@jest/source-map/download/@jest/source-map-24.9.0.tgz} + name: '@jest/source-map' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + callsites: registry.nlark.com/callsites/3.1.0 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.nlark.com/@mrmlnc/readdir-enhanced/2.2.1: + resolution: {integrity: sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@mrmlnc/readdir-enhanced/download/@mrmlnc/readdir-enhanced-2.2.1.tgz} + name: '@mrmlnc/readdir-enhanced' + version: 2.2.1 + engines: {node: '>=4'} + dependencies: + call-me-maybe: registry.nlark.com/call-me-maybe/1.0.1 + glob-to-regexp: registry.nlark.com/glob-to-regexp/0.3.0 + dev: true + + registry.nlark.com/@nodelib/fs.stat/1.1.3: + resolution: {integrity: sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-1.1.3.tgz} + name: '@nodelib/fs.stat' + version: 1.1.3 + engines: {node: '>= 6'} + dev: true + + registry.nlark.com/@soda/friendly-errors-webpack-plugin/1.8.0_webpack@4.46.0: + resolution: {integrity: sha1-hHUdgqkwGdXJLAzw5FrFkIfNIkA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@soda/friendly-errors-webpack-plugin/download/@soda/friendly-errors-webpack-plugin-1.8.0.tgz} + id: registry.nlark.com/@soda/friendly-errors-webpack-plugin/1.8.0 + name: '@soda/friendly-errors-webpack-plugin' + version: 1.8.0 + engines: {node: '>=8.0.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + error-stack-parser: registry.nlark.com/error-stack-parser/2.0.6 + string-width: registry.npmmirror.com/string-width/2.1.1 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.nlark.com/@types/babel__core/7.1.16: + resolution: {integrity: sha1-vBLHS31l6C0ph2tdC69cYlrFhwI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.16.tgz} + name: '@types/babel__core' + version: 7.1.16 + dependencies: + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + '@types/babel__generator': registry.nlark.com/@types/babel__generator/7.6.3 + '@types/babel__template': registry.nlark.com/@types/babel__template/7.4.1 + '@types/babel__traverse': registry.nlark.com/@types/babel__traverse/7.14.2 + dev: true + + registry.nlark.com/@types/babel__generator/7.6.3: + resolution: {integrity: sha1-9Fa0ss55E392iqEw0kI9LwzPq6U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.3.tgz} + name: '@types/babel__generator' + version: 7.6.3 + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.nlark.com/@types/babel__template/7.4.1: + resolution: {integrity: sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.1.tgz} + name: '@types/babel__template' + version: 7.4.1 + dependencies: + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.nlark.com/@types/babel__traverse/7.14.2: + resolution: {integrity: sha1-/81HC7s/i/MEgWePtVAieMqDOkM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.14.2.tgz} + name: '@types/babel__traverse' + version: 7.14.2 + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.nlark.com/@types/istanbul-lib-coverage/2.0.3: + resolution: {integrity: sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz} + name: '@types/istanbul-lib-coverage' + version: 2.0.3 + dev: true + + registry.nlark.com/@types/istanbul-lib-report/3.0.0: + resolution: {integrity: sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz} + name: '@types/istanbul-lib-report' + version: 3.0.0 + dependencies: + '@types/istanbul-lib-coverage': registry.nlark.com/@types/istanbul-lib-coverage/2.0.3 + dev: true + + registry.nlark.com/@types/istanbul-reports/1.1.2: + resolution: {integrity: sha1-6HXMaJ5HvOVJ7IHz315vbxHPrrI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-1.1.2.tgz} + name: '@types/istanbul-reports' + version: 1.1.2 + dependencies: + '@types/istanbul-lib-coverage': registry.nlark.com/@types/istanbul-lib-coverage/2.0.3 + '@types/istanbul-lib-report': registry.nlark.com/@types/istanbul-lib-report/3.0.0 + dev: true + + registry.nlark.com/@types/jest/24.9.1: + resolution: {integrity: sha1-Arr5Vzx48bmXSl82d4s2aqd71TQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/jest/download/@types/jest-24.9.1.tgz} + name: '@types/jest' + version: 24.9.1 + dependencies: + jest-diff: registry.npmmirror.com/jest-diff/24.9.0 + dev: true + + registry.nlark.com/@types/json-schema/7.0.9: + resolution: {integrity: sha1-l+3JA36gw4WFMgsolk3eOznkZg0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz} + name: '@types/json-schema' + version: 7.0.9 + dev: true + + registry.nlark.com/@types/minimatch/3.0.5: + resolution: {integrity: sha1-EAHMXmo3BLg8I2An538vWOoBD0A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/minimatch/download/@types/minimatch-3.0.5.tgz} + name: '@types/minimatch' + version: 3.0.5 + dev: true + + registry.nlark.com/@types/normalize-package-data/2.4.1: + resolution: {integrity: sha1-0zV0eaD9/dWQf+Z+F+CoXJBuEwE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.1.tgz} + name: '@types/normalize-package-data' + version: 2.4.1 + dev: true + + registry.nlark.com/@types/q/1.5.5: + resolution: {integrity: sha1-daKo59irSyMEFFBdkjNdHctTpt8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/q/download/@types/q-1.5.5.tgz} + name: '@types/q' + version: 1.5.5 + dev: true + + registry.nlark.com/@types/stack-utils/1.0.1: + resolution: {integrity: sha1-CoUdO9lkmPolwzq3J47TvWXwbD4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz} + name: '@types/stack-utils' + version: 1.0.1 + dev: true + + registry.nlark.com/@types/yargs-parser/20.2.1: + resolution: {integrity: sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.1.tgz} + name: '@types/yargs-parser' + version: 20.2.1 + dev: true + + registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/1.2.1: + resolution: {integrity: sha1-MWJKelBfsU2h1YAjclpMXycOaoE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/download/@vue/babel-helper-vue-jsx-merge-props-1.2.1.tgz} + name: '@vue/babel-helper-vue-jsx-merge-props' + version: 1.2.1 + dev: true + + registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.16.0: + resolution: {integrity: sha1-ZGBGxlLC8CQnJ/NFGdkXsGQEHtc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/download/@vue/babel-plugin-transform-vue-jsx-1.2.1.tgz} + id: registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/1.2.1 + name: '@vue/babel-plugin-transform-vue-jsx' + version: 1.2.1 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + '@vue/babel-helper-vue-jsx-merge-props': registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/1.2.1 + html-tags: registry.nlark.com/html-tags/2.0.0 + lodash.kebabcase: registry.npmmirror.com/lodash.kebabcase/4.1.1 + svg-tags: registry.nlark.com/svg-tags/1.0.0 + dev: true + + registry.nlark.com/@vue/babel-preset-jsx/1.2.4_@babel+core@7.16.0: + resolution: {integrity: sha1-kv6nnbbxOwHoDToAmeKSS9y+Toc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-preset-jsx/download/@vue/babel-preset-jsx-1.2.4.tgz} + id: registry.nlark.com/@vue/babel-preset-jsx/1.2.4 + name: '@vue/babel-preset-jsx' + version: 1.2.4 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@vue/babel-helper-vue-jsx-merge-props': registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/1.2.1 + '@vue/babel-plugin-transform-vue-jsx': registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.16.0 + '@vue/babel-sugar-composition-api-inject-h': registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/1.2.1_@babel+core@7.16.0 + '@vue/babel-sugar-composition-api-render-instance': registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/1.2.4_@babel+core@7.16.0 + '@vue/babel-sugar-functional-vue': registry.nlark.com/@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.16.0 + '@vue/babel-sugar-inject-h': registry.nlark.com/@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.16.0 + '@vue/babel-sugar-v-model': registry.nlark.com/@vue/babel-sugar-v-model/1.2.3_@babel+core@7.16.0 + '@vue/babel-sugar-v-on': registry.nlark.com/@vue/babel-sugar-v-on/1.2.3_@babel+core@7.16.0 + dev: true + + registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/1.2.1_@babel+core@7.16.0: + resolution: {integrity: sha1-BdbgxDJxDjdYKyvppgSbaJtvA+s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/download/@vue/babel-sugar-composition-api-inject-h-1.2.1.tgz} + id: registry.nlark.com/@vue/babel-sugar-composition-api-inject-h/1.2.1 + name: '@vue/babel-sugar-composition-api-inject-h' + version: 1.2.1 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + dev: true + + registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/1.2.4_@babel+core@7.16.0: + resolution: {integrity: sha1-5MvGmXw0T6wnF4WteikyXFHWjRk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/download/@vue/babel-sugar-composition-api-render-instance-1.2.4.tgz} + id: registry.nlark.com/@vue/babel-sugar-composition-api-render-instance/1.2.4 + name: '@vue/babel-sugar-composition-api-render-instance' + version: 1.2.4 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + dev: true + + registry.nlark.com/@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.16.0: + resolution: {integrity: sha1-JnqayNeHyW7b8Dzj85LEnam9Jlg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-sugar-functional-vue/download/@vue/babel-sugar-functional-vue-1.2.2.tgz} + id: registry.nlark.com/@vue/babel-sugar-functional-vue/1.2.2 + name: '@vue/babel-sugar-functional-vue' + version: 1.2.2 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + dev: true + + registry.nlark.com/@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.16.0: + resolution: {integrity: sha1-1zjTyJM2fshJHcu2abAAkZKT46o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-sugar-inject-h/download/@vue/babel-sugar-inject-h-1.2.2.tgz} + id: registry.nlark.com/@vue/babel-sugar-inject-h/1.2.2 + name: '@vue/babel-sugar-inject-h' + version: 1.2.2 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + dev: true + + registry.nlark.com/@vue/babel-sugar-v-model/1.2.3_@babel+core@7.16.0: + resolution: {integrity: sha1-+h8pulHr8KoabDX6ZtU5vEWaGPI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-sugar-v-model/download/@vue/babel-sugar-v-model-1.2.3.tgz} + id: registry.nlark.com/@vue/babel-sugar-v-model/1.2.3 + name: '@vue/babel-sugar-v-model' + version: 1.2.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + '@vue/babel-helper-vue-jsx-merge-props': registry.nlark.com/@vue/babel-helper-vue-jsx-merge-props/1.2.1 + '@vue/babel-plugin-transform-vue-jsx': registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.16.0 + camelcase: registry.nlark.com/camelcase/5.3.1 + html-tags: registry.nlark.com/html-tags/2.0.0 + svg-tags: registry.nlark.com/svg-tags/1.0.0 + dev: true + + registry.nlark.com/@vue/babel-sugar-v-on/1.2.3_@babel+core@7.16.0: + resolution: {integrity: sha1-NCNnF4WGpp85LwS/ujICHQKROto=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-sugar-v-on/download/@vue/babel-sugar-v-on-1.2.3.tgz} + id: registry.nlark.com/@vue/babel-sugar-v-on/1.2.3 + name: '@vue/babel-sugar-v-on' + version: 1.2.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + '@vue/babel-plugin-transform-vue-jsx': registry.nlark.com/@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.16.0 + camelcase: registry.nlark.com/camelcase/5.3.1 + dev: true + + registry.nlark.com/@vue/preload-webpack-plugin/1.1.2_502c618fc8a7d35df07e93275324a2d0: + resolution: {integrity: sha1-zrkktOyzucQ4ccekKaAvhCPmIas=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/preload-webpack-plugin/download/@vue/preload-webpack-plugin-1.1.2.tgz} + id: registry.nlark.com/@vue/preload-webpack-plugin/1.1.2 + name: '@vue/preload-webpack-plugin' + version: 1.1.2 + engines: {node: '>=6.0.0'} + peerDependencies: + html-webpack-plugin: '>=2.26.0' + webpack: '>=4.0.0' + dependencies: + html-webpack-plugin: registry.npmmirror.com/html-webpack-plugin/3.2.0_webpack@4.46.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.nlark.com/@vue/web-component-wrapper/1.3.0: + resolution: {integrity: sha1-trQKdiVCnSvXwigd26YB7QXcfxo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/web-component-wrapper/download/@vue/web-component-wrapper-1.3.0.tgz} + name: '@vue/web-component-wrapper' + version: 1.3.0 + dev: true + + registry.nlark.com/@webassemblyjs/floating-point-hex-parser/1.9.0: + resolution: {integrity: sha1-PD07Jxvd/ITesA9xNEQ4MR1S/7Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/floating-point-hex-parser/download/@webassemblyjs/floating-point-hex-parser-1.9.0.tgz} + name: '@webassemblyjs/floating-point-hex-parser' + version: 1.9.0 + dev: true + + registry.nlark.com/@webassemblyjs/helper-fsm/1.9.0: + resolution: {integrity: sha1-wFJWtxJEIUZx9LCOwQitY7cO3bg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/helper-fsm/download/@webassemblyjs/helper-fsm-1.9.0.tgz} + name: '@webassemblyjs/helper-fsm' + version: 1.9.0 + dev: true + + registry.nlark.com/@webassemblyjs/helper-module-context/1.9.0: + resolution: {integrity: sha1-JdiIS3aDmHGgimxvgGw5ee9xLwc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/helper-module-context/download/@webassemblyjs/helper-module-context-1.9.0.tgz} + name: '@webassemblyjs/helper-module-context' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + dev: true + + registry.nlark.com/@webassemblyjs/utf8/1.9.0: + resolution: {integrity: sha1-BNM7Y2945qaBMifoJAL3Y3tiKas=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/utf8/download/@webassemblyjs/utf8-1.9.0.tgz} + name: '@webassemblyjs/utf8' + version: 1.9.0 + dev: true + + registry.nlark.com/@webassemblyjs/wasm-edit/1.9.0: + resolution: {integrity: sha1-P+bXnT8PkiGDqoYALELdJWz+6c8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/wasm-edit/download/@webassemblyjs/wasm-edit-1.9.0.tgz} + name: '@webassemblyjs/wasm-edit' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer/1.9.0 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/1.9.0 + '@webassemblyjs/helper-wasm-section': registry.npmmirror.com/@webassemblyjs/helper-wasm-section/1.9.0 + '@webassemblyjs/wasm-gen': registry.nlark.com/@webassemblyjs/wasm-gen/1.9.0 + '@webassemblyjs/wasm-opt': registry.npmmirror.com/@webassemblyjs/wasm-opt/1.9.0 + '@webassemblyjs/wasm-parser': registry.nlark.com/@webassemblyjs/wasm-parser/1.9.0 + '@webassemblyjs/wast-printer': registry.npmmirror.com/@webassemblyjs/wast-printer/1.9.0 + dev: true + + registry.nlark.com/@webassemblyjs/wasm-gen/1.9.0: + resolution: {integrity: sha1-ULxw7Gje2OJ2OwGhQYv0NJGnpJw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/wasm-gen/download/@webassemblyjs/wasm-gen-1.9.0.tgz} + name: '@webassemblyjs/wasm-gen' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/1.9.0 + '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754/1.9.0 + '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128/1.9.0 + '@webassemblyjs/utf8': registry.nlark.com/@webassemblyjs/utf8/1.9.0 + dev: true + + registry.nlark.com/@webassemblyjs/wasm-parser/1.9.0: + resolution: {integrity: sha1-nUjkSCbfSmWYKUqmyHRp1kL/9l4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@webassemblyjs/wasm-parser/download/@webassemblyjs/wasm-parser-1.9.0.tgz} + name: '@webassemblyjs/wasm-parser' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error/1.9.0 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/1.9.0 + '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754/1.9.0 + '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128/1.9.0 + '@webassemblyjs/utf8': registry.nlark.com/@webassemblyjs/utf8/1.9.0 + dev: true + + registry.nlark.com/@xtuc/ieee754/1.2.0: + resolution: {integrity: sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@xtuc/ieee754/download/@xtuc/ieee754-1.2.0.tgz} + name: '@xtuc/ieee754' + version: 1.2.0 + dev: true + + registry.nlark.com/abab/2.0.5: + resolution: {integrity: sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/abab/download/abab-2.0.5.tgz} + name: abab + version: 2.0.5 + dev: true + + registry.nlark.com/abbrev/1.1.1: + resolution: {integrity: sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/abbrev/download/abbrev-1.1.1.tgz} + name: abbrev + version: 1.1.1 + dev: true + + registry.nlark.com/accepts/1.3.7: + resolution: {integrity: sha1-UxvHJlF6OytB+FACHGzBXqq1B80=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/accepts/download/accepts-1.3.7.tgz} + name: accepts + version: 1.3.7 + engines: {node: '>= 0.6'} + dependencies: + mime-types: registry.npmmirror.com/mime-types/2.1.34 + negotiator: registry.npmmirror.com/negotiator/0.6.2 + dev: true + + registry.nlark.com/acorn-globals/4.3.4: + resolution: {integrity: sha1-n6GSat3BHJcwjE5m163Q1Awycuc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-globals/download/acorn-globals-4.3.4.tgz} + name: acorn-globals + version: 4.3.4 + dependencies: + acorn: registry.nlark.com/acorn/6.4.2 + acorn-walk: registry.nlark.com/acorn-walk/6.2.0 + dev: true + + registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1: + resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz} + id: registry.nlark.com/acorn-jsx/5.3.2 + name: acorn-jsx + version: 5.3.2 + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: registry.nlark.com/acorn/7.4.1 + dev: true + + registry.nlark.com/acorn-walk/6.2.0: + resolution: {integrity: sha1-Ejy487hMIXHx9/slJhWxx4prGow=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-walk/download/acorn-walk-6.2.0.tgz} + name: acorn-walk + version: 6.2.0 + engines: {node: '>=0.4.0'} + dev: true + + registry.nlark.com/acorn-walk/7.2.0: + resolution: {integrity: sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz} + name: acorn-walk + version: 7.2.0 + engines: {node: '>=0.4.0'} + dev: true + + registry.nlark.com/acorn/5.7.4: + resolution: {integrity: sha1-Po2KmUfQWZoXltECJddDL0pKz14=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn/download/acorn-5.7.4.tgz} + name: acorn + version: 5.7.4 + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + registry.nlark.com/acorn/6.4.2: + resolution: {integrity: sha1-NYZv1xBSjpLeEM8GAWSY5H454eY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn/download/acorn-6.4.2.tgz} + name: acorn + version: 6.4.2 + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + registry.nlark.com/acorn/7.4.1: + resolution: {integrity: sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz} + name: acorn + version: 7.4.1 + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + registry.nlark.com/address/1.1.2: + resolution: {integrity: sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/address/download/address-1.1.2.tgz} + name: address + version: 1.1.2 + engines: {node: '>= 0.12.0'} + dev: true + + registry.nlark.com/aggregate-error/3.1.0: + resolution: {integrity: sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz} + name: aggregate-error + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + clean-stack: registry.nlark.com/clean-stack/2.2.0 + indent-string: registry.nlark.com/indent-string/4.0.0 + dev: true + + registry.nlark.com/ajv-errors/1.0.1_ajv@6.12.6: + resolution: {integrity: sha1-81mGrOuRr63sQQL72FAUlQzvpk0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ajv-errors/download/ajv-errors-1.0.1.tgz} + id: registry.nlark.com/ajv-errors/1.0.1 + name: ajv-errors + version: 1.0.1 + peerDependencies: + ajv: '>=5.0.0' + dependencies: + ajv: registry.npmmirror.com/ajv/6.12.6 + dev: true + + registry.nlark.com/ajv-keywords/3.5.2_ajv@6.12.6: + resolution: {integrity: sha1-MfKdpatuANHC0yms97WSlhTVAU0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz} + id: registry.nlark.com/ajv-keywords/3.5.2 + name: ajv-keywords + version: 3.5.2 + peerDependencies: + ajv: ^6.9.1 + dependencies: + ajv: registry.npmmirror.com/ajv/6.12.6 + dev: true + + registry.nlark.com/alphanum-sort/1.0.2: + resolution: {integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/alphanum-sort/download/alphanum-sort-1.0.2.tgz} + name: alphanum-sort + version: 1.0.2 + dev: true + + registry.nlark.com/ansi-colors/3.2.4: + resolution: {integrity: sha1-46PaS/uubIapwoViXeEkojQCb78=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-colors/download/ansi-colors-3.2.4.tgz} + name: ansi-colors + version: 3.2.4 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/ansi-escapes/3.2.0: + resolution: {integrity: sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz} + name: ansi-escapes + version: 3.2.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/ansi-escapes/4.3.2: + resolution: {integrity: sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz} + name: ansi-escapes + version: 4.3.2 + engines: {node: '>=8'} + dependencies: + type-fest: registry.npmmirror.com/type-fest/0.21.3 + dev: true + + registry.nlark.com/ansi-regex/2.1.1: + resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz} + name: ansi-regex + version: 2.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/ansi-regex/3.0.0: + resolution: {integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-3.0.0.tgz} + name: ansi-regex + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/ansi-regex/4.1.0: + resolution: {integrity: sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-4.1.0.tgz} + name: ansi-regex + version: 4.1.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/ansi-regex/5.0.1: + resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz} + name: ansi-regex + version: 5.0.1 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/ansi-styles/2.2.1: + resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz} + name: ansi-styles + version: 2.2.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/ansi-styles/3.2.1: + resolution: {integrity: sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz} + name: ansi-styles + version: 3.2.1 + engines: {node: '>=4'} + dependencies: + color-convert: registry.nlark.com/color-convert/1.9.3 + dev: true + + registry.nlark.com/ansi-styles/4.3.0: + resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz} + name: ansi-styles + version: 4.3.0 + engines: {node: '>=8'} + dependencies: + color-convert: registry.nlark.com/color-convert/2.0.1 + + registry.nlark.com/any-promise/1.3.0: + resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz} + name: any-promise + version: 1.3.0 + dev: true + + registry.nlark.com/anymatch/2.0.0: + resolution: {integrity: sha1-vLJLTzeTTZqnrBe0ra+J58du8us=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/anymatch/download/anymatch-2.0.0.tgz} + name: anymatch + version: 2.0.0 + dependencies: + micromatch: registry.nlark.com/micromatch/3.1.10 + normalize-path: registry.nlark.com/normalize-path/2.1.1 + dev: true + + registry.nlark.com/anymatch/3.1.2: + resolution: {integrity: sha1-wFV8CWrzLxBhmPT04qODU343hxY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz} + name: anymatch + version: 3.1.2 + engines: {node: '>= 8'} + dependencies: + normalize-path: registry.nlark.com/normalize-path/3.0.0 + picomatch: registry.nlark.com/picomatch/2.3.0 + dev: true + + registry.nlark.com/aproba/1.2.0: + resolution: {integrity: sha1-aALmJk79GMeQobDVF/DyYnvyyUo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/aproba/download/aproba-1.2.0.tgz} + name: aproba + version: 1.2.0 + dev: true + + registry.nlark.com/arch/2.2.0: + resolution: {integrity: sha1-G8R4GPMFdk8jqzMGsL/AhsWinRE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arch/download/arch-2.2.0.tgz} + name: arch + version: 2.2.0 + dev: true + + registry.nlark.com/argparse/1.0.10: + resolution: {integrity: sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz} + name: argparse + version: 1.0.10 + dependencies: + sprintf-js: registry.nlark.com/sprintf-js/1.0.3 + dev: true + + registry.nlark.com/arr-diff/2.0.0: + resolution: {integrity: sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arr-diff/download/arr-diff-2.0.0.tgz} + name: arr-diff + version: 2.0.0 + engines: {node: '>=0.10.0'} + dependencies: + arr-flatten: registry.nlark.com/arr-flatten/1.1.0 + dev: true + + registry.nlark.com/arr-diff/4.0.0: + resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arr-diff/download/arr-diff-4.0.0.tgz} + name: arr-diff + version: 4.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/arr-flatten/1.1.0: + resolution: {integrity: sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arr-flatten/download/arr-flatten-1.1.0.tgz} + name: arr-flatten + version: 1.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/arr-union/3.1.0: + resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arr-union/download/arr-union-3.1.0.tgz} + name: arr-union + version: 3.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/array-equal/1.0.0: + resolution: {integrity: sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-equal/download/array-equal-1.0.0.tgz} + name: array-equal + version: 1.0.0 + dev: true + + registry.nlark.com/array-flatten/1.1.1: + resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-flatten/download/array-flatten-1.1.1.tgz} + name: array-flatten + version: 1.1.1 + dev: true + + registry.nlark.com/array-flatten/2.1.2: + resolution: {integrity: sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-flatten/download/array-flatten-2.1.2.tgz} + name: array-flatten + version: 2.1.2 + dev: true + + registry.nlark.com/array-union/1.0.2: + resolution: {integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-union/download/array-union-1.0.2.tgz} + name: array-union + version: 1.0.2 + engines: {node: '>=0.10.0'} + dependencies: + array-uniq: registry.nlark.com/array-uniq/1.0.3 + dev: true + + registry.nlark.com/array-uniq/1.0.3: + resolution: {integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-uniq/download/array-uniq-1.0.3.tgz} + name: array-uniq + version: 1.0.3 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/array-unique/0.2.1: + resolution: {integrity: sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-unique/download/array-unique-0.2.1.tgz} + name: array-unique + version: 0.2.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/array-unique/0.3.2: + resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-unique/download/array-unique-0.3.2.tgz} + name: array-unique + version: 0.3.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/arrify/1.0.1: + resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz} + name: arrify + version: 1.0.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/assert-plus/1.0.0: + resolution: {integrity: sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/assert-plus/download/assert-plus-1.0.0.tgz} + name: assert-plus + version: 1.0.0 + engines: {node: '>=0.8'} + dev: true + + registry.nlark.com/assert/1.5.0: + resolution: {integrity: sha1-VcEJqvbgrv2z3EtxJAxwv1dLGOs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/assert/download/assert-1.5.0.tgz} + name: assert + version: 1.5.0 + dependencies: + object-assign: registry.nlark.com/object-assign/4.1.1 + util: registry.nlark.com/util/0.10.3 + dev: true + + registry.nlark.com/assign-symbols/1.0.0: + resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz} + name: assign-symbols + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/astral-regex/1.0.0: + resolution: {integrity: sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/astral-regex/download/astral-regex-1.0.0.tgz} + name: astral-regex + version: 1.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/async-each/1.0.3: + resolution: {integrity: sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz} + name: async-each + version: 1.0.3 + dev: true + + registry.nlark.com/async-limiter/1.0.1: + resolution: {integrity: sha1-3TeelPDbgxCwgpH51kwyCXZmF/0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/async-limiter/download/async-limiter-1.0.1.tgz} + name: async-limiter + version: 1.0.1 + dev: true + + registry.nlark.com/asynckit/0.4.0: + resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/asynckit/download/asynckit-0.4.0.tgz} + name: asynckit + version: 0.4.0 + dev: true + + registry.nlark.com/atob/2.1.2: + resolution: {integrity: sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/atob/download/atob-2.1.2.tgz} + name: atob + version: 2.1.2 + engines: {node: '>= 4.5.0'} + hasBin: true + dev: true + + registry.nlark.com/aws-sign2/0.7.0: + resolution: {integrity: sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/aws-sign2/download/aws-sign2-0.7.0.tgz} + name: aws-sign2 + version: 0.7.0 + dev: true + + registry.nlark.com/aws4/1.11.0: + resolution: {integrity: sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/aws4/download/aws4-1.11.0.tgz} + name: aws4 + version: 1.11.0 + dev: true + + registry.nlark.com/babel-code-frame/6.26.0: + resolution: {integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-code-frame/download/babel-code-frame-6.26.0.tgz} + name: babel-code-frame + version: 6.26.0 + dependencies: + chalk: registry.nlark.com/chalk/1.1.3 + esutils: registry.nlark.com/esutils/2.0.3 + js-tokens: registry.nlark.com/js-tokens/3.0.2 + dev: true + + registry.nlark.com/babel-helper-vue-jsx-merge-props/2.0.3: + resolution: {integrity: sha1-Iq69OzOQIyjlEyk6jkmSs4T58bY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz} + name: babel-helper-vue-jsx-merge-props + version: 2.0.3 + dev: false + + registry.nlark.com/babel-plugin-dynamic-import-node/2.3.3: + resolution: {integrity: sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz} + name: babel-plugin-dynamic-import-node + version: 2.3.3 + dependencies: + object.assign: registry.nlark.com/object.assign/4.1.2 + dev: true + + registry.nlark.com/babel-plugin-jest-hoist/23.2.0: + resolution: {integrity: sha1-5h+uBaHKiAGq3uV6bWa4zvr0QWc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-23.2.0.tgz} + name: babel-plugin-jest-hoist + version: 23.2.0 + dev: true + + registry.nlark.com/babel-plugin-jest-hoist/24.9.0: + resolution: {integrity: sha1-T4NwketAfgFEfIhDy+xUbQAC11Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz} + name: babel-plugin-jest-hoist + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@types/babel__traverse': registry.nlark.com/@types/babel__traverse/7.14.2 + dev: true + + registry.nlark.com/babel-plugin-syntax-object-rest-spread/6.13.0: + resolution: {integrity: sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz} + name: babel-plugin-syntax-object-rest-spread + version: 6.13.0 + dev: true + + registry.nlark.com/babel-preset-jest/23.2.0: + resolution: {integrity: sha1-jsegOhOPABoaj7HoETZSvxpV2kY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-23.2.0.tgz} + name: babel-preset-jest + version: 23.2.0 + dependencies: + babel-plugin-jest-hoist: registry.nlark.com/babel-plugin-jest-hoist/23.2.0 + babel-plugin-syntax-object-rest-spread: registry.nlark.com/babel-plugin-syntax-object-rest-spread/6.13.0 + dev: true + + registry.nlark.com/babel-preset-jest/24.9.0_@babel+core@7.16.0: + resolution: {integrity: sha1-GStSHiIX+x0fZ89z9wwzZlCtPNw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-24.9.0.tgz} + id: registry.nlark.com/babel-preset-jest/24.9.0 + name: babel-preset-jest + version: 24.9.0 + engines: {node: '>= 6'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-syntax-object-rest-spread': registry.nlark.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0 + babel-plugin-jest-hoist: registry.nlark.com/babel-plugin-jest-hoist/24.9.0 + dev: true + + registry.nlark.com/babel-runtime/6.26.0: + resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-runtime/download/babel-runtime-6.26.0.tgz} + name: babel-runtime + version: 6.26.0 + dependencies: + core-js: registry.npmmirror.com/core-js/2.6.12 + regenerator-runtime: registry.nlark.com/regenerator-runtime/0.11.1 + + registry.nlark.com/babel-template/6.26.0: + resolution: {integrity: sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-template/download/babel-template-6.26.0.tgz} + name: babel-template + version: 6.26.0 + dependencies: + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + babel-traverse: registry.npmmirror.com/babel-traverse/6.26.0 + babel-types: registry.nlark.com/babel-types/6.26.0 + babylon: registry.nlark.com/babylon/6.18.0 + lodash: registry.nlark.com/lodash/4.17.21 + dev: true + + registry.nlark.com/babel-types/6.26.0: + resolution: {integrity: sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-types/download/babel-types-6.26.0.tgz} + name: babel-types + version: 6.26.0 + dependencies: + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + esutils: registry.nlark.com/esutils/2.0.3 + lodash: registry.nlark.com/lodash/4.17.21 + to-fast-properties: registry.nlark.com/to-fast-properties/1.0.3 + dev: true + + registry.nlark.com/babylon/6.18.0: + resolution: {integrity: sha1-ry87iPpvXB5MY00aD46sT1WzleM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babylon/download/babylon-6.18.0.tgz} + name: babylon + version: 6.18.0 + hasBin: true + dev: true + + registry.nlark.com/balanced-match/1.0.2: + resolution: {integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz} + name: balanced-match + version: 1.0.2 + + registry.nlark.com/base/0.11.2: + resolution: {integrity: sha1-e95c7RRbbVUakNuH+DxVi060io8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/base/download/base-0.11.2.tgz} + name: base + version: 0.11.2 + engines: {node: '>=0.10.0'} + dependencies: + cache-base: registry.npmmirror.com/cache-base/1.0.1 + class-utils: registry.nlark.com/class-utils/0.3.6 + component-emitter: registry.nlark.com/component-emitter/1.3.0 + define-property: registry.nlark.com/define-property/1.0.0 + isobject: registry.nlark.com/isobject/3.0.1 + mixin-deep: registry.nlark.com/mixin-deep/1.3.2 + pascalcase: registry.nlark.com/pascalcase/0.1.1 + dev: true + + registry.nlark.com/base64-js/1.5.1: + resolution: {integrity: sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/base64-js/download/base64-js-1.5.1.tgz} + name: base64-js + version: 1.5.1 + dev: true + + registry.nlark.com/bcrypt-pbkdf/1.0.2: + resolution: {integrity: sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz} + name: bcrypt-pbkdf + version: 1.0.2 + dependencies: + tweetnacl: registry.nlark.com/tweetnacl/0.14.5 + dev: true + + registry.nlark.com/bfj/6.1.2: + resolution: {integrity: sha1-MlyGGoIryzWKQceKM7jm4ght3n8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bfj/download/bfj-6.1.2.tgz} + name: bfj + version: 6.1.2 + engines: {node: '>= 6.0.0'} + dependencies: + bluebird: registry.nlark.com/bluebird/3.7.2 + check-types: registry.nlark.com/check-types/8.0.3 + hoopy: registry.nlark.com/hoopy/0.1.4 + tryer: registry.nlark.com/tryer/1.0.1 + dev: true + + registry.nlark.com/big.js/3.2.0: + resolution: {integrity: sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/big.js/download/big.js-3.2.0.tgz} + name: big.js + version: 3.2.0 + dev: true + + registry.nlark.com/big.js/5.2.2: + resolution: {integrity: sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz} + name: big.js + version: 5.2.2 + + registry.nlark.com/binary-extensions/1.13.1: + resolution: {integrity: sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/binary-extensions/download/binary-extensions-1.13.1.tgz} + name: binary-extensions + version: 1.13.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/binary-extensions/2.2.0: + resolution: {integrity: sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz} + name: binary-extensions + version: 2.2.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/bindings/1.5.0: + resolution: {integrity: sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz} + name: bindings + version: 1.5.0 + dependencies: + file-uri-to-path: registry.nlark.com/file-uri-to-path/1.0.0 + dev: true + + registry.nlark.com/bluebird/3.7.2: + resolution: {integrity: sha1-nyKcFb4nJFT/qXOs4NvueaGww28=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bluebird/download/bluebird-3.7.2.tgz} + name: bluebird + version: 3.7.2 + dev: true + + registry.nlark.com/bn.js/4.12.0: + resolution: {integrity: sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bn.js/download/bn.js-4.12.0.tgz} + name: bn.js + version: 4.12.0 + dev: true + + registry.nlark.com/bn.js/5.2.0: + resolution: {integrity: sha1-NYhgZ0OWxpl3canQUfzBtX1K4AI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bn.js/download/bn.js-5.2.0.tgz} + name: bn.js + version: 5.2.0 + dev: true + + registry.nlark.com/body-parser/1.19.0: + resolution: {integrity: sha1-lrJwnlfJxOCab9Zqj9l5hE9p8Io=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/body-parser/download/body-parser-1.19.0.tgz} + name: body-parser + version: 1.19.0 + engines: {node: '>= 0.8'} + dependencies: + bytes: registry.nlark.com/bytes/3.1.0 + content-type: registry.nlark.com/content-type/1.0.4 + debug: registry.npmmirror.com/debug/2.6.9 + depd: registry.nlark.com/depd/1.1.2 + http-errors: registry.nlark.com/http-errors/1.7.2 + iconv-lite: registry.nlark.com/iconv-lite/0.4.24 + on-finished: registry.nlark.com/on-finished/2.3.0 + qs: registry.nlark.com/qs/6.7.0 + raw-body: registry.npmmirror.com/raw-body/2.4.0 + type-is: registry.nlark.com/type-is/1.6.18 + dev: true + + registry.nlark.com/bonjour/3.5.0: + resolution: {integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bonjour/download/bonjour-3.5.0.tgz} + name: bonjour + version: 3.5.0 + dependencies: + array-flatten: registry.nlark.com/array-flatten/2.1.2 + deep-equal: registry.nlark.com/deep-equal/1.1.1 + dns-equal: registry.nlark.com/dns-equal/1.0.0 + dns-txt: registry.nlark.com/dns-txt/2.0.2 + multicast-dns: registry.npmmirror.com/multicast-dns/6.2.3 + multicast-dns-service-types: registry.nlark.com/multicast-dns-service-types/1.1.0 + dev: true + + registry.nlark.com/boolbase/1.0.0: + resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz} + name: boolbase + version: 1.0.0 + dev: true + + registry.nlark.com/brace-expansion/1.1.11: + resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz} + name: brace-expansion + version: 1.1.11 + dependencies: + balanced-match: registry.nlark.com/balanced-match/1.0.2 + concat-map: registry.nlark.com/concat-map/0.0.1 + + registry.nlark.com/braces/1.8.5: + resolution: {integrity: sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/braces/download/braces-1.8.5.tgz} + name: braces + version: 1.8.5 + engines: {node: '>=0.10.0'} + dependencies: + expand-range: registry.nlark.com/expand-range/1.8.2 + preserve: registry.nlark.com/preserve/0.2.0 + repeat-element: registry.nlark.com/repeat-element/1.1.4 + dev: true + + registry.nlark.com/braces/2.3.2: + resolution: {integrity: sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/braces/download/braces-2.3.2.tgz} + name: braces + version: 2.3.2 + engines: {node: '>=0.10.0'} + dependencies: + arr-flatten: registry.nlark.com/arr-flatten/1.1.0 + array-unique: registry.nlark.com/array-unique/0.3.2 + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + fill-range: registry.nlark.com/fill-range/4.0.0 + isobject: registry.nlark.com/isobject/3.0.1 + repeat-element: registry.nlark.com/repeat-element/1.1.4 + snapdragon: registry.nlark.com/snapdragon/0.8.2 + snapdragon-node: registry.nlark.com/snapdragon-node/2.1.1 + split-string: registry.nlark.com/split-string/3.1.0 + to-regex: registry.nlark.com/to-regex/3.0.2 + dev: true + + registry.nlark.com/braces/3.0.2: + resolution: {integrity: sha1-NFThpGLujVmeI23zNs2epPiv4Qc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/braces/download/braces-3.0.2.tgz} + name: braces + version: 3.0.2 + engines: {node: '>=8'} + dependencies: + fill-range: registry.nlark.com/fill-range/7.0.1 + dev: true + + registry.nlark.com/brorand/1.1.0: + resolution: {integrity: sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz} + name: brorand + version: 1.1.0 + dev: true + + registry.nlark.com/browser-process-hrtime/1.0.0: + resolution: {integrity: sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz} + name: browser-process-hrtime + version: 1.0.0 + dev: true + + registry.nlark.com/browser-resolve/1.11.3: + resolution: {integrity: sha1-m3y7PQ9RDky4a9vXlhJNKLWJCvY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browser-resolve/download/browser-resolve-1.11.3.tgz} + name: browser-resolve + version: 1.11.3 + dependencies: + resolve: registry.nlark.com/resolve/1.1.7 + dev: true + + registry.nlark.com/browserify-aes/1.2.0: + resolution: {integrity: sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz} + name: browserify-aes + version: 1.2.0 + dependencies: + buffer-xor: registry.nlark.com/buffer-xor/1.0.3 + cipher-base: registry.nlark.com/cipher-base/1.0.4 + create-hash: registry.nlark.com/create-hash/1.2.0 + evp_bytestokey: registry.nlark.com/evp_bytestokey/1.0.3 + inherits: registry.nlark.com/inherits/2.0.4 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/browserify-cipher/1.0.1: + resolution: {integrity: sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz} + name: browserify-cipher + version: 1.0.1 + dependencies: + browserify-aes: registry.nlark.com/browserify-aes/1.2.0 + browserify-des: registry.nlark.com/browserify-des/1.0.2 + evp_bytestokey: registry.nlark.com/evp_bytestokey/1.0.3 + dev: true + + registry.nlark.com/browserify-des/1.0.2: + resolution: {integrity: sha1-OvTx9Zg5QDVy8cZiBDdfen9wPpw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz} + name: browserify-des + version: 1.0.2 + dependencies: + cipher-base: registry.nlark.com/cipher-base/1.0.4 + des.js: registry.npmmirror.com/des.js/1.0.1 + inherits: registry.nlark.com/inherits/2.0.4 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/browserify-rsa/4.1.0: + resolution: {integrity: sha1-sv0Gtbda4pf3zi3GUfkY9b4VjI0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browserify-rsa/download/browserify-rsa-4.1.0.tgz} + name: browserify-rsa + version: 4.1.0 + dependencies: + bn.js: registry.nlark.com/bn.js/5.2.0 + randombytes: registry.nlark.com/randombytes/2.1.0 + dev: true + + registry.nlark.com/browserify-sign/4.2.1: + resolution: {integrity: sha1-6vSt1G3VS+O7OzbAzxWrvrp5VsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz} + name: browserify-sign + version: 4.2.1 + dependencies: + bn.js: registry.nlark.com/bn.js/5.2.0 + browserify-rsa: registry.nlark.com/browserify-rsa/4.1.0 + create-hash: registry.nlark.com/create-hash/1.2.0 + create-hmac: registry.nlark.com/create-hmac/1.1.7 + elliptic: registry.nlark.com/elliptic/6.5.4 + inherits: registry.nlark.com/inherits/2.0.4 + parse-asn1: registry.nlark.com/parse-asn1/5.1.6 + readable-stream: registry.nlark.com/readable-stream/3.6.0 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/browserify-zlib/0.2.0: + resolution: {integrity: sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/browserify-zlib/download/browserify-zlib-0.2.0.tgz} + name: browserify-zlib + version: 0.2.0 + dependencies: + pako: registry.nlark.com/pako/1.0.11 + dev: true + + registry.nlark.com/bser/2.1.1: + resolution: {integrity: sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bser/download/bser-2.1.1.tgz} + name: bser + version: 2.1.1 + dependencies: + node-int64: registry.nlark.com/node-int64/0.4.0 + dev: true + + registry.nlark.com/buffer-from/1.1.2: + resolution: {integrity: sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/buffer-from/download/buffer-from-1.1.2.tgz} + name: buffer-from + version: 1.1.2 + dev: true + + registry.nlark.com/buffer-indexof/1.1.1: + resolution: {integrity: sha1-Uvq8xqYG0aADAoAmSO9o9jnaJow=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/buffer-indexof/download/buffer-indexof-1.1.1.tgz} + name: buffer-indexof + version: 1.1.1 + dev: true + + registry.nlark.com/buffer-xor/1.0.3: + resolution: {integrity: sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz} + name: buffer-xor + version: 1.0.3 + dev: true + + registry.nlark.com/buffer/4.9.2: + resolution: {integrity: sha1-Iw6tNEACmIZEhBqwJEr4xEu+Pvg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/buffer/download/buffer-4.9.2.tgz} + name: buffer + version: 4.9.2 + dependencies: + base64-js: registry.nlark.com/base64-js/1.5.1 + ieee754: registry.nlark.com/ieee754/1.2.1 + isarray: registry.nlark.com/isarray/1.0.0 + dev: true + + registry.nlark.com/bytes/3.0.0: + resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bytes/download/bytes-3.0.0.tgz} + name: bytes + version: 3.0.0 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/bytes/3.1.0: + resolution: {integrity: sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/bytes/download/bytes-3.1.0.tgz} + name: bytes + version: 3.1.0 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/cacache/12.0.4: + resolution: {integrity: sha1-ZovL0QWutfHZL+JVcOyVJcj6pAw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cacache/download/cacache-12.0.4.tgz} + name: cacache + version: 12.0.4 + dependencies: + bluebird: registry.nlark.com/bluebird/3.7.2 + chownr: registry.nlark.com/chownr/1.1.4 + figgy-pudding: registry.nlark.com/figgy-pudding/3.5.2 + glob: registry.npmmirror.com/glob/7.2.0 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + infer-owner: registry.nlark.com/infer-owner/1.0.4 + lru-cache: registry.nlark.com/lru-cache/5.1.1 + mississippi: registry.nlark.com/mississippi/3.0.0 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + move-concurrently: registry.nlark.com/move-concurrently/1.0.1 + promise-inflight: registry.nlark.com/promise-inflight/1.0.1 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + ssri: registry.nlark.com/ssri/6.0.2 + unique-filename: registry.nlark.com/unique-filename/1.1.1 + y18n: registry.nlark.com/y18n/4.0.3 + dev: true + + registry.nlark.com/cacache/13.0.1: + resolution: {integrity: sha1-qAAMIWlwiQgvhSh6GuxuOCAkpxw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cacache/download/cacache-13.0.1.tgz} + name: cacache + version: 13.0.1 + engines: {node: '>= 8'} + dependencies: + chownr: registry.nlark.com/chownr/1.1.4 + figgy-pudding: registry.nlark.com/figgy-pudding/3.5.2 + fs-minipass: registry.nlark.com/fs-minipass/2.1.0 + glob: registry.npmmirror.com/glob/7.2.0 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + infer-owner: registry.nlark.com/infer-owner/1.0.4 + lru-cache: registry.nlark.com/lru-cache/5.1.1 + minipass: registry.nlark.com/minipass/3.1.5 + minipass-collect: registry.npmmirror.com/minipass-collect/1.0.2 + minipass-flush: registry.npmmirror.com/minipass-flush/1.0.5 + minipass-pipeline: registry.npmmirror.com/minipass-pipeline/1.2.4 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + move-concurrently: registry.nlark.com/move-concurrently/1.0.1 + p-map: registry.npmmirror.com/p-map/3.0.0 + promise-inflight: registry.nlark.com/promise-inflight/1.0.1 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + ssri: registry.nlark.com/ssri/7.1.1 + unique-filename: registry.nlark.com/unique-filename/1.1.1 + dev: true + + registry.nlark.com/cache-loader/4.1.0_webpack@4.46.0: + resolution: {integrity: sha1-mUjK41OuwKH8ser9ojAIFuyFOH4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cache-loader/download/cache-loader-4.1.0.tgz} + id: registry.nlark.com/cache-loader/4.1.0 + name: cache-loader + version: 4.1.0 + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 + dependencies: + buffer-json: registry.npmmirror.com/buffer-json/2.0.0 + find-cache-dir: registry.nlark.com/find-cache-dir/3.3.2 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + neo-async: registry.nlark.com/neo-async/2.6.2 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.nlark.com/call-bind/1.0.2: + resolution: {integrity: sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz} + name: call-bind + version: 1.0.2 + dependencies: + function-bind: registry.nlark.com/function-bind/1.1.1 + get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 + + registry.nlark.com/call-me-maybe/1.0.1: + resolution: {integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/call-me-maybe/download/call-me-maybe-1.0.1.tgz} + name: call-me-maybe + version: 1.0.1 + dev: true + + registry.nlark.com/callsites/2.0.0: + resolution: {integrity: sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/callsites/download/callsites-2.0.0.tgz} + name: callsites + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/callsites/3.1.0: + resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz} + name: callsites + version: 3.1.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/camel-case/3.0.0: + resolution: {integrity: sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camel-case/download/camel-case-3.0.0.tgz} + name: camel-case + version: 3.0.0 + dependencies: + no-case: registry.nlark.com/no-case/2.3.2 + upper-case: registry.nlark.com/upper-case/1.1.3 + dev: true + + registry.nlark.com/camelcase/1.2.1: + resolution: {integrity: sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camelcase/download/camelcase-1.2.1.tgz} + name: camelcase + version: 1.2.1 + engines: {node: '>=0.10.0'} + dev: false + + registry.nlark.com/camelcase/4.1.0: + resolution: {integrity: sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camelcase/download/camelcase-4.1.0.tgz} + name: camelcase + version: 4.1.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/camelcase/5.3.1: + resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camelcase/download/camelcase-5.3.1.tgz} + name: camelcase + version: 5.3.1 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/camelcase/6.2.0: + resolution: {integrity: sha1-kkr4gcnVJaydh/QNlk5c6pgqGAk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camelcase/download/camelcase-6.2.0.tgz} + name: camelcase + version: 6.2.0 + engines: {node: '>=10'} + dev: true + + registry.nlark.com/caniuse-api/3.0.0: + resolution: {integrity: sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/caniuse-api/download/caniuse-api-3.0.0.tgz} + name: caniuse-api + version: 3.0.0 + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001280 + lodash.memoize: registry.nlark.com/lodash.memoize/4.1.2 + lodash.uniq: registry.nlark.com/lodash.uniq/4.5.0 + dev: true + + registry.nlark.com/capture-exit/2.0.0: + resolution: {integrity: sha1-+5U7+uvreB9iiYI52rtCbQilCaQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/capture-exit/download/capture-exit-2.0.0.tgz} + name: capture-exit + version: 2.0.0 + engines: {node: 6.* || 8.* || >= 10.*} + dependencies: + rsvp: registry.nlark.com/rsvp/4.8.5 + dev: true + + registry.nlark.com/case-sensitive-paths-webpack-plugin/2.4.0: + resolution: {integrity: sha1-22QGbGQi7tLgjMFLmGykN5bbxtQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz} + name: case-sensitive-paths-webpack-plugin + version: 2.4.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/caseless/0.12.0: + resolution: {integrity: sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/caseless/download/caseless-0.12.0.tgz} + name: caseless + version: 0.12.0 + dev: true + + registry.nlark.com/chalk/1.1.3: + resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz} + name: chalk + version: 1.1.3 + engines: {node: '>=0.10.0'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/2.2.1 + escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 + has-ansi: registry.nlark.com/has-ansi/2.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/3.0.1 + supports-color: registry.nlark.com/supports-color/2.0.0 + dev: true + + registry.nlark.com/chalk/2.3.0: + resolution: {integrity: sha1-tepI78nBeT3MybR2fJORTT8tUro=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chalk/download/chalk-2.3.0.tgz} + name: chalk + version: 2.3.0 + engines: {node: '>=4'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/3.2.1 + escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 + supports-color: registry.nlark.com/supports-color/4.5.0 + dev: true + + registry.nlark.com/chalk/2.4.2: + resolution: {integrity: sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz} + name: chalk + version: 2.4.2 + engines: {node: '>=4'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/3.2.1 + escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 + supports-color: registry.nlark.com/supports-color/5.5.0 + dev: true + + registry.nlark.com/chalk/4.1.2: + resolution: {integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz} + name: chalk + version: 4.1.2 + engines: {node: '>=10'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/4.3.0 + supports-color: registry.nlark.com/supports-color/7.2.0 + + registry.nlark.com/check-types/8.0.3: + resolution: {integrity: sha1-M1bMoZyIlUTy16le1JzlCKDs9VI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/check-types/download/check-types-8.0.3.tgz} + name: check-types + version: 8.0.3 + dev: true + + registry.nlark.com/chownr/1.1.4: + resolution: {integrity: sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chownr/download/chownr-1.1.4.tgz} + name: chownr + version: 1.1.4 + dev: true + + registry.nlark.com/chrome-trace-event/1.0.3: + resolution: {integrity: sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chrome-trace-event/download/chrome-trace-event-1.0.3.tgz} + name: chrome-trace-event + version: 1.0.3 + engines: {node: '>=6.0'} + dev: true + + registry.nlark.com/ci-info/1.6.0: + resolution: {integrity: sha1-LKINu5zrMtRSSmgzAzE/AwSx5Jc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ci-info/download/ci-info-1.6.0.tgz} + name: ci-info + version: 1.6.0 + dev: true + + registry.nlark.com/ci-info/2.0.0: + resolution: {integrity: sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz} + name: ci-info + version: 2.0.0 + dev: true + + registry.nlark.com/cipher-base/1.0.4: + resolution: {integrity: sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cipher-base/download/cipher-base-1.0.4.tgz} + name: cipher-base + version: 1.0.4 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/class-utils/0.3.6: + resolution: {integrity: sha1-+TNprouafOAv1B+q0MqDAzGQxGM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz} + name: class-utils + version: 0.3.6 + engines: {node: '>=0.10.0'} + dependencies: + arr-union: registry.nlark.com/arr-union/3.1.0 + define-property: registry.nlark.com/define-property/0.2.5 + isobject: registry.nlark.com/isobject/3.0.1 + static-extend: registry.nlark.com/static-extend/0.1.2 + dev: true + + registry.nlark.com/clean-stack/2.2.0: + resolution: {integrity: sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz} + name: clean-stack + version: 2.2.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/cli-cursor/2.1.0: + resolution: {integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz} + name: cli-cursor + version: 2.1.0 + engines: {node: '>=4'} + dependencies: + restore-cursor: registry.nlark.com/restore-cursor/2.0.0 + dev: true + + registry.nlark.com/cli-cursor/3.1.0: + resolution: {integrity: sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz} + name: cli-cursor + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + restore-cursor: registry.nlark.com/restore-cursor/3.1.0 + dev: true + + registry.nlark.com/cli-width/3.0.0: + resolution: {integrity: sha1-ovSEN6LKqaIkNueUvwceyeYc7fY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz} + name: cli-width + version: 3.0.0 + engines: {node: '>= 10'} + dev: true + + registry.nlark.com/cliui/5.0.0: + resolution: {integrity: sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cliui/download/cliui-5.0.0.tgz} + name: cliui + version: 5.0.0 + dependencies: + string-width: registry.npmmirror.com/string-width/3.1.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + wrap-ansi: registry.nlark.com/wrap-ansi/5.1.0 + dev: true + + registry.nlark.com/cliui/6.0.0: + resolution: {integrity: sha1-UR1wLAxOQcoVbX0OlgIfI+EyJbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cliui/download/cliui-6.0.0.tgz} + name: cliui + version: 6.0.0 + dependencies: + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + wrap-ansi: registry.nlark.com/wrap-ansi/6.2.0 + dev: true + + registry.nlark.com/cliui/7.0.4: + resolution: {integrity: sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cliui/download/cliui-7.0.4.tgz} + name: cliui + version: 7.0.4 + dependencies: + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + wrap-ansi: registry.nlark.com/wrap-ansi/7.0.0 + dev: true + + registry.nlark.com/clone-deep/4.0.1: + resolution: {integrity: sha1-wZ/Zvbv4WUK0/ZechNz31fB8I4c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clone-deep/download/clone-deep-4.0.1.tgz} + name: clone-deep + version: 4.0.1 + engines: {node: '>=6'} + dependencies: + is-plain-object: registry.nlark.com/is-plain-object/2.0.4 + kind-of: registry.nlark.com/kind-of/6.0.3 + shallow-clone: registry.nlark.com/shallow-clone/3.0.1 + dev: true + + registry.nlark.com/clone/1.0.4: + resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clone/download/clone-1.0.4.tgz?cache=0&sync_timestamp=1631667556292&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclone%2Fdownload%2Fclone-1.0.4.tgz} + name: clone + version: 1.0.4 + engines: {node: '>=0.8'} + dev: true + + registry.nlark.com/clone/2.1.2: + resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clone/download/clone-2.1.2.tgz?cache=0&sync_timestamp=1631667556292&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclone%2Fdownload%2Fclone-2.1.2.tgz} + name: clone + version: 2.1.2 + engines: {node: '>=0.8'} + dev: true + + registry.nlark.com/co/4.6.0: + resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/co/download/co-4.6.0.tgz} + name: co + version: 4.6.0 + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + dev: true + + registry.nlark.com/collection-visit/1.0.0: + resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz} + name: collection-visit + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + map-visit: registry.nlark.com/map-visit/1.0.0 + object-visit: registry.nlark.com/object-visit/1.0.1 + dev: true + + registry.nlark.com/color-convert/1.9.3: + resolution: {integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz} + name: color-convert + version: 1.9.3 + dependencies: + color-name: registry.nlark.com/color-name/1.1.3 + dev: true + + registry.nlark.com/color-convert/2.0.1: + resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz} + name: color-convert + version: 2.0.1 + engines: {node: '>=7.0.0'} + dependencies: + color-name: registry.nlark.com/color-name/1.1.4 + + registry.nlark.com/color-name/1.1.3: + resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz} + name: color-name + version: 1.1.3 + dev: true + + registry.nlark.com/color-name/1.1.4: + resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz} + name: color-name + version: 1.1.4 + + registry.nlark.com/color-string/1.6.0: + resolution: {integrity: sha1-w5FfYf4mdnLLfh4GTJ1pIhn2wxI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-string/download/color-string-1.6.0.tgz} + name: color-string + version: 1.6.0 + dependencies: + color-name: registry.nlark.com/color-name/1.1.4 + simple-swizzle: registry.npmmirror.com/simple-swizzle/0.2.2 + dev: true + + registry.nlark.com/color/3.2.1: + resolution: {integrity: sha1-NUTcGYyvRJDD7MmnkLVP6f9F4WQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color/download/color-3.2.1.tgz} + name: color + version: 3.2.1 + dependencies: + color-convert: registry.nlark.com/color-convert/1.9.3 + color-string: registry.nlark.com/color-string/1.6.0 + dev: true + + registry.nlark.com/combined-stream/1.0.8: + resolution: {integrity: sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/combined-stream/download/combined-stream-1.0.8.tgz} + name: combined-stream + version: 1.0.8 + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: registry.nlark.com/delayed-stream/1.0.0 + dev: true + + registry.nlark.com/commondir/1.0.1: + resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/commondir/download/commondir-1.0.1.tgz} + name: commondir + version: 1.0.1 + dev: true + + registry.nlark.com/component-emitter/1.3.0: + resolution: {integrity: sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz} + name: component-emitter + version: 1.3.0 + dev: true + + registry.nlark.com/compressible/2.0.18: + resolution: {integrity: sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/compressible/download/compressible-2.0.18.tgz} + name: compressible + version: 2.0.18 + engines: {node: '>= 0.6'} + dependencies: + mime-db: registry.npmmirror.com/mime-db/1.51.0 + dev: true + + registry.nlark.com/compression/1.7.4: + resolution: {integrity: sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/compression/download/compression-1.7.4.tgz} + name: compression + version: 1.7.4 + engines: {node: '>= 0.8.0'} + dependencies: + accepts: registry.nlark.com/accepts/1.3.7 + bytes: registry.nlark.com/bytes/3.0.0 + compressible: registry.nlark.com/compressible/2.0.18 + debug: registry.npmmirror.com/debug/2.6.9 + on-headers: registry.nlark.com/on-headers/1.0.2 + safe-buffer: registry.nlark.com/safe-buffer/5.1.2 + vary: registry.nlark.com/vary/1.1.2 + dev: true + + registry.nlark.com/concat-map/0.0.1: + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz} + name: concat-map + version: 0.0.1 + + registry.nlark.com/concat-stream/1.6.2: + resolution: {integrity: sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/concat-stream/download/concat-stream-1.6.2.tgz} + name: concat-stream + version: 1.6.2 + engines: {'0': node >= 0.8} + dependencies: + buffer-from: registry.nlark.com/buffer-from/1.1.2 + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + typedarray: registry.nlark.com/typedarray/0.0.6 + dev: true + + registry.nlark.com/config-chain/1.1.13: + resolution: {integrity: sha1-+tB5Wqamza/57Rto6d/5Q3LCMvQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/config-chain/download/config-chain-1.1.13.tgz} + name: config-chain + version: 1.1.13 + dependencies: + ini: registry.nlark.com/ini/1.3.8 + proto-list: registry.nlark.com/proto-list/1.2.4 + dev: true + + registry.nlark.com/connect-history-api-fallback/1.6.0: + resolution: {integrity: sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz} + name: connect-history-api-fallback + version: 1.6.0 + engines: {node: '>=0.8'} + dev: true + + registry.nlark.com/connect/3.6.6: + resolution: {integrity: sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/connect/download/connect-3.6.6.tgz} + name: connect + version: 3.6.6 + engines: {node: '>= 0.10.0'} + dependencies: + debug: registry.npmmirror.com/debug/2.6.9 + finalhandler: registry.nlark.com/finalhandler/1.1.0 + parseurl: registry.nlark.com/parseurl/1.3.3 + utils-merge: registry.nlark.com/utils-merge/1.0.1 + dev: true + + registry.nlark.com/console-browserify/1.2.0: + resolution: {integrity: sha1-ZwY871fOts9Jk6KrOlWECujEkzY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/console-browserify/download/console-browserify-1.2.0.tgz} + name: console-browserify + version: 1.2.0 + dev: true + + registry.nlark.com/consolidate/0.15.1: + resolution: {integrity: sha1-IasEMjXHGgfUXZqtmFk7DbpWurc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/consolidate/download/consolidate-0.15.1.tgz} + name: consolidate + version: 0.15.1 + engines: {node: '>= 0.10.0'} + dependencies: + bluebird: registry.nlark.com/bluebird/3.7.2 + dev: true + + registry.nlark.com/constants-browserify/1.0.0: + resolution: {integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/constants-browserify/download/constants-browserify-1.0.0.tgz} + name: constants-browserify + version: 1.0.0 + dev: true + + registry.nlark.com/content-type/1.0.4: + resolution: {integrity: sha1-4TjMdeBAxyexlm/l5fjJruJW/js=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/content-type/download/content-type-1.0.4.tgz} + name: content-type + version: 1.0.4 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/convert-source-map/1.8.0: + resolution: {integrity: sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz} + name: convert-source-map + version: 1.8.0 + dependencies: + safe-buffer: registry.nlark.com/safe-buffer/5.1.2 + dev: true + + registry.nlark.com/cookie/0.4.0: + resolution: {integrity: sha1-vrQ35wIrO21JAZ0IhmUwPr6cFLo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cookie/download/cookie-0.4.0.tgz} + name: cookie + version: 0.4.0 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/copy-concurrently/1.0.5: + resolution: {integrity: sha1-kilzmMrjSTf8r9bsgTnBgFHwteA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz} + name: copy-concurrently + version: 1.0.5 + dependencies: + aproba: registry.nlark.com/aproba/1.2.0 + fs-write-stream-atomic: registry.npmmirror.com/fs-write-stream-atomic/1.0.10 + iferr: registry.nlark.com/iferr/0.1.5 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + run-queue: registry.nlark.com/run-queue/1.0.3 + dev: true + + registry.nlark.com/copy-descriptor/0.1.1: + resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz} + name: copy-descriptor + version: 0.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/core-util-is/1.0.2: + resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/core-util-is/download/core-util-is-1.0.2.tgz} + name: core-util-is + version: 1.0.2 + dev: true + + registry.nlark.com/core-util-is/1.0.3: + resolution: {integrity: sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/core-util-is/download/core-util-is-1.0.3.tgz} + name: core-util-is + version: 1.0.3 + dev: true + + registry.nlark.com/cosmiconfig/5.2.1: + resolution: {integrity: sha1-BA9yaAnFked6F8CjYmykW08Wixo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cosmiconfig/download/cosmiconfig-5.2.1.tgz} + name: cosmiconfig + version: 5.2.1 + engines: {node: '>=4'} + dependencies: + import-fresh: registry.nlark.com/import-fresh/2.0.0 + is-directory: registry.nlark.com/is-directory/0.3.1 + js-yaml: registry.nlark.com/js-yaml/3.14.1 + parse-json: registry.npmmirror.com/parse-json/4.0.0 + dev: true + + registry.nlark.com/create-ecdh/4.0.4: + resolution: {integrity: sha1-1uf0v/pmc2CFoHYv06YyaE2rzE4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz} + name: create-ecdh + version: 4.0.4 + dependencies: + bn.js: registry.nlark.com/bn.js/4.12.0 + elliptic: registry.nlark.com/elliptic/6.5.4 + dev: true + + registry.nlark.com/create-hash/1.2.0: + resolution: {integrity: sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/create-hash/download/create-hash-1.2.0.tgz} + name: create-hash + version: 1.2.0 + dependencies: + cipher-base: registry.nlark.com/cipher-base/1.0.4 + inherits: registry.nlark.com/inherits/2.0.4 + md5.js: registry.nlark.com/md5.js/1.3.5 + ripemd160: registry.nlark.com/ripemd160/2.0.2 + sha.js: registry.nlark.com/sha.js/2.4.11 + dev: true + + registry.nlark.com/create-hmac/1.1.7: + resolution: {integrity: sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/create-hmac/download/create-hmac-1.1.7.tgz} + name: create-hmac + version: 1.1.7 + dependencies: + cipher-base: registry.nlark.com/cipher-base/1.0.4 + create-hash: registry.nlark.com/create-hash/1.2.0 + inherits: registry.nlark.com/inherits/2.0.4 + ripemd160: registry.nlark.com/ripemd160/2.0.2 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + sha.js: registry.nlark.com/sha.js/2.4.11 + dev: true + + registry.nlark.com/cross-spawn/5.1.0: + resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cross-spawn/download/cross-spawn-5.1.0.tgz} + name: cross-spawn + version: 5.1.0 + dependencies: + lru-cache: registry.nlark.com/lru-cache/4.1.5 + shebang-command: registry.nlark.com/shebang-command/1.2.0 + which: registry.nlark.com/which/1.3.1 + dev: true + + registry.nlark.com/cross-spawn/6.0.5: + resolution: {integrity: sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cross-spawn/download/cross-spawn-6.0.5.tgz} + name: cross-spawn + version: 6.0.5 + engines: {node: '>=4.8'} + dependencies: + nice-try: registry.nlark.com/nice-try/1.0.5 + path-key: registry.nlark.com/path-key/2.0.1 + semver: registry.nlark.com/semver/5.7.1 + shebang-command: registry.nlark.com/shebang-command/1.2.0 + which: registry.nlark.com/which/1.3.1 + dev: true + + registry.nlark.com/cross-spawn/7.0.3: + resolution: {integrity: sha1-9zqFudXUHQRVUcF34ogtSshXKKY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz} + name: cross-spawn + version: 7.0.3 + engines: {node: '>= 8'} + dependencies: + path-key: registry.nlark.com/path-key/3.1.1 + shebang-command: registry.nlark.com/shebang-command/2.0.0 + which: registry.nlark.com/which/2.0.2 + dev: true + + registry.nlark.com/crypto-browserify/3.12.0: + resolution: {integrity: sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/crypto-browserify/download/crypto-browserify-3.12.0.tgz} + name: crypto-browserify + version: 3.12.0 + dependencies: + browserify-cipher: registry.nlark.com/browserify-cipher/1.0.1 + browserify-sign: registry.nlark.com/browserify-sign/4.2.1 + create-ecdh: registry.nlark.com/create-ecdh/4.0.4 + create-hash: registry.nlark.com/create-hash/1.2.0 + create-hmac: registry.nlark.com/create-hmac/1.1.7 + diffie-hellman: registry.nlark.com/diffie-hellman/5.0.3 + inherits: registry.nlark.com/inherits/2.0.4 + pbkdf2: registry.nlark.com/pbkdf2/3.1.2 + public-encrypt: registry.nlark.com/public-encrypt/4.0.3 + randombytes: registry.nlark.com/randombytes/2.1.0 + randomfill: registry.nlark.com/randomfill/1.0.4 + dev: true + + registry.nlark.com/css-color-names/0.0.4: + resolution: {integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz} + name: css-color-names + version: 0.0.4 + dev: true + + registry.nlark.com/css-declaration-sorter/4.0.1: + resolution: {integrity: sha1-wZiUD2OnbX42wecQGLABchBUyyI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-declaration-sorter/download/css-declaration-sorter-4.0.1.tgz} + name: css-declaration-sorter + version: 4.0.1 + engines: {node: '>4'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + timsort: registry.nlark.com/timsort/0.3.0 + dev: true + + registry.nlark.com/css-select-base-adapter/0.1.1: + resolution: {integrity: sha1-Oy/0lyzDYquIVhUHqVQIoUMhNdc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-select-base-adapter/download/css-select-base-adapter-0.1.1.tgz} + name: css-select-base-adapter + version: 0.1.1 + dev: true + + registry.nlark.com/css-select/2.1.0: + resolution: {integrity: sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-select/download/css-select-2.1.0.tgz} + name: css-select + version: 2.1.0 + dependencies: + boolbase: registry.nlark.com/boolbase/1.0.0 + css-what: registry.npmmirror.com/css-what/3.4.2 + domutils: registry.nlark.com/domutils/1.7.0 + nth-check: registry.nlark.com/nth-check/1.0.2 + dev: true + + registry.nlark.com/css-select/4.1.3: + resolution: {integrity: sha1-pwRA9wMX8maRGK10/xBeZYSccGc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz} + name: css-select + version: 4.1.3 + dependencies: + boolbase: registry.nlark.com/boolbase/1.0.0 + css-what: registry.npmmirror.com/css-what/5.1.0 + domhandler: registry.nlark.com/domhandler/4.2.2 + domutils: registry.nlark.com/domutils/2.8.0 + nth-check: registry.nlark.com/nth-check/2.0.1 + dev: true + + registry.nlark.com/css-tree/1.0.0-alpha.28: + resolution: {integrity: sha1-joloGQ2IbJR3vI1h6W9hrz9/+n8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.28.tgz} + name: css-tree + version: 1.0.0-alpha.28 + engines: {node: '>=0.10.0'} + dependencies: + mdn-data: registry.nlark.com/mdn-data/1.1.4 + source-map: registry.nlark.com/source-map/0.5.7 + dev: true + + registry.nlark.com/css-tree/1.0.0-alpha.29: + resolution: {integrity: sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-tree/download/css-tree-1.0.0-alpha.29.tgz} + name: css-tree + version: 1.0.0-alpha.29 + engines: {node: '>=0.10.0'} + dependencies: + mdn-data: registry.nlark.com/mdn-data/1.1.4 + source-map: registry.nlark.com/source-map/0.5.7 + dev: true + + registry.nlark.com/css/2.2.4: + resolution: {integrity: sha1-xkZ1XHOXHyu6amAeLPL9cbEpiSk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css/download/css-2.2.4.tgz} + name: css + version: 2.2.4 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + source-map: registry.nlark.com/source-map/0.6.1 + source-map-resolve: registry.nlark.com/source-map-resolve/0.5.3 + urix: registry.npmmirror.com/urix/0.1.0 + dev: true + + registry.nlark.com/cssesc/3.0.0: + resolution: {integrity: sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz} + name: cssesc + version: 3.0.0 + engines: {node: '>=4'} + hasBin: true + dev: true + + registry.nlark.com/cssnano-util-get-arguments/4.0.0: + resolution: {integrity: sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz} + name: cssnano-util-get-arguments + version: 4.0.0 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/cssnano-util-get-match/4.0.0: + resolution: {integrity: sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz} + name: cssnano-util-get-match + version: 4.0.0 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/cssnano-util-raw-cache/4.0.1: + resolution: {integrity: sha1-sm1f1fcqEd/np4RvtMZyYPlr8oI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssnano-util-raw-cache/download/cssnano-util-raw-cache-4.0.1.tgz} + name: cssnano-util-raw-cache + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/cssnano-util-same-parent/4.0.1: + resolution: {integrity: sha1-V0CC+yhZ0ttDOFWDXZqEVuoYu/M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssnano-util-same-parent/download/cssnano-util-same-parent-4.0.1.tgz} + name: cssnano-util-same-parent + version: 4.0.1 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/csso/3.5.1: + resolution: {integrity: sha1-e564vmFiiXPBsmHhadLwJACOdYs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/csso/download/csso-3.5.1.tgz} + name: csso + version: 3.5.1 + engines: {node: '>=0.10.0'} + dependencies: + css-tree: registry.nlark.com/css-tree/1.0.0-alpha.29 + dev: true + + registry.nlark.com/cssom/0.3.8: + resolution: {integrity: sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz} + name: cssom + version: 0.3.8 + dev: true + + registry.nlark.com/cssom/0.4.4: + resolution: {integrity: sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz} + name: cssom + version: 0.4.4 + dev: true + + registry.nlark.com/cssstyle/1.4.0: + resolution: {integrity: sha1-nTEyginTxWXGHlhrAgQaKPzNzPE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssstyle/download/cssstyle-1.4.0.tgz} + name: cssstyle + version: 1.4.0 + dependencies: + cssom: registry.nlark.com/cssom/0.3.8 + dev: true + + registry.nlark.com/cssstyle/2.3.0: + resolution: {integrity: sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz} + name: cssstyle + version: 2.3.0 + engines: {node: '>=8'} + dependencies: + cssom: registry.nlark.com/cssom/0.3.8 + dev: true + + registry.nlark.com/cyclist/1.0.1: + resolution: {integrity: sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cyclist/download/cyclist-1.0.1.tgz} + name: cyclist + version: 1.0.1 + dev: true + + registry.nlark.com/dashdash/1.14.1: + resolution: {integrity: sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dashdash/download/dashdash-1.14.1.tgz} + name: dashdash + version: 1.14.1 + engines: {node: '>=0.10'} + dependencies: + assert-plus: registry.nlark.com/assert-plus/1.0.0 + dev: true + + registry.nlark.com/de-indent/1.0.2: + resolution: {integrity: sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/de-indent/download/de-indent-1.0.2.tgz} + name: de-indent + version: 1.0.2 + dev: true + + registry.nlark.com/decode-uri-component/0.2.0: + resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/decode-uri-component/download/decode-uri-component-0.2.0.tgz} + name: decode-uri-component + version: 0.2.0 + engines: {node: '>=0.10'} + dev: true + + registry.nlark.com/deep-equal/1.1.1: + resolution: {integrity: sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/deep-equal/download/deep-equal-1.1.1.tgz} + name: deep-equal + version: 1.1.1 + dependencies: + is-arguments: registry.nlark.com/is-arguments/1.1.1 + is-date-object: registry.nlark.com/is-date-object/1.0.5 + is-regex: registry.nlark.com/is-regex/1.1.4 + object-is: registry.nlark.com/object-is/1.1.5 + object-keys: registry.nlark.com/object-keys/1.1.1 + regexp.prototype.flags: registry.nlark.com/regexp.prototype.flags/1.3.1 + dev: true + + registry.nlark.com/deep-is/0.1.4: + resolution: {integrity: sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz} + name: deep-is + version: 0.1.4 + dev: true + + registry.nlark.com/deepmerge/1.3.2: + resolution: {integrity: sha1-FmNpFinU2/42T6EqKk8KqGqjoFA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/deepmerge/download/deepmerge-1.3.2.tgz} + name: deepmerge + version: 1.3.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/deepmerge/1.5.2: + resolution: {integrity: sha1-EEmdhohEza1P7ghC34x/bwyVp1M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/deepmerge/download/deepmerge-1.5.2.tgz} + name: deepmerge + version: 1.5.2 + engines: {node: '>=0.10.0'} + + registry.nlark.com/deepmerge/4.2.2: + resolution: {integrity: sha1-RNLqNnm49NT/ujPwPYZfwee/SVU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz} + name: deepmerge + version: 4.2.2 + engines: {node: '>=0.10.0'} + + registry.nlark.com/defaults/1.0.3: + resolution: {integrity: sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz} + name: defaults + version: 1.0.3 + dependencies: + clone: registry.nlark.com/clone/1.0.4 + dev: true + + registry.nlark.com/define-properties/1.1.3: + resolution: {integrity: sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz} + name: define-properties + version: 1.1.3 + engines: {node: '>= 0.4'} + dependencies: + object-keys: registry.nlark.com/object-keys/1.1.1 + dev: true + + registry.nlark.com/define-property/0.2.5: + resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz} + name: define-property + version: 0.2.5 + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: registry.nlark.com/is-descriptor/0.1.6 + dev: true + + registry.nlark.com/define-property/1.0.0: + resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz} + name: define-property + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: registry.nlark.com/is-descriptor/1.0.2 + dev: true + + registry.nlark.com/define-property/2.0.2: + resolution: {integrity: sha1-1Flono1lS6d+AqgX+HENcCyxbp0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz} + name: define-property + version: 2.0.2 + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: registry.nlark.com/is-descriptor/1.0.2 + isobject: registry.nlark.com/isobject/3.0.1 + dev: true + + registry.nlark.com/del/4.1.1: + resolution: {integrity: sha1-no8RciLqRKMf86FWwEm5kFKp8LQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/del/download/del-4.1.1.tgz} + name: del + version: 4.1.1 + engines: {node: '>=6'} + dependencies: + '@types/glob': registry.npmmirror.com/@types/glob/7.2.0 + globby: registry.nlark.com/globby/6.1.0 + is-path-cwd: registry.nlark.com/is-path-cwd/2.2.0 + is-path-in-cwd: registry.nlark.com/is-path-in-cwd/2.1.0 + p-map: registry.npmmirror.com/p-map/2.1.0 + pify: registry.nlark.com/pify/4.0.1 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + dev: true + + registry.nlark.com/delayed-stream/1.0.0: + resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/delayed-stream/download/delayed-stream-1.0.0.tgz} + name: delayed-stream + version: 1.0.0 + engines: {node: '>=0.4.0'} + dev: true + + registry.nlark.com/depd/1.1.2: + resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/depd/download/depd-1.1.2.tgz} + name: depd + version: 1.1.2 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/destroy/1.0.4: + resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/destroy/download/destroy-1.0.4.tgz} + name: destroy + version: 1.0.4 + dev: true + + registry.nlark.com/detect-indent/4.0.0: + resolution: {integrity: sha1-920GQ1LN9Docts5hnE7jqUdd4gg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/detect-indent/download/detect-indent-4.0.0.tgz?cache=0&sync_timestamp=1631603545757&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdetect-indent%2Fdownload%2Fdetect-indent-4.0.0.tgz} + name: detect-indent + version: 4.0.0 + engines: {node: '>=0.10.0'} + dependencies: + repeating: registry.nlark.com/repeating/2.0.1 + dev: true + + registry.nlark.com/detect-node/2.1.0: + resolution: {integrity: sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/detect-node/download/detect-node-2.1.0.tgz} + name: detect-node + version: 2.1.0 + dev: true + + registry.nlark.com/diff-sequences/24.9.0: + resolution: {integrity: sha1-VxXWJE4qpl9Iu6C8ly2wsLEelbU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/diff-sequences/download/diff-sequences-24.9.0.tgz} + name: diff-sequences + version: 24.9.0 + engines: {node: '>= 6'} + dev: true + + registry.nlark.com/diffie-hellman/5.0.3: + resolution: {integrity: sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/diffie-hellman/download/diffie-hellman-5.0.3.tgz} + name: diffie-hellman + version: 5.0.3 + dependencies: + bn.js: registry.nlark.com/bn.js/4.12.0 + miller-rabin: registry.nlark.com/miller-rabin/4.0.1 + randombytes: registry.nlark.com/randombytes/2.1.0 + dev: true + + registry.nlark.com/dir-glob/2.2.2: + resolution: {integrity: sha1-+gnwaUFTyJGLGLoN6vrpR2n8UMQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dir-glob/download/dir-glob-2.2.2.tgz} + name: dir-glob + version: 2.2.2 + engines: {node: '>=4'} + dependencies: + path-type: registry.nlark.com/path-type/3.0.0 + dev: true + + registry.nlark.com/dns-equal/1.0.0: + resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dns-equal/download/dns-equal-1.0.0.tgz} + name: dns-equal + version: 1.0.0 + dev: true + + registry.nlark.com/dns-packet/1.3.4: + resolution: {integrity: sha1-40VQZYJKJQe6iGxVqJljuxB97G8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dns-packet/download/dns-packet-1.3.4.tgz} + name: dns-packet + version: 1.3.4 + dependencies: + ip: registry.nlark.com/ip/1.1.5 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/dns-txt/2.0.2: + resolution: {integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dns-txt/download/dns-txt-2.0.2.tgz} + name: dns-txt + version: 2.0.2 + dependencies: + buffer-indexof: registry.nlark.com/buffer-indexof/1.1.1 + dev: true + + registry.nlark.com/doctrine/3.0.0: + resolution: {integrity: sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz} + name: doctrine + version: 3.0.0 + engines: {node: '>=6.0.0'} + dependencies: + esutils: registry.nlark.com/esutils/2.0.3 + dev: true + + registry.nlark.com/dom-converter/0.2.0: + resolution: {integrity: sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dom-converter/download/dom-converter-0.2.0.tgz} + name: dom-converter + version: 0.2.0 + dependencies: + utila: registry.nlark.com/utila/0.4.0 + dev: true + + registry.nlark.com/dom-serializer/0.2.2: + resolution: {integrity: sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dom-serializer/download/dom-serializer-0.2.2.tgz} + name: dom-serializer + version: 0.2.2 + dependencies: + domelementtype: registry.nlark.com/domelementtype/2.2.0 + entities: registry.nlark.com/entities/2.2.0 + dev: true + + registry.nlark.com/dom-serializer/1.3.2: + resolution: {integrity: sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz} + name: dom-serializer + version: 1.3.2 + dependencies: + domelementtype: registry.nlark.com/domelementtype/2.2.0 + domhandler: registry.nlark.com/domhandler/4.2.2 + entities: registry.nlark.com/entities/2.2.0 + dev: true + + registry.nlark.com/domain-browser/1.2.0: + resolution: {integrity: sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domain-browser/download/domain-browser-1.2.0.tgz} + name: domain-browser + version: 1.2.0 + engines: {node: '>=0.4', npm: '>=1.2'} + dev: true + + registry.nlark.com/domelementtype/1.3.1: + resolution: {integrity: sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domelementtype/download/domelementtype-1.3.1.tgz} + name: domelementtype + version: 1.3.1 + dev: true + + registry.nlark.com/domelementtype/2.2.0: + resolution: {integrity: sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz} + name: domelementtype + version: 2.2.0 + dev: true + + registry.nlark.com/domhandler/2.4.2: + resolution: {integrity: sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domhandler/download/domhandler-2.4.2.tgz} + name: domhandler + version: 2.4.2 + dependencies: + domelementtype: registry.nlark.com/domelementtype/1.3.1 + dev: true + + registry.nlark.com/domhandler/4.2.2: + resolution: {integrity: sha1-6CXXIdGahrjCAaNSZOImxnjudV8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domhandler/download/domhandler-4.2.2.tgz} + name: domhandler + version: 4.2.2 + engines: {node: '>= 4'} + dependencies: + domelementtype: registry.nlark.com/domelementtype/2.2.0 + dev: true + + registry.nlark.com/domutils/1.7.0: + resolution: {integrity: sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domutils/download/domutils-1.7.0.tgz} + name: domutils + version: 1.7.0 + dependencies: + dom-serializer: registry.nlark.com/dom-serializer/0.2.2 + domelementtype: registry.nlark.com/domelementtype/1.3.1 + dev: true + + registry.nlark.com/domutils/2.8.0: + resolution: {integrity: sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz} + name: domutils + version: 2.8.0 + dependencies: + dom-serializer: registry.nlark.com/dom-serializer/1.3.2 + domelementtype: registry.nlark.com/domelementtype/2.2.0 + domhandler: registry.nlark.com/domhandler/4.2.2 + dev: true + + registry.nlark.com/dot-prop/5.3.0: + resolution: {integrity: sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz} + name: dot-prop + version: 5.3.0 + engines: {node: '>=8'} + dependencies: + is-obj: registry.nlark.com/is-obj/2.0.0 + dev: true + + registry.nlark.com/dotenv-expand/5.1.0: + resolution: {integrity: sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz} + name: dotenv-expand + version: 5.1.0 + dev: true + + registry.nlark.com/dotenv/8.6.0: + resolution: {integrity: sha1-Bhr2ZNGff02PxuT/m1hM4jety4s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dotenv/download/dotenv-8.6.0.tgz} + name: dotenv + version: 8.6.0 + engines: {node: '>=10'} + dev: true + + registry.nlark.com/duplexer/0.1.2: + resolution: {integrity: sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/duplexer/download/duplexer-0.1.2.tgz} + name: duplexer + version: 0.1.2 + dev: true + + registry.nlark.com/duplexify/3.7.1: + resolution: {integrity: sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/duplexify/download/duplexify-3.7.1.tgz} + name: duplexify + version: 3.7.1 + dependencies: + end-of-stream: registry.nlark.com/end-of-stream/1.4.4 + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + stream-shift: registry.nlark.com/stream-shift/1.0.1 + dev: true + + registry.nlark.com/easy-stack/1.0.1: + resolution: {integrity: sha1-iv5CZGJpiMq7EfPHBMzQyDVBEGY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/easy-stack/download/easy-stack-1.0.1.tgz} + name: easy-stack + version: 1.0.1 + engines: {node: '>=6.0.0'} + dev: true + + registry.nlark.com/ecc-jsbn/0.1.2: + resolution: {integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz} + name: ecc-jsbn + version: 0.1.2 + dependencies: + jsbn: registry.nlark.com/jsbn/0.1.1 + safer-buffer: registry.nlark.com/safer-buffer/2.1.2 + dev: true + + registry.nlark.com/ee-first/1.1.1: + resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ee-first/download/ee-first-1.1.1.tgz} + name: ee-first + version: 1.1.1 + dev: true + + registry.nlark.com/elliptic/6.5.4: + resolution: {integrity: sha1-2jfOvTHnmhNn6UG1ku0fvr1Yq7s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/elliptic/download/elliptic-6.5.4.tgz} + name: elliptic + version: 6.5.4 + dependencies: + bn.js: registry.nlark.com/bn.js/4.12.0 + brorand: registry.nlark.com/brorand/1.1.0 + hash.js: registry.nlark.com/hash.js/1.1.7 + hmac-drbg: registry.nlark.com/hmac-drbg/1.0.1 + inherits: registry.nlark.com/inherits/2.0.4 + minimalistic-assert: registry.nlark.com/minimalistic-assert/1.0.1 + minimalistic-crypto-utils: registry.nlark.com/minimalistic-crypto-utils/1.0.1 + dev: true + + registry.nlark.com/emojis-list/2.1.0: + resolution: {integrity: sha1-TapNnbAPmBmIDHn6RXrlsJof04k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/emojis-list/download/emojis-list-2.1.0.tgz} + name: emojis-list + version: 2.1.0 + engines: {node: '>= 0.10'} + dev: true + + registry.nlark.com/emojis-list/3.0.0: + resolution: {integrity: sha1-VXBmIEatKeLpFucariYKvf9Pang=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz} + name: emojis-list + version: 3.0.0 + engines: {node: '>= 4'} + + registry.nlark.com/encodeurl/1.0.2: + resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/encodeurl/download/encodeurl-1.0.2.tgz} + name: encodeurl + version: 1.0.2 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/end-of-stream/1.4.4: + resolution: {integrity: sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/end-of-stream/download/end-of-stream-1.4.4.tgz} + name: end-of-stream + version: 1.4.4 + dependencies: + once: registry.nlark.com/once/1.4.0 + dev: true + + registry.nlark.com/enhanced-resolve/4.5.0: + resolution: {integrity: sha1-Lzz9hNvjtIfxjy2y7x4GSlccpew=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/enhanced-resolve/download/enhanced-resolve-4.5.0.tgz} + name: enhanced-resolve + version: 4.5.0 + engines: {node: '>=6.9.0'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + memory-fs: registry.nlark.com/memory-fs/0.5.0 + tapable: registry.nlark.com/tapable/1.1.3 + dev: true + + registry.nlark.com/entities/1.1.2: + resolution: {integrity: sha1-vfpzUplmTfr9NFKe1PhSKidf6lY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/entities/download/entities-1.1.2.tgz} + name: entities + version: 1.1.2 + dev: true + + registry.nlark.com/entities/2.2.0: + resolution: {integrity: sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/entities/download/entities-2.2.0.tgz} + name: entities + version: 2.2.0 + dev: true + + registry.nlark.com/errno/0.1.8: + resolution: {integrity: sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/errno/download/errno-0.1.8.tgz} + name: errno + version: 0.1.8 + hasBin: true + dependencies: + prr: registry.nlark.com/prr/1.0.1 + dev: true + + registry.nlark.com/error-ex/1.3.2: + resolution: {integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz} + name: error-ex + version: 1.3.2 + dependencies: + is-arrayish: registry.nlark.com/is-arrayish/0.2.1 + dev: true + + registry.nlark.com/error-stack-parser/2.0.6: + resolution: {integrity: sha1-WpmnB716TFinl5AtSNgoA+3mqtg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/error-stack-parser/download/error-stack-parser-2.0.6.tgz} + name: error-stack-parser + version: 2.0.6 + dependencies: + stackframe: registry.nlark.com/stackframe/1.2.0 + dev: true + + registry.nlark.com/es-to-primitive/1.2.1: + resolution: {integrity: sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz} + name: es-to-primitive + version: 1.2.1 + engines: {node: '>= 0.4'} + dependencies: + is-callable: registry.nlark.com/is-callable/1.2.4 + is-date-object: registry.nlark.com/is-date-object/1.0.5 + is-symbol: registry.nlark.com/is-symbol/1.0.4 + dev: true + + registry.nlark.com/escalade/3.1.1: + resolution: {integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz} + name: escalade + version: 3.1.1 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/escape-html/1.0.3: + resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escape-html/download/escape-html-1.0.3.tgz} + name: escape-html + version: 1.0.3 + dev: true + + registry.nlark.com/escape-string-regexp/1.0.5: + resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz?cache=0&sync_timestamp=1631603499629&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-1.0.5.tgz} + name: escape-string-regexp + version: 1.0.5 + engines: {node: '>=0.8.0'} + dev: true + + registry.nlark.com/escape-string-regexp/2.0.0: + resolution: {integrity: sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz?cache=0&sync_timestamp=1631603499629&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-2.0.0.tgz} + name: escape-string-regexp + version: 2.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/escodegen/1.14.3: + resolution: {integrity: sha1-TnuB+6YVgdyXWC7XjKt/Do1j9QM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escodegen/download/escodegen-1.14.3.tgz} + name: escodegen + version: 1.14.3 + engines: {node: '>=4.0'} + hasBin: true + dependencies: + esprima: registry.nlark.com/esprima/4.0.1 + estraverse: registry.npmmirror.com/estraverse/4.3.0 + esutils: registry.nlark.com/esutils/2.0.3 + optionator: registry.nlark.com/optionator/0.8.3 + optionalDependencies: + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.nlark.com/eslint-scope/4.0.3: + resolution: {integrity: sha1-ygODMxD2iJoyZHgaqC5j65z+eEg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-scope/download/eslint-scope-4.0.3.tgz} + name: eslint-scope + version: 4.0.3 + engines: {node: '>=4.0.0'} + dependencies: + esrecurse: registry.nlark.com/esrecurse/4.3.0 + estraverse: registry.npmmirror.com/estraverse/4.3.0 + dev: true + + registry.nlark.com/eslint-scope/5.1.1: + resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz} + name: eslint-scope + version: 5.1.1 + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: registry.nlark.com/esrecurse/4.3.0 + estraverse: registry.npmmirror.com/estraverse/4.3.0 + dev: true + + registry.nlark.com/eslint-utils/1.4.3: + resolution: {integrity: sha1-dP7HxU0Hdrb2fgJRBAtYBlZOmB8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-utils/download/eslint-utils-1.4.3.tgz} + name: eslint-utils + version: 1.4.3 + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0 + dev: true + + registry.nlark.com/espree/6.2.1: + resolution: {integrity: sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/espree/download/espree-6.2.1.tgz} + name: espree + version: 6.2.1 + engines: {node: '>=6.0.0'} + dependencies: + acorn: registry.nlark.com/acorn/7.4.1 + acorn-jsx: registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1 + eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0 + dev: true + + registry.nlark.com/esprima/4.0.1: + resolution: {integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz} + name: esprima + version: 4.0.1 + engines: {node: '>=4'} + hasBin: true + dev: true + + registry.nlark.com/esquery/1.4.0: + resolution: {integrity: sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz} + name: esquery + version: 1.4.0 + engines: {node: '>=0.10'} + dependencies: + estraverse: registry.npmmirror.com/estraverse/5.3.0 + dev: true + + registry.nlark.com/esrecurse/4.3.0: + resolution: {integrity: sha1-eteWTWeauyi+5yzsY3WLHF0smSE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz} + name: esrecurse + version: 4.3.0 + engines: {node: '>=4.0'} + dependencies: + estraverse: registry.npmmirror.com/estraverse/5.3.0 + dev: true + + registry.nlark.com/esutils/2.0.3: + resolution: {integrity: sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esutils/download/esutils-2.0.3.tgz} + name: esutils + version: 2.0.3 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/etag/1.8.1: + resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/etag/download/etag-1.8.1.tgz} + name: etag + version: 1.8.1 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/eventemitter3/4.0.7: + resolution: {integrity: sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eventemitter3/download/eventemitter3-4.0.7.tgz} + name: eventemitter3 + version: 4.0.7 + dev: true + + registry.nlark.com/eventsource/1.1.0: + resolution: {integrity: sha1-AOjKfJIQnpSw3fMtrGd9hBAoz68=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eventsource/download/eventsource-1.1.0.tgz} + name: eventsource + version: 1.1.0 + engines: {node: '>=0.12.0'} + dependencies: + original: registry.nlark.com/original/1.0.2 + dev: true + + registry.nlark.com/evp_bytestokey/1.0.3: + resolution: {integrity: sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/evp_bytestokey/download/evp_bytestokey-1.0.3.tgz} + name: evp_bytestokey + version: 1.0.3 + dependencies: + md5.js: registry.nlark.com/md5.js/1.3.5 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/exec-sh/0.3.6: + resolution: {integrity: sha1-/yZPnjJVGaYMteJzaSlDSDzKY7w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/exec-sh/download/exec-sh-0.3.6.tgz} + name: exec-sh + version: 0.3.6 + dev: true + + registry.nlark.com/execa/0.8.0: + resolution: {integrity: sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/execa/download/execa-0.8.0.tgz} + name: execa + version: 0.8.0 + engines: {node: '>=4'} + dependencies: + cross-spawn: registry.nlark.com/cross-spawn/5.1.0 + get-stream: registry.nlark.com/get-stream/3.0.0 + is-stream: registry.nlark.com/is-stream/1.1.0 + npm-run-path: registry.npmmirror.com/npm-run-path/2.0.2 + p-finally: registry.nlark.com/p-finally/1.0.0 + signal-exit: registry.npmmirror.com/signal-exit/3.0.5 + strip-eof: registry.npmmirror.com/strip-eof/1.0.0 + dev: true + + registry.nlark.com/execa/1.0.0: + resolution: {integrity: sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/execa/download/execa-1.0.0.tgz} + name: execa + version: 1.0.0 + engines: {node: '>=6'} + dependencies: + cross-spawn: registry.nlark.com/cross-spawn/6.0.5 + get-stream: registry.nlark.com/get-stream/4.1.0 + is-stream: registry.nlark.com/is-stream/1.1.0 + npm-run-path: registry.npmmirror.com/npm-run-path/2.0.2 + p-finally: registry.nlark.com/p-finally/1.0.0 + signal-exit: registry.npmmirror.com/signal-exit/3.0.5 + strip-eof: registry.npmmirror.com/strip-eof/1.0.0 + dev: true + + registry.nlark.com/execa/3.4.0: + resolution: {integrity: sha1-wI7UVQ72XYWPrCaf/IVyRG8364k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/execa/download/execa-3.4.0.tgz} + name: execa + version: 3.4.0 + engines: {node: ^8.12.0 || >=9.7.0} + dependencies: + cross-spawn: registry.nlark.com/cross-spawn/7.0.3 + get-stream: registry.nlark.com/get-stream/5.2.0 + human-signals: registry.nlark.com/human-signals/1.1.1 + is-stream: registry.nlark.com/is-stream/2.0.1 + merge-stream: registry.nlark.com/merge-stream/2.0.0 + npm-run-path: registry.npmmirror.com/npm-run-path/4.0.1 + onetime: registry.nlark.com/onetime/5.1.2 + p-finally: registry.nlark.com/p-finally/2.0.1 + signal-exit: registry.npmmirror.com/signal-exit/3.0.5 + strip-final-newline: registry.nlark.com/strip-final-newline/2.0.0 + dev: true + + registry.nlark.com/exit/0.1.2: + resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/exit/download/exit-0.1.2.tgz} + name: exit + version: 0.1.2 + engines: {node: '>= 0.8.0'} + dev: true + + registry.nlark.com/expand-brackets/0.1.5: + resolution: {integrity: sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/expand-brackets/download/expand-brackets-0.1.5.tgz} + name: expand-brackets + version: 0.1.5 + engines: {node: '>=0.10.0'} + dependencies: + is-posix-bracket: registry.nlark.com/is-posix-bracket/0.1.1 + dev: true + + registry.nlark.com/expand-brackets/2.1.4: + resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz} + name: expand-brackets + version: 2.1.4 + engines: {node: '>=0.10.0'} + dependencies: + debug: registry.npmmirror.com/debug/2.6.9 + define-property: registry.nlark.com/define-property/0.2.5 + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + posix-character-classes: registry.nlark.com/posix-character-classes/0.1.1 + regex-not: registry.nlark.com/regex-not/1.0.2 + snapdragon: registry.nlark.com/snapdragon/0.8.2 + to-regex: registry.nlark.com/to-regex/3.0.2 + dev: true + + registry.nlark.com/expand-range/1.8.2: + resolution: {integrity: sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/expand-range/download/expand-range-1.8.2.tgz} + name: expand-range + version: 1.8.2 + engines: {node: '>=0.10.0'} + dependencies: + fill-range: registry.nlark.com/fill-range/2.2.4 + dev: true + + registry.nlark.com/express/4.17.1: + resolution: {integrity: sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/express/download/express-4.17.1.tgz} + name: express + version: 4.17.1 + engines: {node: '>= 0.10.0'} + dependencies: + accepts: registry.nlark.com/accepts/1.3.7 + array-flatten: registry.nlark.com/array-flatten/1.1.1 + body-parser: registry.nlark.com/body-parser/1.19.0 + content-disposition: registry.npmmirror.com/content-disposition/0.5.3 + content-type: registry.nlark.com/content-type/1.0.4 + cookie: registry.nlark.com/cookie/0.4.0 + cookie-signature: registry.npmmirror.com/cookie-signature/1.0.6 + debug: registry.npmmirror.com/debug/2.6.9 + depd: registry.nlark.com/depd/1.1.2 + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + etag: registry.nlark.com/etag/1.8.1 + finalhandler: registry.nlark.com/finalhandler/1.1.2 + fresh: registry.npmmirror.com/fresh/0.5.2 + merge-descriptors: registry.npmmirror.com/merge-descriptors/1.0.1 + methods: registry.nlark.com/methods/1.1.2 + on-finished: registry.nlark.com/on-finished/2.3.0 + parseurl: registry.nlark.com/parseurl/1.3.3 + path-to-regexp: registry.nlark.com/path-to-regexp/0.1.7 + proxy-addr: registry.nlark.com/proxy-addr/2.0.7 + qs: registry.nlark.com/qs/6.7.0 + range-parser: registry.nlark.com/range-parser/1.2.1 + safe-buffer: registry.nlark.com/safe-buffer/5.1.2 + send: registry.npmmirror.com/send/0.17.1 + serve-static: registry.nlark.com/serve-static/1.14.1 + setprototypeof: registry.nlark.com/setprototypeof/1.1.1 + statuses: registry.nlark.com/statuses/1.5.0 + type-is: registry.nlark.com/type-is/1.6.18 + utils-merge: registry.nlark.com/utils-merge/1.0.1 + vary: registry.nlark.com/vary/1.1.2 + dev: true + + registry.nlark.com/extend-shallow/2.0.1: + resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/extend-shallow/download/extend-shallow-2.0.1.tgz} + name: extend-shallow + version: 2.0.1 + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: registry.nlark.com/is-extendable/0.1.1 + dev: true + + registry.nlark.com/extend-shallow/3.0.2: + resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/extend-shallow/download/extend-shallow-3.0.2.tgz} + name: extend-shallow + version: 3.0.2 + engines: {node: '>=0.10.0'} + dependencies: + assign-symbols: registry.nlark.com/assign-symbols/1.0.0 + is-extendable: registry.nlark.com/is-extendable/1.0.1 + dev: true + + registry.nlark.com/extend/3.0.2: + resolution: {integrity: sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/extend/download/extend-3.0.2.tgz} + name: extend + version: 3.0.2 + dev: true + + registry.nlark.com/external-editor/3.1.0: + resolution: {integrity: sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz} + name: external-editor + version: 3.1.0 + engines: {node: '>=4'} + dependencies: + chardet: registry.npmmirror.com/chardet/0.7.0 + iconv-lite: registry.nlark.com/iconv-lite/0.4.24 + tmp: registry.nlark.com/tmp/0.0.33 + dev: true + + registry.nlark.com/extglob/0.3.2: + resolution: {integrity: sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/extglob/download/extglob-0.3.2.tgz} + name: extglob + version: 0.3.2 + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: registry.nlark.com/is-extglob/1.0.0 + dev: true + + registry.nlark.com/extglob/2.0.4: + resolution: {integrity: sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz} + name: extglob + version: 2.0.4 + engines: {node: '>=0.10.0'} + dependencies: + array-unique: registry.nlark.com/array-unique/0.3.2 + define-property: registry.nlark.com/define-property/1.0.0 + expand-brackets: registry.nlark.com/expand-brackets/2.1.4 + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + fragment-cache: registry.nlark.com/fragment-cache/0.2.1 + regex-not: registry.nlark.com/regex-not/1.0.2 + snapdragon: registry.nlark.com/snapdragon/0.8.2 + to-regex: registry.nlark.com/to-regex/3.0.2 + dev: true + + registry.nlark.com/fast-deep-equal/3.1.3: + resolution: {integrity: sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz?cache=0&sync_timestamp=1631603549709&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-3.1.3.tgz} + name: fast-deep-equal + version: 3.1.3 + dev: true + + registry.nlark.com/fast-glob/2.2.7: + resolution: {integrity: sha1-aVOFfDr6R1//ku5gFdUtpwpM050=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-glob/download/fast-glob-2.2.7.tgz} + name: fast-glob + version: 2.2.7 + engines: {node: '>=4.0.0'} + dependencies: + '@mrmlnc/readdir-enhanced': registry.nlark.com/@mrmlnc/readdir-enhanced/2.2.1 + '@nodelib/fs.stat': registry.nlark.com/@nodelib/fs.stat/1.1.3 + glob-parent: registry.npmmirror.com/glob-parent/3.1.0 + is-glob: registry.npmmirror.com/is-glob/4.0.3 + merge2: registry.nlark.com/merge2/1.4.1 + micromatch: registry.nlark.com/micromatch/3.1.10 + dev: true + + registry.nlark.com/fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz} + name: fast-json-stable-stringify + version: 2.1.0 + dev: true + + registry.nlark.com/fast-levenshtein/2.0.6: + resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz} + name: fast-levenshtein + version: 2.0.6 + dev: true + + registry.nlark.com/faye-websocket/0.11.4: + resolution: {integrity: sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/faye-websocket/download/faye-websocket-0.11.4.tgz} + name: faye-websocket + version: 0.11.4 + engines: {node: '>=0.8.0'} + dependencies: + websocket-driver: registry.nlark.com/websocket-driver/0.7.4 + dev: true + + registry.nlark.com/fb-watchman/2.0.1: + resolution: {integrity: sha1-/IT7OdJwnPP/bXQ3BhV7tXCKioU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fb-watchman/download/fb-watchman-2.0.1.tgz} + name: fb-watchman + version: 2.0.1 + dependencies: + bser: registry.nlark.com/bser/2.1.1 + dev: true + + registry.nlark.com/figgy-pudding/3.5.2: + resolution: {integrity: sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/figgy-pudding/download/figgy-pudding-3.5.2.tgz} + name: figgy-pudding + version: 3.5.2 + dev: true + + registry.nlark.com/figures/3.2.0: + resolution: {integrity: sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/figures/download/figures-3.2.0.tgz} + name: figures + version: 3.2.0 + engines: {node: '>=8'} + dependencies: + escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 + dev: true + + registry.nlark.com/file-entry-cache/5.0.1: + resolution: {integrity: sha1-yg9u+m3T1WEzP7FFFQZcL6/fQ5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/file-entry-cache/download/file-entry-cache-5.0.1.tgz} + name: file-entry-cache + version: 5.0.1 + engines: {node: '>=4'} + dependencies: + flat-cache: registry.nlark.com/flat-cache/2.0.1 + dev: true + + registry.nlark.com/file-loader/4.3.0_webpack@4.46.0: + resolution: {integrity: sha1-eA8ED3KbPRgBnyBgX3I+hEuKWK8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/file-loader/download/file-loader-4.3.0.tgz} + id: registry.nlark.com/file-loader/4.3.0 + name: file-loader + version: 4.3.0 + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 + dependencies: + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.nlark.com/file-uri-to-path/1.0.0: + resolution: {integrity: sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz} + name: file-uri-to-path + version: 1.0.0 + requiresBuild: true + dev: true + + registry.nlark.com/filename-regex/2.0.1: + resolution: {integrity: sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/filename-regex/download/filename-regex-2.0.1.tgz} + name: filename-regex + version: 2.0.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/fill-range/2.2.4: + resolution: {integrity: sha1-6x53OrsFbc2N8r/favWbizqTZWU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fill-range/download/fill-range-2.2.4.tgz} + name: fill-range + version: 2.2.4 + engines: {node: '>=0.10.0'} + dependencies: + is-number: registry.nlark.com/is-number/2.1.0 + isobject: registry.nlark.com/isobject/2.1.0 + randomatic: registry.nlark.com/randomatic/3.1.1 + repeat-element: registry.nlark.com/repeat-element/1.1.4 + repeat-string: registry.nlark.com/repeat-string/1.6.1 + dev: true + + registry.nlark.com/fill-range/4.0.0: + resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz} + name: fill-range + version: 4.0.0 + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + is-number: registry.nlark.com/is-number/3.0.0 + repeat-string: registry.nlark.com/repeat-string/1.6.1 + to-regex-range: registry.nlark.com/to-regex-range/2.1.1 + dev: true + + registry.nlark.com/fill-range/7.0.1: + resolution: {integrity: sha1-GRmmp8df44ssfHflGYU12prN2kA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz} + name: fill-range + version: 7.0.1 + engines: {node: '>=8'} + dependencies: + to-regex-range: registry.nlark.com/to-regex-range/5.0.1 + dev: true + + registry.nlark.com/finalhandler/1.1.0: + resolution: {integrity: sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/finalhandler/download/finalhandler-1.1.0.tgz} + name: finalhandler + version: 1.1.0 + engines: {node: '>= 0.8'} + dependencies: + debug: registry.npmmirror.com/debug/2.6.9 + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + on-finished: registry.nlark.com/on-finished/2.3.0 + parseurl: registry.nlark.com/parseurl/1.3.3 + statuses: registry.nlark.com/statuses/1.3.1 + unpipe: registry.nlark.com/unpipe/1.0.0 + dev: true + + registry.nlark.com/finalhandler/1.1.2: + resolution: {integrity: sha1-t+fQAP/RGTjQ/bBTUG9uur6fWH0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/finalhandler/download/finalhandler-1.1.2.tgz} + name: finalhandler + version: 1.1.2 + engines: {node: '>= 0.8'} + dependencies: + debug: registry.npmmirror.com/debug/2.6.9 + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + on-finished: registry.nlark.com/on-finished/2.3.0 + parseurl: registry.nlark.com/parseurl/1.3.3 + statuses: registry.nlark.com/statuses/1.5.0 + unpipe: registry.nlark.com/unpipe/1.0.0 + dev: true + + registry.nlark.com/find-cache-dir/0.1.1: + resolution: {integrity: sha1-yN765XyKUqinhPnjHFfHQumToLk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/find-cache-dir/download/find-cache-dir-0.1.1.tgz} + name: find-cache-dir + version: 0.1.1 + engines: {node: '>=0.10.0'} + dependencies: + commondir: registry.nlark.com/commondir/1.0.1 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + pkg-dir: registry.npmmirror.com/pkg-dir/1.0.0 + dev: true + + registry.nlark.com/find-cache-dir/2.1.0: + resolution: {integrity: sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz} + name: find-cache-dir + version: 2.1.0 + engines: {node: '>=6'} + dependencies: + commondir: registry.nlark.com/commondir/1.0.1 + make-dir: registry.nlark.com/make-dir/2.1.0 + pkg-dir: registry.npmmirror.com/pkg-dir/3.0.0 + dev: true + + registry.nlark.com/find-cache-dir/3.3.2: + resolution: {integrity: sha1-swxbbv8HMHMa6pu9nb7L2AJW1ks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/find-cache-dir/download/find-cache-dir-3.3.2.tgz} + name: find-cache-dir + version: 3.3.2 + engines: {node: '>=8'} + dependencies: + commondir: registry.nlark.com/commondir/1.0.1 + make-dir: registry.nlark.com/make-dir/3.1.0 + pkg-dir: registry.npmmirror.com/pkg-dir/4.2.0 + dev: true + + registry.nlark.com/flat-cache/2.0.1: + resolution: {integrity: sha1-XSltbwS9pEpGMKMBQTvbwuwIXsA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/flat-cache/download/flat-cache-2.0.1.tgz} + name: flat-cache + version: 2.0.1 + engines: {node: '>=4'} + dependencies: + flatted: registry.npmmirror.com/flatted/2.0.2 + rimraf: registry.npmmirror.com/rimraf/2.6.3 + write: registry.nlark.com/write/1.0.3 + dev: true + + registry.nlark.com/flush-write-stream/1.1.1: + resolution: {integrity: sha1-jdfYc6G6vCB9lOrQwuDkQnbr8ug=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/flush-write-stream/download/flush-write-stream-1.1.1.tgz} + name: flush-write-stream + version: 1.1.1 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/for-each/0.3.3: + resolution: {integrity: sha1-abRH6IoKXTLD5whPPxcQA0shN24=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/for-each/download/for-each-0.3.3.tgz} + name: for-each + version: 0.3.3 + dependencies: + is-callable: registry.nlark.com/is-callable/1.2.4 + dev: true + + registry.nlark.com/for-in/1.0.2: + resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz} + name: for-in + version: 1.0.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/for-own/0.1.5: + resolution: {integrity: sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz} + name: for-own + version: 0.1.5 + engines: {node: '>=0.10.0'} + dependencies: + for-in: registry.nlark.com/for-in/1.0.2 + dev: true + + registry.nlark.com/forever-agent/0.6.1: + resolution: {integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/forever-agent/download/forever-agent-0.6.1.tgz} + name: forever-agent + version: 0.6.1 + dev: true + + registry.nlark.com/form-data/2.3.3: + resolution: {integrity: sha1-3M5SwF9kTymManq5Nr1yTO/786Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/form-data/download/form-data-2.3.3.tgz} + name: form-data + version: 2.3.3 + engines: {node: '>= 0.12'} + dependencies: + asynckit: registry.nlark.com/asynckit/0.4.0 + combined-stream: registry.nlark.com/combined-stream/1.0.8 + mime-types: registry.npmmirror.com/mime-types/2.1.34 + dev: true + + registry.nlark.com/forwarded/0.2.0: + resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz} + name: forwarded + version: 0.2.0 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/fragment-cache/0.2.1: + resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz} + name: fragment-cache + version: 0.2.1 + engines: {node: '>=0.10.0'} + dependencies: + map-cache: registry.nlark.com/map-cache/0.2.2 + dev: true + + registry.nlark.com/from2/2.3.0: + resolution: {integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/from2/download/from2-2.3.0.tgz} + name: from2 + version: 2.3.0 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/fs-extra/7.0.1: + resolution: {integrity: sha1-TxicRKoSO4lfcigE9V6iPq3DSOk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fs-extra/download/fs-extra-7.0.1.tgz?cache=0&sync_timestamp=1631603494735&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffs-extra%2Fdownload%2Ffs-extra-7.0.1.tgz} + name: fs-extra + version: 7.0.1 + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + jsonfile: registry.nlark.com/jsonfile/4.0.0 + universalify: registry.nlark.com/universalify/0.1.2 + dev: true + + registry.nlark.com/fs-minipass/2.1.0: + resolution: {integrity: sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fs-minipass/download/fs-minipass-2.1.0.tgz} + name: fs-minipass + version: 2.1.0 + engines: {node: '>= 8'} + dependencies: + minipass: registry.nlark.com/minipass/3.1.5 + dev: true + + registry.nlark.com/fs.realpath/1.0.0: + resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz} + name: fs.realpath + version: 1.0.0 + + registry.nlark.com/function-bind/1.1.1: + resolution: {integrity: sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz} + name: function-bind + version: 1.1.1 + + registry.nlark.com/gensync/1.0.0-beta.2: + resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz} + name: gensync + version: 1.0.0-beta.2 + engines: {node: '>=6.9.0'} + dev: true + + registry.nlark.com/get-caller-file/2.0.5: + resolution: {integrity: sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-caller-file/download/get-caller-file-2.0.5.tgz} + name: get-caller-file + version: 2.0.5 + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + registry.nlark.com/get-intrinsic/1.1.1: + resolution: {integrity: sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz} + name: get-intrinsic + version: 1.1.1 + dependencies: + function-bind: registry.nlark.com/function-bind/1.1.1 + has: registry.nlark.com/has/1.0.3 + has-symbols: registry.nlark.com/has-symbols/1.0.2 + + registry.nlark.com/get-stream/3.0.0: + resolution: {integrity: sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-stream/download/get-stream-3.0.0.tgz} + name: get-stream + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/get-stream/4.1.0: + resolution: {integrity: sha1-wbJVV189wh1Zv8ec09K0axw6VLU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-stream/download/get-stream-4.1.0.tgz} + name: get-stream + version: 4.1.0 + engines: {node: '>=6'} + dependencies: + pump: registry.nlark.com/pump/3.0.0 + dev: true + + registry.nlark.com/get-stream/5.2.0: + resolution: {integrity: sha1-SWaheV7lrOZecGxLe+txJX1uItM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz} + name: get-stream + version: 5.2.0 + engines: {node: '>=8'} + dependencies: + pump: registry.nlark.com/pump/3.0.0 + dev: true + + registry.nlark.com/get-symbol-description/1.0.0: + resolution: {integrity: sha1-f9uByQAQH71WTdXxowr1qtweWNY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-symbol-description/download/get-symbol-description-1.0.0.tgz} + name: get-symbol-description + version: 1.0.0 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 + dev: true + + registry.nlark.com/get-value/2.0.6: + resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-value/download/get-value-2.0.6.tgz} + name: get-value + version: 2.0.6 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/getpass/0.1.7: + resolution: {integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/getpass/download/getpass-0.1.7.tgz} + name: getpass + version: 0.1.7 + dependencies: + assert-plus: registry.nlark.com/assert-plus/1.0.0 + dev: true + + registry.nlark.com/glob-base/0.3.0: + resolution: {integrity: sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/glob-base/download/glob-base-0.3.0.tgz} + name: glob-base + version: 0.3.0 + engines: {node: '>=0.10.0'} + dependencies: + glob-parent: registry.npmmirror.com/glob-parent/2.0.0 + is-glob: registry.npmmirror.com/is-glob/2.0.1 + dev: true + + registry.nlark.com/glob-to-regexp/0.3.0: + resolution: {integrity: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz} + name: glob-to-regexp + version: 0.3.0 + dev: true + + registry.nlark.com/globby/6.1.0: + resolution: {integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/globby/download/globby-6.1.0.tgz} + name: globby + version: 6.1.0 + engines: {node: '>=0.10.0'} + dependencies: + array-union: registry.nlark.com/array-union/1.0.2 + glob: registry.npmmirror.com/glob/7.2.0 + object-assign: registry.nlark.com/object-assign/4.1.1 + pify: registry.nlark.com/pify/2.3.0 + pinkie-promise: registry.nlark.com/pinkie-promise/2.0.1 + dev: true + + registry.nlark.com/globby/7.1.1: + resolution: {integrity: sha1-+yzP+UAfhgCUXfral0QMypcrhoA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/globby/download/globby-7.1.1.tgz} + name: globby + version: 7.1.1 + engines: {node: '>=4'} + dependencies: + array-union: registry.nlark.com/array-union/1.0.2 + dir-glob: registry.nlark.com/dir-glob/2.2.2 + glob: registry.npmmirror.com/glob/7.2.0 + ignore: registry.npmmirror.com/ignore/3.3.10 + pify: registry.nlark.com/pify/3.0.0 + slash: registry.nlark.com/slash/1.0.0 + dev: true + + registry.nlark.com/globby/9.2.0: + resolution: {integrity: sha1-/QKacGxwPSm90XD0tts6P3p8tj0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/globby/download/globby-9.2.0.tgz} + name: globby + version: 9.2.0 + engines: {node: '>=6'} + dependencies: + '@types/glob': registry.npmmirror.com/@types/glob/7.2.0 + array-union: registry.nlark.com/array-union/1.0.2 + dir-glob: registry.nlark.com/dir-glob/2.2.2 + fast-glob: registry.nlark.com/fast-glob/2.2.7 + glob: registry.npmmirror.com/glob/7.2.0 + ignore: registry.npmmirror.com/ignore/4.0.6 + pify: registry.nlark.com/pify/4.0.1 + slash: registry.nlark.com/slash/2.0.0 + dev: true + + registry.nlark.com/growly/1.3.0: + resolution: {integrity: sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/growly/download/growly-1.3.0.tgz} + name: growly + version: 1.3.0 + dev: true + + registry.nlark.com/gzip-size/5.1.1: + resolution: {integrity: sha1-y5vuaS+HwGErIyhAqHOQTkwTUnQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/gzip-size/download/gzip-size-5.1.1.tgz} + name: gzip-size + version: 5.1.1 + engines: {node: '>=6'} + dependencies: + duplexer: registry.nlark.com/duplexer/0.1.2 + pify: registry.nlark.com/pify/4.0.1 + dev: true + + registry.nlark.com/handle-thing/2.0.1: + resolution: {integrity: sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/handle-thing/download/handle-thing-2.0.1.tgz} + name: handle-thing + version: 2.0.1 + dev: true + + registry.nlark.com/har-schema/2.0.0: + resolution: {integrity: sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/har-schema/download/har-schema-2.0.0.tgz} + name: har-schema + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/has-ansi/2.0.0: + resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-ansi/download/has-ansi-2.0.0.tgz} + name: has-ansi + version: 2.0.0 + engines: {node: '>=0.10.0'} + dependencies: + ansi-regex: registry.nlark.com/ansi-regex/2.1.1 + dev: true + + registry.nlark.com/has-bigints/1.0.1: + resolution: {integrity: sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz} + name: has-bigints + version: 1.0.1 + dev: true + + registry.nlark.com/has-flag/1.0.0: + resolution: {integrity: sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-1.0.0.tgz} + name: has-flag + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/has-flag/2.0.0: + resolution: {integrity: sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-2.0.0.tgz} + name: has-flag + version: 2.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/has-flag/3.0.0: + resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz} + name: has-flag + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/has-flag/4.0.0: + resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz} + name: has-flag + version: 4.0.0 + engines: {node: '>=8'} + + registry.nlark.com/has-symbols/1.0.2: + resolution: {integrity: sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz} + name: has-symbols + version: 1.0.2 + engines: {node: '>= 0.4'} + + registry.nlark.com/has-tostringtag/1.0.0: + resolution: {integrity: sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz} + name: has-tostringtag + version: 1.0.0 + engines: {node: '>= 0.4'} + dependencies: + has-symbols: registry.nlark.com/has-symbols/1.0.2 + dev: true + + registry.nlark.com/has-value/0.3.1: + resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-value/download/has-value-0.3.1.tgz} + name: has-value + version: 0.3.1 + engines: {node: '>=0.10.0'} + dependencies: + get-value: registry.nlark.com/get-value/2.0.6 + has-values: registry.nlark.com/has-values/0.1.4 + isobject: registry.nlark.com/isobject/2.1.0 + dev: true + + registry.nlark.com/has-value/1.0.0: + resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-value/download/has-value-1.0.0.tgz} + name: has-value + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + get-value: registry.nlark.com/get-value/2.0.6 + has-values: registry.nlark.com/has-values/1.0.0 + isobject: registry.nlark.com/isobject/3.0.1 + dev: true + + registry.nlark.com/has-values/0.1.4: + resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-values/download/has-values-0.1.4.tgz} + name: has-values + version: 0.1.4 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/has-values/1.0.0: + resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-values/download/has-values-1.0.0.tgz} + name: has-values + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + is-number: registry.nlark.com/is-number/3.0.0 + kind-of: registry.nlark.com/kind-of/4.0.0 + dev: true + + registry.nlark.com/has/1.0.3: + resolution: {integrity: sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has/download/has-1.0.3.tgz} + name: has + version: 1.0.3 + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: registry.nlark.com/function-bind/1.1.1 + + registry.nlark.com/hash-base/3.1.0: + resolution: {integrity: sha1-VcOB2eBuHSmXqIO0o/3f5/DTrzM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hash-base/download/hash-base-3.1.0.tgz} + name: hash-base + version: 3.1.0 + engines: {node: '>=4'} + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/3.6.0 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/hash-sum/1.0.2: + resolution: {integrity: sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hash-sum/download/hash-sum-1.0.2.tgz} + name: hash-sum + version: 1.0.2 + dev: true + + registry.nlark.com/hash-sum/2.0.0: + resolution: {integrity: sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hash-sum/download/hash-sum-2.0.0.tgz} + name: hash-sum + version: 2.0.0 + dev: true + + registry.nlark.com/hash.js/1.1.7: + resolution: {integrity: sha1-C6vKU46NTuSg+JiNaIZlN6ADz0I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hash.js/download/hash.js-1.1.7.tgz} + name: hash.js + version: 1.1.7 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + minimalistic-assert: registry.nlark.com/minimalistic-assert/1.0.1 + dev: true + + registry.nlark.com/he/1.2.0: + resolution: {integrity: sha1-hK5l+n6vsWX922FWauFLrwVmTw8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/he/download/he-1.2.0.tgz} + name: he + version: 1.2.0 + hasBin: true + dev: true + + registry.nlark.com/hex-color-regex/1.1.0: + resolution: {integrity: sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz} + name: hex-color-regex + version: 1.1.0 + dev: true + + registry.nlark.com/hmac-drbg/1.0.1: + resolution: {integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz} + name: hmac-drbg + version: 1.0.1 + dependencies: + hash.js: registry.nlark.com/hash.js/1.1.7 + minimalistic-assert: registry.nlark.com/minimalistic-assert/1.0.1 + minimalistic-crypto-utils: registry.nlark.com/minimalistic-crypto-utils/1.0.1 + dev: true + + registry.nlark.com/hoopy/0.1.4: + resolution: {integrity: sha1-YJIH1mEQADOpqUAq096mdzgcGx0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hoopy/download/hoopy-0.1.4.tgz} + name: hoopy + version: 0.1.4 + engines: {node: '>= 6.0.0'} + dev: true + + registry.nlark.com/hosted-git-info/2.8.9: + resolution: {integrity: sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz?cache=0&sync_timestamp=1631603612234&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhosted-git-info%2Fdownload%2Fhosted-git-info-2.8.9.tgz} + name: hosted-git-info + version: 2.8.9 + dev: true + + registry.nlark.com/hsl-regex/1.0.0: + resolution: {integrity: sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz} + name: hsl-regex + version: 1.0.0 + dev: true + + registry.nlark.com/hsla-regex/1.0.0: + resolution: {integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hsla-regex/download/hsla-regex-1.0.0.tgz} + name: hsla-regex + version: 1.0.0 + dev: true + + registry.nlark.com/html-encoding-sniffer/1.0.2: + resolution: {integrity: sha1-5w2EuU2lOqN14R/jo1G+ZkLKRvg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-encoding-sniffer/download/html-encoding-sniffer-1.0.2.tgz} + name: html-encoding-sniffer + version: 1.0.2 + dependencies: + whatwg-encoding: registry.nlark.com/whatwg-encoding/1.0.5 + dev: true + + registry.nlark.com/html-entities/1.4.0: + resolution: {integrity: sha1-z70bAdKvr5rcobEK59/6uYxx0tw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-entities/download/html-entities-1.4.0.tgz} + name: html-entities + version: 1.4.0 + dev: true + + registry.nlark.com/html-escaper/2.0.2: + resolution: {integrity: sha1-39YAJ9o2o238viNiYsAKWCJoFFM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-escaper/download/html-escaper-2.0.2.tgz} + name: html-escaper + version: 2.0.2 + dev: true + + registry.nlark.com/html-minifier/3.5.21: + resolution: {integrity: sha1-0AQOBUcw41TbAIRjWTGUAVIS0gw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-minifier/download/html-minifier-3.5.21.tgz} + name: html-minifier + version: 3.5.21 + engines: {node: '>=4'} + hasBin: true + dependencies: + camel-case: registry.nlark.com/camel-case/3.0.0 + clean-css: registry.npmmirror.com/clean-css/4.2.4 + commander: registry.npmmirror.com/commander/2.17.1 + he: registry.nlark.com/he/1.2.0 + param-case: registry.nlark.com/param-case/2.1.1 + relateurl: registry.nlark.com/relateurl/0.2.7 + uglify-js: registry.npmmirror.com/uglify-js/3.4.10 + dev: true + + registry.nlark.com/html-tags/2.0.0: + resolution: {integrity: sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-tags/download/html-tags-2.0.0.tgz} + name: html-tags + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/html-tags/3.1.0: + resolution: {integrity: sha1-e15vfmZen7QfMAB+2eDUHpf7IUA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz} + name: html-tags + version: 3.1.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/http-deceiver/1.2.7: + resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-deceiver/download/http-deceiver-1.2.7.tgz} + name: http-deceiver + version: 1.2.7 + dev: true + + registry.nlark.com/http-errors/1.6.3: + resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-errors/download/http-errors-1.6.3.tgz} + name: http-errors + version: 1.6.3 + engines: {node: '>= 0.6'} + dependencies: + depd: registry.nlark.com/depd/1.1.2 + inherits: registry.nlark.com/inherits/2.0.3 + setprototypeof: registry.nlark.com/setprototypeof/1.1.0 + statuses: registry.nlark.com/statuses/1.4.0 + dev: true + + registry.nlark.com/http-errors/1.7.2: + resolution: {integrity: sha1-T1ApzxMjnzEDblsuVSkrz7zIXI8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-errors/download/http-errors-1.7.2.tgz} + name: http-errors + version: 1.7.2 + engines: {node: '>= 0.6'} + dependencies: + depd: registry.nlark.com/depd/1.1.2 + inherits: registry.nlark.com/inherits/2.0.3 + setprototypeof: registry.nlark.com/setprototypeof/1.1.1 + statuses: registry.nlark.com/statuses/1.5.0 + toidentifier: registry.npmmirror.com/toidentifier/1.0.0 + dev: true + + registry.nlark.com/http-errors/1.7.3: + resolution: {integrity: sha1-bGGeT5xgMIw4UZSYwU+7EKrOuwY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-errors/download/http-errors-1.7.3.tgz} + name: http-errors + version: 1.7.3 + engines: {node: '>= 0.6'} + dependencies: + depd: registry.nlark.com/depd/1.1.2 + inherits: registry.nlark.com/inherits/2.0.4 + setprototypeof: registry.nlark.com/setprototypeof/1.1.1 + statuses: registry.nlark.com/statuses/1.5.0 + toidentifier: registry.npmmirror.com/toidentifier/1.0.0 + dev: true + + registry.nlark.com/http-parser-js/0.5.3: + resolution: {integrity: sha1-AdJwnHnUFpi7AdTezF6dpOSgM9k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-parser-js/download/http-parser-js-0.5.3.tgz} + name: http-parser-js + version: 0.5.3 + dev: true + + registry.nlark.com/http-proxy-middleware/0.19.1_debug@4.3.2: + resolution: {integrity: sha1-GDx9xKoUeRUDBkmMIQza+WCApDo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-proxy-middleware/download/http-proxy-middleware-0.19.1.tgz} + id: registry.nlark.com/http-proxy-middleware/0.19.1 + name: http-proxy-middleware + version: 0.19.1 + engines: {node: '>=4.0.0'} + dependencies: + http-proxy: registry.nlark.com/http-proxy/1.18.1_debug@4.3.2 + is-glob: registry.npmmirror.com/is-glob/4.0.3 + lodash: registry.nlark.com/lodash/4.17.21 + micromatch: registry.nlark.com/micromatch/3.1.10 + transitivePeerDependencies: + - debug + dev: true + + registry.nlark.com/http-proxy/1.18.1_debug@4.3.2: + resolution: {integrity: sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-proxy/download/http-proxy-1.18.1.tgz} + id: registry.nlark.com/http-proxy/1.18.1 + name: http-proxy + version: 1.18.1 + engines: {node: '>=8.0.0'} + dependencies: + eventemitter3: registry.nlark.com/eventemitter3/4.0.7 + follow-redirects: registry.npmmirror.com/follow-redirects/1.14.5 + requires-port: registry.nlark.com/requires-port/1.0.0 + transitivePeerDependencies: + - debug + dev: true + + registry.nlark.com/http-signature/1.2.0: + resolution: {integrity: sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/http-signature/download/http-signature-1.2.0.tgz} + name: http-signature + version: 1.2.0 + engines: {node: '>=0.8', npm: '>=1.3.7'} + dependencies: + assert-plus: registry.nlark.com/assert-plus/1.0.0 + jsprim: registry.npmmirror.com/jsprim/1.4.1 + sshpk: registry.nlark.com/sshpk/1.16.1 + dev: true + + registry.nlark.com/https-browserify/1.0.0: + resolution: {integrity: sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/https-browserify/download/https-browserify-1.0.0.tgz} + name: https-browserify + version: 1.0.0 + dev: true + + registry.nlark.com/human-signals/1.1.1: + resolution: {integrity: sha1-xbHNFPUK6uCatsWf5jujOV/k36M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz} + name: human-signals + version: 1.1.1 + engines: {node: '>=8.12.0'} + dev: true + + registry.nlark.com/iconv-lite/0.4.24: + resolution: {integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz} + name: iconv-lite + version: 0.4.24 + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: registry.nlark.com/safer-buffer/2.1.2 + dev: true + + registry.nlark.com/icss-utils/4.1.1: + resolution: {integrity: sha1-IRcLU3ie4nRHwvR91oMIFAP5pGc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/icss-utils/download/icss-utils-4.1.1.tgz} + name: icss-utils + version: 4.1.1 + engines: {node: '>= 6'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/ieee754/1.2.1: + resolution: {integrity: sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ieee754/download/ieee754-1.2.1.tgz} + name: ieee754 + version: 1.2.1 + dev: true + + registry.nlark.com/iferr/0.1.5: + resolution: {integrity: sha1-xg7taebY/bazEEofy8ocGS3FtQE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/iferr/download/iferr-0.1.5.tgz} + name: iferr + version: 0.1.5 + dev: true + + registry.nlark.com/image-size/0.5.5: + resolution: {integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz} + name: image-size + version: 0.5.5 + engines: {node: '>=0.10.0'} + hasBin: true + dev: true + + registry.nlark.com/import-cwd/2.1.0: + resolution: {integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/import-cwd/download/import-cwd-2.1.0.tgz} + name: import-cwd + version: 2.1.0 + engines: {node: '>=4'} + dependencies: + import-from: registry.nlark.com/import-from/2.1.0 + dev: true + + registry.nlark.com/import-fresh/2.0.0: + resolution: {integrity: sha1-2BNVwVYS04bGH53dOSLUMEgipUY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/import-fresh/download/import-fresh-2.0.0.tgz} + name: import-fresh + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + caller-path: registry.npmmirror.com/caller-path/2.0.0 + resolve-from: registry.nlark.com/resolve-from/3.0.0 + dev: true + + registry.nlark.com/import-fresh/3.3.0: + resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz} + name: import-fresh + version: 3.3.0 + engines: {node: '>=6'} + dependencies: + parent-module: registry.npmmirror.com/parent-module/1.0.1 + resolve-from: registry.nlark.com/resolve-from/4.0.0 + dev: true + + registry.nlark.com/import-from/2.1.0: + resolution: {integrity: sha1-M1238qev/VOqpHHUuAId7ja387E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/import-from/download/import-from-2.1.0.tgz} + name: import-from + version: 2.1.0 + engines: {node: '>=4'} + dependencies: + resolve-from: registry.nlark.com/resolve-from/3.0.0 + dev: true + + registry.nlark.com/imurmurhash/0.1.4: + resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz} + name: imurmurhash + version: 0.1.4 + engines: {node: '>=0.8.19'} + dev: true + + registry.nlark.com/indent-string/4.0.0: + resolution: {integrity: sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz} + name: indent-string + version: 4.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/indexes-of/1.0.1: + resolution: {integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/indexes-of/download/indexes-of-1.0.1.tgz} + name: indexes-of + version: 1.0.1 + dev: true + + registry.nlark.com/infer-owner/1.0.4: + resolution: {integrity: sha1-xM78qo5RBRwqQLos6KPScpWvlGc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/infer-owner/download/infer-owner-1.0.4.tgz} + name: infer-owner + version: 1.0.4 + dev: true + + registry.nlark.com/inflight/1.0.6: + resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/inflight/download/inflight-1.0.6.tgz} + name: inflight + version: 1.0.6 + dependencies: + once: registry.nlark.com/once/1.4.0 + wrappy: registry.nlark.com/wrappy/1.0.2 + + registry.nlark.com/inherits/2.0.1: + resolution: {integrity: sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/inherits/download/inherits-2.0.1.tgz} + name: inherits + version: 2.0.1 + dev: true + + registry.nlark.com/inherits/2.0.3: + resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/inherits/download/inherits-2.0.3.tgz} + name: inherits + version: 2.0.3 + dev: true + + registry.nlark.com/inherits/2.0.4: + resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz} + name: inherits + version: 2.0.4 + + registry.nlark.com/ini/1.3.8: + resolution: {integrity: sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ini/download/ini-1.3.8.tgz} + name: ini + version: 1.3.8 + dev: true + + registry.nlark.com/internal-slot/1.0.3: + resolution: {integrity: sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz} + name: internal-slot + version: 1.0.3 + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 + has: registry.nlark.com/has/1.0.3 + side-channel: registry.nlark.com/side-channel/1.0.4 + dev: true + + registry.nlark.com/invariant/2.2.4: + resolution: {integrity: sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/invariant/download/invariant-2.2.4.tgz} + name: invariant + version: 2.2.4 + dependencies: + loose-envify: registry.nlark.com/loose-envify/1.4.0 + dev: true + + registry.nlark.com/ip-regex/2.1.0: + resolution: {integrity: sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ip-regex/download/ip-regex-2.1.0.tgz} + name: ip-regex + version: 2.1.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/ip/1.1.5: + resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ip/download/ip-1.1.5.tgz} + name: ip + version: 1.1.5 + dev: true + + registry.nlark.com/is-absolute-url/2.1.0: + resolution: {integrity: sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-absolute-url/download/is-absolute-url-2.1.0.tgz} + name: is-absolute-url + version: 2.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-absolute-url/3.0.3: + resolution: {integrity: sha1-lsaiK2ojkpsR6gr7GDbDatSl1pg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-absolute-url/download/is-absolute-url-3.0.3.tgz} + name: is-absolute-url + version: 3.0.3 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/is-accessor-descriptor/0.1.6: + resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz} + name: is-accessor-descriptor + version: 0.1.6 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/is-accessor-descriptor/1.0.0: + resolution: {integrity: sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz} + name: is-accessor-descriptor + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/6.0.3 + dev: true + + registry.nlark.com/is-arguments/1.1.1: + resolution: {integrity: sha1-FbP4j9oB8ql/7ITKdhpWDxI++ps=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-arguments/download/is-arguments-1.1.1.tgz} + name: is-arguments + version: 1.1.1 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 + dev: true + + registry.nlark.com/is-arrayish/0.2.1: + resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz} + name: is-arrayish + version: 0.2.1 + dev: true + + registry.nlark.com/is-arrayish/0.3.2: + resolution: {integrity: sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-arrayish/download/is-arrayish-0.3.2.tgz} + name: is-arrayish + version: 0.3.2 + dev: true + + registry.nlark.com/is-bigint/1.0.4: + resolution: {integrity: sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-bigint/download/is-bigint-1.0.4.tgz} + name: is-bigint + version: 1.0.4 + dependencies: + has-bigints: registry.nlark.com/has-bigints/1.0.1 + dev: true + + registry.nlark.com/is-binary-path/1.0.1: + resolution: {integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-binary-path/download/is-binary-path-1.0.1.tgz} + name: is-binary-path + version: 1.0.1 + engines: {node: '>=0.10.0'} + dependencies: + binary-extensions: registry.nlark.com/binary-extensions/1.13.1 + dev: true + + registry.nlark.com/is-binary-path/2.1.0: + resolution: {integrity: sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz} + name: is-binary-path + version: 2.1.0 + engines: {node: '>=8'} + dependencies: + binary-extensions: registry.nlark.com/binary-extensions/2.2.0 + dev: true + + registry.nlark.com/is-boolean-object/1.1.2: + resolution: {integrity: sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.2.tgz} + name: is-boolean-object + version: 1.1.2 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 + dev: true + + registry.nlark.com/is-buffer/1.1.6: + resolution: {integrity: sha1-76ouqdqg16suoTqXsritUf776L4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-buffer/download/is-buffer-1.1.6.tgz} + name: is-buffer + version: 1.1.6 + dev: true + + registry.nlark.com/is-callable/1.2.4: + resolution: {integrity: sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-callable/download/is-callable-1.2.4.tgz} + name: is-callable + version: 1.2.4 + engines: {node: '>= 0.4'} + dev: true + + registry.nlark.com/is-color-stop/1.1.0: + resolution: {integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz} + name: is-color-stop + version: 1.1.0 + dependencies: + css-color-names: registry.nlark.com/css-color-names/0.0.4 + hex-color-regex: registry.nlark.com/hex-color-regex/1.1.0 + hsl-regex: registry.nlark.com/hsl-regex/1.0.0 + hsla-regex: registry.nlark.com/hsla-regex/1.0.0 + rgb-regex: registry.nlark.com/rgb-regex/1.0.1 + rgba-regex: registry.nlark.com/rgba-regex/1.0.0 + dev: true + + registry.nlark.com/is-data-descriptor/0.1.4: + resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz} + name: is-data-descriptor + version: 0.1.4 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/is-data-descriptor/1.0.0: + resolution: {integrity: sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz} + name: is-data-descriptor + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/6.0.3 + dev: true + + registry.nlark.com/is-date-object/1.0.5: + resolution: {integrity: sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-date-object/download/is-date-object-1.0.5.tgz} + name: is-date-object + version: 1.0.5 + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 + dev: true + + registry.nlark.com/is-descriptor/0.1.6: + resolution: {integrity: sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-descriptor/download/is-descriptor-0.1.6.tgz} + name: is-descriptor + version: 0.1.6 + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: registry.nlark.com/is-accessor-descriptor/0.1.6 + is-data-descriptor: registry.nlark.com/is-data-descriptor/0.1.4 + kind-of: registry.nlark.com/kind-of/5.1.0 + dev: true + + registry.nlark.com/is-descriptor/1.0.2: + resolution: {integrity: sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-descriptor/download/is-descriptor-1.0.2.tgz} + name: is-descriptor + version: 1.0.2 + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: registry.nlark.com/is-accessor-descriptor/1.0.0 + is-data-descriptor: registry.nlark.com/is-data-descriptor/1.0.0 + kind-of: registry.nlark.com/kind-of/6.0.3 + dev: true + + registry.nlark.com/is-directory/0.3.1: + resolution: {integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-directory/download/is-directory-0.3.1.tgz} + name: is-directory + version: 0.3.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-docker/2.2.1: + resolution: {integrity: sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-docker/download/is-docker-2.2.1.tgz} + name: is-docker + version: 2.2.1 + engines: {node: '>=8'} + hasBin: true + dev: true + + registry.nlark.com/is-dotfile/1.0.3: + resolution: {integrity: sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-dotfile/download/is-dotfile-1.0.3.tgz} + name: is-dotfile + version: 1.0.3 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-equal-shallow/0.1.3: + resolution: {integrity: sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz} + name: is-equal-shallow + version: 0.1.3 + engines: {node: '>=0.10.0'} + dependencies: + is-primitive: registry.nlark.com/is-primitive/2.0.0 + dev: true + + registry.nlark.com/is-extendable/0.1.1: + resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-extendable/download/is-extendable-0.1.1.tgz} + name: is-extendable + version: 0.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-extendable/1.0.1: + resolution: {integrity: sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-extendable/download/is-extendable-1.0.1.tgz} + name: is-extendable + version: 1.0.1 + engines: {node: '>=0.10.0'} + dependencies: + is-plain-object: registry.nlark.com/is-plain-object/2.0.4 + dev: true + + registry.nlark.com/is-extglob/1.0.0: + resolution: {integrity: sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-extglob/download/is-extglob-1.0.0.tgz} + name: is-extglob + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-extglob/2.1.1: + resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz} + name: is-extglob + version: 2.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-fullwidth-code-point/2.0.0: + resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz} + name: is-fullwidth-code-point + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz} + name: is-fullwidth-code-point + version: 3.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/is-generator-fn/2.1.0: + resolution: {integrity: sha1-fRQK3DiarzARqPKipM+m+q3/sRg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz} + name: is-generator-fn + version: 2.1.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/is-negative-zero/2.0.1: + resolution: {integrity: sha1-PedGwY3aIxkkGlNnWQjY92bxHCQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz} + name: is-negative-zero + version: 2.0.1 + engines: {node: '>= 0.4'} + dev: true + + registry.nlark.com/is-number/2.1.0: + resolution: {integrity: sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number/download/is-number-2.1.0.tgz} + name: is-number + version: 2.1.0 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/is-number/3.0.0: + resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number/download/is-number-3.0.0.tgz} + name: is-number + version: 3.0.0 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/is-number/4.0.0: + resolution: {integrity: sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number/download/is-number-4.0.0.tgz} + name: is-number + version: 4.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-number/7.0.0: + resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz} + name: is-number + version: 7.0.0 + engines: {node: '>=0.12.0'} + dev: true + + registry.nlark.com/is-obj/2.0.0: + resolution: {integrity: sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz} + name: is-obj + version: 2.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/is-path-cwd/2.2.0: + resolution: {integrity: sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-path-cwd/download/is-path-cwd-2.2.0.tgz} + name: is-path-cwd + version: 2.2.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/is-path-in-cwd/2.1.0: + resolution: {integrity: sha1-v+Lcomxp85cmWkAJljYCk1oFOss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-path-in-cwd/download/is-path-in-cwd-2.1.0.tgz} + name: is-path-in-cwd + version: 2.1.0 + engines: {node: '>=6'} + dependencies: + is-path-inside: registry.nlark.com/is-path-inside/2.1.0 + dev: true + + registry.nlark.com/is-path-inside/2.1.0: + resolution: {integrity: sha1-fJgQWH1lmkDSe8201WFuqwWUlLI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-path-inside/download/is-path-inside-2.1.0.tgz} + name: is-path-inside + version: 2.1.0 + engines: {node: '>=6'} + dependencies: + path-is-inside: registry.npmmirror.com/path-is-inside/1.0.2 + dev: true + + registry.nlark.com/is-plain-obj/1.1.0: + resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz} + name: is-plain-obj + version: 1.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-plain-object/2.0.4: + resolution: {integrity: sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-plain-object/download/is-plain-object-2.0.4.tgz} + name: is-plain-object + version: 2.0.4 + engines: {node: '>=0.10.0'} + dependencies: + isobject: registry.nlark.com/isobject/3.0.1 + dev: true + + registry.nlark.com/is-posix-bracket/0.1.1: + resolution: {integrity: sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz} + name: is-posix-bracket + version: 0.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-primitive/2.0.0: + resolution: {integrity: sha1-IHurkWOEmcB7Kt8kCkGochADRXU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-primitive/download/is-primitive-2.0.0.tgz} + name: is-primitive + version: 2.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-regex/1.1.4: + resolution: {integrity: sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz} + name: is-regex + version: 1.1.4 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 + dev: true + + registry.nlark.com/is-resolvable/1.1.0: + resolution: {integrity: sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-resolvable/download/is-resolvable-1.1.0.tgz} + name: is-resolvable + version: 1.1.0 + dev: true + + registry.nlark.com/is-stream/1.1.0: + resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-stream/download/is-stream-1.1.0.tgz} + name: is-stream + version: 1.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-stream/2.0.1: + resolution: {integrity: sha1-+sHj1TuXrVqdCunO8jifWBClwHc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-stream/download/is-stream-2.0.1.tgz} + name: is-stream + version: 2.0.1 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/is-string/1.0.7: + resolution: {integrity: sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-string/download/is-string-1.0.7.tgz} + name: is-string + version: 1.0.7 + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 + dev: true + + registry.nlark.com/is-symbol/1.0.4: + resolution: {integrity: sha1-ptrJO2NbBjymhyI23oiRClevE5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz} + name: is-symbol + version: 1.0.4 + engines: {node: '>= 0.4'} + dependencies: + has-symbols: registry.nlark.com/has-symbols/1.0.2 + dev: true + + registry.nlark.com/is-typedarray/1.0.0: + resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-typedarray/download/is-typedarray-1.0.0.tgz} + name: is-typedarray + version: 1.0.0 + dev: true + + registry.nlark.com/is-utf8/0.2.1: + resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz} + name: is-utf8 + version: 0.2.1 + dev: true + + registry.nlark.com/is-whitespace/0.3.0: + resolution: {integrity: sha1-Fjnssb4DauxppUy7QBz77XEUq38=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-whitespace/download/is-whitespace-0.3.0.tgz} + name: is-whitespace + version: 0.3.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-windows/1.0.2: + resolution: {integrity: sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz} + name: is-windows + version: 1.0.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/is-wsl/1.1.0: + resolution: {integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-wsl/download/is-wsl-1.1.0.tgz} + name: is-wsl + version: 1.1.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/is-wsl/2.2.0: + resolution: {integrity: sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-wsl/download/is-wsl-2.2.0.tgz} + name: is-wsl + version: 2.2.0 + engines: {node: '>=8'} + dependencies: + is-docker: registry.nlark.com/is-docker/2.2.1 + dev: true + + registry.nlark.com/isarray/1.0.0: + resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/isarray/download/isarray-1.0.0.tgz} + name: isarray + version: 1.0.0 + dev: true + + registry.nlark.com/isexe/2.0.0: + resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz} + name: isexe + version: 2.0.0 + dev: true + + registry.nlark.com/isobject/2.1.0: + resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/isobject/download/isobject-2.1.0.tgz} + name: isobject + version: 2.1.0 + engines: {node: '>=0.10.0'} + dependencies: + isarray: registry.nlark.com/isarray/1.0.0 + dev: true + + registry.nlark.com/isobject/3.0.1: + resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/isobject/download/isobject-3.0.1.tgz} + name: isobject + version: 3.0.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/isstream/0.1.2: + resolution: {integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/isstream/download/isstream-0.1.2.tgz} + name: isstream + version: 0.1.2 + dev: true + + registry.nlark.com/istanbul-lib-report/2.0.8: + resolution: {integrity: sha1-WoETzXRtQ8SInro2qxDn1QybTzM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz} + name: istanbul-lib-report + version: 2.0.8 + engines: {node: '>=6'} + dependencies: + istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage/2.0.5 + make-dir: registry.nlark.com/make-dir/2.1.0 + supports-color: registry.nlark.com/supports-color/6.1.0 + dev: true + + registry.nlark.com/javascript-stringify/2.1.0: + resolution: {integrity: sha1-J8dlOb4U2L0Sghmi1zGwkzeQTnk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/javascript-stringify/download/javascript-stringify-2.1.0.tgz} + name: javascript-stringify + version: 2.1.0 + dev: true + + registry.nlark.com/jest-docblock/24.9.0: + resolution: {integrity: sha1-eXAgGAK6Vg4cQJLMJcvt9a9ajOI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jest-docblock/download/jest-docblock-24.9.0.tgz} + name: jest-docblock + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + detect-newline: registry.npmmirror.com/detect-newline/2.1.0 + dev: true + + registry.nlark.com/jest-regex-util/24.9.0: + resolution: {integrity: sha1-wT+zOAveIr9ldUMsST6o/jeWVjY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jest-regex-util/download/jest-regex-util-24.9.0.tgz} + name: jest-regex-util + version: 24.9.0 + engines: {node: '>= 6'} + dev: true + + registry.nlark.com/jest-serializer/24.9.0: + resolution: {integrity: sha1-5tfX75bTHouQeacUdUxdXFgojnM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jest-serializer/download/jest-serializer-24.9.0.tgz} + name: jest-serializer + version: 24.9.0 + engines: {node: '>= 6'} + dev: true + + registry.nlark.com/js-cookie/2.2.0: + resolution: {integrity: sha1-Gywnmm7s44ChIWi5JIUmWzWx7/s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-cookie/download/js-cookie-2.2.0.tgz} + name: js-cookie + version: 2.2.0 + dev: false + + registry.nlark.com/js-message/1.0.7: + resolution: {integrity: sha1-+93QU8ekcCGHG7iyyVOXzBfCDkc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-message/download/js-message-1.0.7.tgz} + name: js-message + version: 1.0.7 + engines: {node: '>=0.6.0'} + dev: true + + registry.nlark.com/js-tokens/3.0.2: + resolution: {integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-tokens/download/js-tokens-3.0.2.tgz} + name: js-tokens + version: 3.0.2 + dev: true + + registry.nlark.com/js-tokens/4.0.0: + resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz} + name: js-tokens + version: 4.0.0 + dev: true + + registry.nlark.com/js-yaml/3.14.1: + resolution: {integrity: sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz?cache=0&sync_timestamp=1631603539565&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-yaml%2Fdownload%2Fjs-yaml-3.14.1.tgz} + name: js-yaml + version: 3.14.1 + hasBin: true + dependencies: + argparse: registry.nlark.com/argparse/1.0.10 + esprima: registry.nlark.com/esprima/4.0.1 + dev: true + + registry.nlark.com/jsbn/0.1.1: + resolution: {integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsbn/download/jsbn-0.1.1.tgz} + name: jsbn + version: 0.1.1 + dev: true + + registry.nlark.com/jsesc/0.5.0: + resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsesc/download/jsesc-0.5.0.tgz} + name: jsesc + version: 0.5.0 + hasBin: true + dev: true + + registry.nlark.com/jsesc/1.3.0: + resolution: {integrity: sha1-RsP+yMGJKxKwgz25vHYiF226s0s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsesc/download/jsesc-1.3.0.tgz} + name: jsesc + version: 1.3.0 + hasBin: true + dev: true + + registry.nlark.com/jsesc/2.5.2: + resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz} + name: jsesc + version: 2.5.2 + engines: {node: '>=4'} + hasBin: true + dev: true + + registry.nlark.com/json-parse-better-errors/1.0.2: + resolution: {integrity: sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz} + name: json-parse-better-errors + version: 1.0.2 + dev: true + + registry.nlark.com/json-parse-even-better-errors/2.3.1: + resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz} + name: json-parse-even-better-errors + version: 2.3.1 + dev: true + + registry.nlark.com/json-schema-traverse/0.4.1: + resolution: {integrity: sha1-afaofZUTq4u4/mO9sJecRI5oRmA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz} + name: json-schema-traverse + version: 0.4.1 + dev: true + + registry.nlark.com/json-stable-stringify-without-jsonify/1.0.1: + resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz} + name: json-stable-stringify-without-jsonify + version: 1.0.1 + dev: true + + registry.nlark.com/json-stringify-safe/5.0.1: + resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz} + name: json-stringify-safe + version: 5.0.1 + dev: true + + registry.nlark.com/json5/0.5.1: + resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json5/download/json5-0.5.1.tgz} + name: json5 + version: 0.5.1 + hasBin: true + dev: true + + registry.nlark.com/json5/1.0.1: + resolution: {integrity: sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json5/download/json5-1.0.1.tgz} + name: json5 + version: 1.0.1 + hasBin: true + dependencies: + minimist: registry.nlark.com/minimist/1.2.5 + dev: true + + registry.nlark.com/json5/2.2.0: + resolution: {integrity: sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json5/download/json5-2.2.0.tgz} + name: json5 + version: 2.2.0 + engines: {node: '>=6'} + hasBin: true + dependencies: + minimist: registry.nlark.com/minimist/1.2.5 + + registry.nlark.com/jsonfile/4.0.0: + resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz} + name: jsonfile + version: 4.0.0 + optionalDependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + dev: true + + registry.nlark.com/killable/1.0.1: + resolution: {integrity: sha1-TIzkQRh6Bhx0dPuHygjipjgZSJI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/killable/download/killable-1.0.1.tgz} + name: killable + version: 1.0.1 + dev: true + + registry.nlark.com/kind-of/3.2.2: + resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kind-of/download/kind-of-3.2.2.tgz} + name: kind-of + version: 3.2.2 + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: registry.nlark.com/is-buffer/1.1.6 + dev: true + + registry.nlark.com/kind-of/4.0.0: + resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kind-of/download/kind-of-4.0.0.tgz} + name: kind-of + version: 4.0.0 + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: registry.nlark.com/is-buffer/1.1.6 + dev: true + + registry.nlark.com/kind-of/5.1.0: + resolution: {integrity: sha1-cpyR4thXt6QZofmqZWhcTDP1hF0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kind-of/download/kind-of-5.1.0.tgz} + name: kind-of + version: 5.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/kind-of/6.0.3: + resolution: {integrity: sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz} + name: kind-of + version: 6.0.3 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/kleur/3.0.3: + resolution: {integrity: sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz} + name: kleur + version: 3.0.3 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/launch-editor-middleware/2.2.1: + resolution: {integrity: sha1-4UsH5scVSwpLhqD9NFeE5FgEwVc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/launch-editor-middleware/download/launch-editor-middleware-2.2.1.tgz} + name: launch-editor-middleware + version: 2.2.1 + dependencies: + launch-editor: registry.nlark.com/launch-editor/2.2.1 + dev: true + + registry.nlark.com/launch-editor/2.2.1: + resolution: {integrity: sha1-hxtaPuOdZoD8wm03kwtu7aidsMo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/launch-editor/download/launch-editor-2.2.1.tgz} + name: launch-editor + version: 2.2.1 + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + shell-quote: registry.npmmirror.com/shell-quote/1.7.3 + dev: true + + registry.nlark.com/leven/3.1.0: + resolution: {integrity: sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/leven/download/leven-3.1.0.tgz} + name: leven + version: 3.1.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/levn/0.3.0: + resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/levn/download/levn-0.3.0.tgz} + name: levn + version: 0.3.0 + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: registry.nlark.com/prelude-ls/1.1.2 + type-check: registry.nlark.com/type-check/0.3.2 + dev: true + + registry.nlark.com/lines-and-columns/1.1.6: + resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz} + name: lines-and-columns + version: 1.1.6 + dev: true + + registry.nlark.com/load-json-file/1.1.0: + resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/load-json-file/download/load-json-file-1.1.0.tgz} + name: load-json-file + version: 1.1.0 + engines: {node: '>=0.10.0'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + parse-json: registry.npmmirror.com/parse-json/2.2.0 + pify: registry.nlark.com/pify/2.3.0 + pinkie-promise: registry.nlark.com/pinkie-promise/2.0.1 + strip-bom: registry.nlark.com/strip-bom/2.0.0 + dev: true + + registry.nlark.com/load-json-file/4.0.0: + resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/load-json-file/download/load-json-file-4.0.0.tgz} + name: load-json-file + version: 4.0.0 + engines: {node: '>=4'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + parse-json: registry.npmmirror.com/parse-json/4.0.0 + pify: registry.nlark.com/pify/3.0.0 + strip-bom: registry.nlark.com/strip-bom/3.0.0 + dev: true + + registry.nlark.com/loader-fs-cache/1.0.3: + resolution: {integrity: sha1-8IZXZG1gcHi+LwoDL4vWndbyd9k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/loader-fs-cache/download/loader-fs-cache-1.0.3.tgz} + name: loader-fs-cache + version: 1.0.3 + dependencies: + find-cache-dir: registry.nlark.com/find-cache-dir/0.1.1 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + dev: true + + registry.nlark.com/loader-runner/2.4.0: + resolution: {integrity: sha1-7UcGa/5TTX6ExMe5mYwqdWB9k1c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/loader-runner/download/loader-runner-2.4.0.tgz} + name: loader-runner + version: 2.4.0 + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + dev: true + + registry.nlark.com/lodash.debounce/4.0.8: + resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz} + name: lodash.debounce + version: 4.0.8 + dev: true + + registry.nlark.com/lodash.defaultsdeep/4.6.1: + resolution: {integrity: sha1-US6b1yHSctlOPTpjZT+hdRZ0HKY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.defaultsdeep/download/lodash.defaultsdeep-4.6.1.tgz} + name: lodash.defaultsdeep + version: 4.6.1 + dev: true + + registry.nlark.com/lodash.mapvalues/4.6.0: + resolution: {integrity: sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.mapvalues/download/lodash.mapvalues-4.6.0.tgz} + name: lodash.mapvalues + version: 4.6.0 + dev: true + + registry.nlark.com/lodash.memoize/4.1.2: + resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.memoize/download/lodash.memoize-4.1.2.tgz} + name: lodash.memoize + version: 4.1.2 + dev: true + + registry.nlark.com/lodash.sortby/4.7.0: + resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.sortby/download/lodash.sortby-4.7.0.tgz} + name: lodash.sortby + version: 4.7.0 + dev: true + + registry.nlark.com/lodash.transform/4.6.0: + resolution: {integrity: sha1-EjBkIvYzJK7YSD0/ODMrX2cFR6A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.transform/download/lodash.transform-4.6.0.tgz} + name: lodash.transform + version: 4.6.0 + dev: true + + registry.nlark.com/lodash.uniq/4.5.0: + resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz} + name: lodash.uniq + version: 4.5.0 + dev: true + + registry.nlark.com/lodash/4.17.21: + resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz} + name: lodash + version: 4.17.21 + + registry.nlark.com/lodash/4.17.4: + resolution: {integrity: sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash/download/lodash-4.17.4.tgz} + name: lodash + version: 4.17.4 + dev: true + + registry.nlark.com/log-symbols/2.2.0: + resolution: {integrity: sha1-V0Dhxdbw39pK2TI7UzIQfva0xAo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/log-symbols/download/log-symbols-2.2.0.tgz} + name: log-symbols + version: 2.2.0 + engines: {node: '>=4'} + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + dev: true + + registry.nlark.com/loglevel/1.7.1: + resolution: {integrity: sha1-AF/eL15uRwaPk1/yhXPhJe9y8Zc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/loglevel/download/loglevel-1.7.1.tgz} + name: loglevel + version: 1.7.1 + engines: {node: '>= 0.6.0'} + dev: true + + registry.nlark.com/loose-envify/1.4.0: + resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz?cache=0&sync_timestamp=1631603579780&other_urls=https%3A%2F%2Fregistry.nlark.com%2Floose-envify%2Fdownload%2Floose-envify-1.4.0.tgz} + name: loose-envify + version: 1.4.0 + hasBin: true + dependencies: + js-tokens: registry.nlark.com/js-tokens/4.0.0 + dev: true + + registry.nlark.com/lower-case/1.1.4: + resolution: {integrity: sha1-miyr0bno4K6ZOkv31YdcOcQujqw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lower-case/download/lower-case-1.1.4.tgz} + name: lower-case + version: 1.1.4 + dev: true + + registry.nlark.com/lru-cache/4.1.5: + resolution: {integrity: sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lru-cache/download/lru-cache-4.1.5.tgz} + name: lru-cache + version: 4.1.5 + dependencies: + pseudomap: registry.nlark.com/pseudomap/1.0.2 + yallist: registry.nlark.com/yallist/2.1.2 + dev: true + + registry.nlark.com/lru-cache/5.1.1: + resolution: {integrity: sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lru-cache/download/lru-cache-5.1.1.tgz} + name: lru-cache + version: 5.1.1 + dependencies: + yallist: registry.nlark.com/yallist/3.1.1 + dev: true + + registry.nlark.com/make-dir/2.1.0: + resolution: {integrity: sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz} + name: make-dir + version: 2.1.0 + engines: {node: '>=6'} + dependencies: + pify: registry.nlark.com/pify/4.0.1 + semver: registry.nlark.com/semver/5.7.1 + dev: true + + registry.nlark.com/make-dir/3.1.0: + resolution: {integrity: sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz} + name: make-dir + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + semver: registry.nlark.com/semver/6.3.0 + dev: true + + registry.nlark.com/map-cache/0.2.2: + resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/map-cache/download/map-cache-0.2.2.tgz} + name: map-cache + version: 0.2.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/map-visit/1.0.0: + resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/map-visit/download/map-visit-1.0.0.tgz} + name: map-visit + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + object-visit: registry.nlark.com/object-visit/1.0.1 + dev: true + + registry.nlark.com/math-random/1.0.4: + resolution: {integrity: sha1-XdaUPJOFSCZwFtTjTwV1gwgMUUw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/math-random/download/math-random-1.0.4.tgz} + name: math-random + version: 1.0.4 + dev: true + + registry.nlark.com/md5.js/1.3.5: + resolution: {integrity: sha1-tdB7jjIW4+J81yjXL3DR5qNCAF8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/md5.js/download/md5.js-1.3.5.tgz} + name: md5.js + version: 1.3.5 + dependencies: + hash-base: registry.nlark.com/hash-base/3.1.0 + inherits: registry.nlark.com/inherits/2.0.4 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/mdn-data/1.1.4: + resolution: {integrity: sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mdn-data/download/mdn-data-1.1.4.tgz} + name: mdn-data + version: 1.1.4 + dev: true + + registry.nlark.com/memory-fs/0.4.1: + resolution: {integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/memory-fs/download/memory-fs-0.4.1.tgz} + name: memory-fs + version: 0.4.1 + dependencies: + errno: registry.nlark.com/errno/0.1.8 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/memory-fs/0.5.0: + resolution: {integrity: sha1-MkwBKIuIZSlm0WHbd4OHIIRajjw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/memory-fs/download/memory-fs-0.5.0.tgz} + name: memory-fs + version: 0.5.0 + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + dependencies: + errno: registry.nlark.com/errno/0.1.8 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/merge-options/1.0.1: + resolution: {integrity: sha1-KmSyRFe+zU5NxggoMkfpTOWJqjI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge-options/download/merge-options-1.0.1.tgz} + name: merge-options + version: 1.0.1 + engines: {node: '>=4'} + dependencies: + is-plain-obj: registry.nlark.com/is-plain-obj/1.1.0 + dev: true + + registry.nlark.com/merge-source-map/1.1.0: + resolution: {integrity: sha1-L93n5gIJOfcJBqaPLXrmheTIxkY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz} + name: merge-source-map + version: 1.1.0 + dependencies: + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.nlark.com/merge-stream/2.0.0: + resolution: {integrity: sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz} + name: merge-stream + version: 2.0.0 + dev: true + + registry.nlark.com/merge2/1.4.1: + resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz} + name: merge2 + version: 1.4.1 + engines: {node: '>= 8'} + dev: true + + registry.nlark.com/methods/1.1.2: + resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/methods/download/methods-1.1.2.tgz} + name: methods + version: 1.1.2 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/micromatch/2.3.11: + resolution: {integrity: sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/micromatch/download/micromatch-2.3.11.tgz} + name: micromatch + version: 2.3.11 + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: registry.nlark.com/arr-diff/2.0.0 + array-unique: registry.nlark.com/array-unique/0.2.1 + braces: registry.nlark.com/braces/1.8.5 + expand-brackets: registry.nlark.com/expand-brackets/0.1.5 + extglob: registry.nlark.com/extglob/0.3.2 + filename-regex: registry.nlark.com/filename-regex/2.0.1 + is-extglob: registry.nlark.com/is-extglob/1.0.0 + is-glob: registry.npmmirror.com/is-glob/2.0.1 + kind-of: registry.nlark.com/kind-of/3.2.2 + normalize-path: registry.nlark.com/normalize-path/2.1.1 + object.omit: registry.nlark.com/object.omit/2.0.1 + parse-glob: registry.nlark.com/parse-glob/3.0.4 + regex-cache: registry.nlark.com/regex-cache/0.4.4 + dev: true + + registry.nlark.com/micromatch/3.1.0: + resolution: {integrity: sha1-UQLU6vILaZfWAI46z+HESj+oFeI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/micromatch/download/micromatch-3.1.0.tgz} + name: micromatch + version: 3.1.0 + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: registry.nlark.com/arr-diff/4.0.0 + array-unique: registry.nlark.com/array-unique/0.3.2 + braces: registry.nlark.com/braces/2.3.2 + define-property: registry.nlark.com/define-property/1.0.0 + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + extglob: registry.nlark.com/extglob/2.0.4 + fragment-cache: registry.nlark.com/fragment-cache/0.2.1 + kind-of: registry.nlark.com/kind-of/5.1.0 + nanomatch: registry.nlark.com/nanomatch/1.2.13 + object.pick: registry.nlark.com/object.pick/1.3.0 + regex-not: registry.nlark.com/regex-not/1.0.2 + snapdragon: registry.nlark.com/snapdragon/0.8.2 + to-regex: registry.nlark.com/to-regex/3.0.2 + dev: true + + registry.nlark.com/micromatch/3.1.10: + resolution: {integrity: sha1-cIWbyVyYQJUvNZoGij/En57PrCM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/micromatch/download/micromatch-3.1.10.tgz} + name: micromatch + version: 3.1.10 + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: registry.nlark.com/arr-diff/4.0.0 + array-unique: registry.nlark.com/array-unique/0.3.2 + braces: registry.nlark.com/braces/2.3.2 + define-property: registry.nlark.com/define-property/2.0.2 + extend-shallow: registry.nlark.com/extend-shallow/3.0.2 + extglob: registry.nlark.com/extglob/2.0.4 + fragment-cache: registry.nlark.com/fragment-cache/0.2.1 + kind-of: registry.nlark.com/kind-of/6.0.3 + nanomatch: registry.nlark.com/nanomatch/1.2.13 + object.pick: registry.nlark.com/object.pick/1.3.0 + regex-not: registry.nlark.com/regex-not/1.0.2 + snapdragon: registry.nlark.com/snapdragon/0.8.2 + to-regex: registry.nlark.com/to-regex/3.0.2 + dev: true + + registry.nlark.com/miller-rabin/4.0.1: + resolution: {integrity: sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/miller-rabin/download/miller-rabin-4.0.1.tgz} + name: miller-rabin + version: 4.0.1 + hasBin: true + dependencies: + bn.js: registry.nlark.com/bn.js/4.12.0 + brorand: registry.nlark.com/brorand/1.1.0 + dev: true + + registry.nlark.com/mimic-fn/1.2.0: + resolution: {integrity: sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mimic-fn/download/mimic-fn-1.2.0.tgz} + name: mimic-fn + version: 1.2.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/mimic-fn/2.1.0: + resolution: {integrity: sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz} + name: mimic-fn + version: 2.1.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/minimalistic-assert/1.0.1: + resolution: {integrity: sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz} + name: minimalistic-assert + version: 1.0.1 + dev: true + + registry.nlark.com/minimalistic-crypto-utils/1.0.1: + resolution: {integrity: sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz} + name: minimalistic-crypto-utils + version: 1.0.1 + dev: true + + registry.nlark.com/minimatch/3.0.4: + resolution: {integrity: sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimatch/download/minimatch-3.0.4.tgz} + name: minimatch + version: 3.0.4 + dependencies: + brace-expansion: registry.nlark.com/brace-expansion/1.1.11 + + registry.nlark.com/minimist/1.2.5: + resolution: {integrity: sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz} + name: minimist + version: 1.2.5 + + registry.nlark.com/minipass/3.1.5: + resolution: {integrity: sha1-cfYlGwozpJwBs8+X/3ftoDDf9zI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minipass/download/minipass-3.1.5.tgz} + name: minipass + version: 3.1.5 + engines: {node: '>=8'} + dependencies: + yallist: registry.nlark.com/yallist/4.0.0 + dev: true + + registry.nlark.com/mississippi/3.0.0: + resolution: {integrity: sha1-6goykfl+C16HdrNj1fChLZTGcCI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mississippi/download/mississippi-3.0.0.tgz} + name: mississippi + version: 3.0.0 + engines: {node: '>=4.0.0'} + dependencies: + concat-stream: registry.nlark.com/concat-stream/1.6.2 + duplexify: registry.nlark.com/duplexify/3.7.1 + end-of-stream: registry.nlark.com/end-of-stream/1.4.4 + flush-write-stream: registry.nlark.com/flush-write-stream/1.1.1 + from2: registry.nlark.com/from2/2.3.0 + parallel-transform: registry.nlark.com/parallel-transform/1.2.0 + pump: registry.nlark.com/pump/3.0.0 + pumpify: registry.nlark.com/pumpify/1.5.1 + stream-each: registry.nlark.com/stream-each/1.2.3 + through2: registry.nlark.com/through2/2.0.5 + dev: true + + registry.nlark.com/mixin-deep/1.3.2: + resolution: {integrity: sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mixin-deep/download/mixin-deep-1.3.2.tgz} + name: mixin-deep + version: 1.3.2 + engines: {node: '>=0.10.0'} + dependencies: + for-in: registry.nlark.com/for-in/1.0.2 + is-extendable: registry.nlark.com/is-extendable/1.0.1 + dev: true + + registry.nlark.com/mockjs/1.0.1-beta3: + resolution: {integrity: sha1-0jTzwnJWOXVk8slVFC6JGQlTcgk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mockjs/download/mockjs-1.0.1-beta3.tgz} + name: mockjs + version: 1.0.1-beta3 + hasBin: true + dependencies: + commander: registry.npmmirror.com/commander/8.3.0 + dev: true + + registry.nlark.com/move-concurrently/1.0.1: + resolution: {integrity: sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/move-concurrently/download/move-concurrently-1.0.1.tgz} + name: move-concurrently + version: 1.0.1 + dependencies: + aproba: registry.nlark.com/aproba/1.2.0 + copy-concurrently: registry.nlark.com/copy-concurrently/1.0.5 + fs-write-stream-atomic: registry.npmmirror.com/fs-write-stream-atomic/1.0.10 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + run-queue: registry.nlark.com/run-queue/1.0.3 + dev: true + + registry.nlark.com/multicast-dns-service-types/1.1.0: + resolution: {integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz} + name: multicast-dns-service-types + version: 1.1.0 + dev: true + + registry.nlark.com/mute-stream/0.0.8: + resolution: {integrity: sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mute-stream/download/mute-stream-0.0.8.tgz} + name: mute-stream + version: 0.0.8 + dev: true + + registry.nlark.com/nan/2.15.0: + resolution: {integrity: sha1-PzSkc/8Y4VwbVia2KQO1rW5mX+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nan/download/nan-2.15.0.tgz} + name: nan + version: 2.15.0 + requiresBuild: true + dev: true + optional: true + + registry.nlark.com/nanomatch/1.2.13: + resolution: {integrity: sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nanomatch/download/nanomatch-1.2.13.tgz} + name: nanomatch + version: 1.2.13 + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: registry.nlark.com/arr-diff/4.0.0 + array-unique: registry.nlark.com/array-unique/0.3.2 + define-property: registry.nlark.com/define-property/2.0.2 + extend-shallow: registry.nlark.com/extend-shallow/3.0.2 + fragment-cache: registry.nlark.com/fragment-cache/0.2.1 + is-windows: registry.nlark.com/is-windows/1.0.2 + kind-of: registry.nlark.com/kind-of/6.0.3 + object.pick: registry.nlark.com/object.pick/1.3.0 + regex-not: registry.nlark.com/regex-not/1.0.2 + snapdragon: registry.nlark.com/snapdragon/0.8.2 + to-regex: registry.nlark.com/to-regex/3.0.2 + dev: true + + registry.nlark.com/natural-compare/1.4.0: + resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz} + name: natural-compare + version: 1.4.0 + dev: true + + registry.nlark.com/neo-async/2.6.2: + resolution: {integrity: sha1-tKr7k+OustgXTKU88WOrfXMIMF8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/neo-async/download/neo-async-2.6.2.tgz} + name: neo-async + version: 2.6.2 + dev: true + + registry.nlark.com/nice-try/1.0.5: + resolution: {integrity: sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nice-try/download/nice-try-1.0.5.tgz} + name: nice-try + version: 1.0.5 + dev: true + + registry.nlark.com/no-case/2.3.2: + resolution: {integrity: sha1-YLgTOWvjmz8SiKTB7V0efSi0ZKw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/no-case/download/no-case-2.3.2.tgz} + name: no-case + version: 2.3.2 + dependencies: + lower-case: registry.nlark.com/lower-case/1.1.4 + dev: true + + registry.nlark.com/node-forge/0.10.0: + resolution: {integrity: sha1-Mt6ir7Ppkm8C7lzoeUkCaRpna/M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/node-forge/download/node-forge-0.10.0.tgz} + name: node-forge + version: 0.10.0 + engines: {node: '>= 6.0.0'} + dev: true + + registry.nlark.com/node-int64/0.4.0: + resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/node-int64/download/node-int64-0.4.0.tgz} + name: node-int64 + version: 0.4.0 + dev: true + + registry.nlark.com/node-ipc/9.2.1: + resolution: {integrity: sha1-sy9mEV+dbOhB3E7CAJ1qcz+Yu2s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/node-ipc/download/node-ipc-9.2.1.tgz} + name: node-ipc + version: 9.2.1 + engines: {node: '>=8.0.0'} + dependencies: + event-pubsub: registry.npmmirror.com/event-pubsub/4.3.0 + js-message: registry.nlark.com/js-message/1.0.7 + js-queue: registry.npmmirror.com/js-queue/2.0.2 + dev: true + + registry.nlark.com/node-libs-browser/2.2.1: + resolution: {integrity: sha1-tk9RPRgzhiX5A0bSew0jXmMfZCU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/node-libs-browser/download/node-libs-browser-2.2.1.tgz} + name: node-libs-browser + version: 2.2.1 + dependencies: + assert: registry.nlark.com/assert/1.5.0 + browserify-zlib: registry.nlark.com/browserify-zlib/0.2.0 + buffer: registry.nlark.com/buffer/4.9.2 + console-browserify: registry.nlark.com/console-browserify/1.2.0 + constants-browserify: registry.nlark.com/constants-browserify/1.0.0 + crypto-browserify: registry.nlark.com/crypto-browserify/3.12.0 + domain-browser: registry.nlark.com/domain-browser/1.2.0 + events: registry.npmmirror.com/events/3.3.0 + https-browserify: registry.nlark.com/https-browserify/1.0.0 + os-browserify: registry.nlark.com/os-browserify/0.3.0 + path-browserify: registry.nlark.com/path-browserify/0.0.1 + process: registry.nlark.com/process/0.11.10 + punycode: registry.nlark.com/punycode/1.4.1 + querystring-es3: registry.nlark.com/querystring-es3/0.2.1 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + stream-browserify: registry.nlark.com/stream-browserify/2.0.2 + stream-http: registry.nlark.com/stream-http/2.8.3 + string_decoder: registry.nlark.com/string_decoder/1.3.0 + timers-browserify: registry.nlark.com/timers-browserify/2.0.12 + tty-browserify: registry.npmmirror.com/tty-browserify/0.0.0 + url: registry.nlark.com/url/0.11.0 + util: registry.nlark.com/util/0.11.1 + vm-browserify: registry.nlark.com/vm-browserify/1.1.2 + dev: true + + registry.nlark.com/node-modules-regexp/1.0.0: + resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz} + name: node-modules-regexp + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/node-notifier/5.4.5: + resolution: {integrity: sha1-DLwaKw9lhJO0Ald1oTrZOOlgke8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/node-notifier/download/node-notifier-5.4.5.tgz} + name: node-notifier + version: 5.4.5 + dependencies: + growly: registry.nlark.com/growly/1.3.0 + is-wsl: registry.nlark.com/is-wsl/1.1.0 + semver: registry.nlark.com/semver/5.7.1 + shellwords: registry.nlark.com/shellwords/0.1.1 + which: registry.nlark.com/which/1.3.1 + dev: true + + registry.nlark.com/nopt/5.0.0: + resolution: {integrity: sha1-UwlCu1ilEvzK/lP+IQ8TolNV3Ig=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nopt/download/nopt-5.0.0.tgz} + name: nopt + version: 5.0.0 + engines: {node: '>=6'} + hasBin: true + dependencies: + abbrev: registry.nlark.com/abbrev/1.1.1 + dev: true + + registry.nlark.com/normalize-package-data/2.5.0: + resolution: {integrity: sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz} + name: normalize-package-data + version: 2.5.0 + dependencies: + hosted-git-info: registry.nlark.com/hosted-git-info/2.8.9 + resolve: registry.nlark.com/resolve/1.20.0 + semver: registry.nlark.com/semver/5.7.1 + validate-npm-package-license: registry.nlark.com/validate-npm-package-license/3.0.4 + dev: true + + registry.nlark.com/normalize-path/1.0.0: + resolution: {integrity: sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-path/download/normalize-path-1.0.0.tgz?cache=0&sync_timestamp=1631603496389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-path%2Fdownload%2Fnormalize-path-1.0.0.tgz} + name: normalize-path + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/normalize-path/2.1.1: + resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz?cache=0&sync_timestamp=1631603496389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-path%2Fdownload%2Fnormalize-path-2.1.1.tgz} + name: normalize-path + version: 2.1.1 + engines: {node: '>=0.10.0'} + dependencies: + remove-trailing-separator: registry.nlark.com/remove-trailing-separator/1.1.0 + dev: true + + registry.nlark.com/normalize-path/3.0.0: + resolution: {integrity: sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz?cache=0&sync_timestamp=1631603496389&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnormalize-path%2Fdownload%2Fnormalize-path-3.0.0.tgz} + name: normalize-path + version: 3.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/normalize-range/0.1.2: + resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz} + name: normalize-range + version: 0.1.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/normalize-url/1.9.1: + resolution: {integrity: sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-url/download/normalize-url-1.9.1.tgz} + name: normalize-url + version: 1.9.1 + engines: {node: '>=4'} + dependencies: + object-assign: registry.nlark.com/object-assign/4.1.1 + prepend-http: registry.nlark.com/prepend-http/1.0.4 + query-string: registry.nlark.com/query-string/4.3.4 + sort-keys: registry.nlark.com/sort-keys/1.1.2 + dev: true + + registry.nlark.com/normalize-url/3.3.0: + resolution: {integrity: sha1-suHE3E98bVd0PfczpPWXjRhlBVk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-url/download/normalize-url-3.3.0.tgz} + name: normalize-url + version: 3.3.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/normalize-wheel/1.0.1: + resolution: {integrity: sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-wheel/download/normalize-wheel-1.0.1.tgz} + name: normalize-wheel + version: 1.0.1 + dev: false + + registry.nlark.com/normalize.css/7.0.0: + resolution: {integrity: sha1-q/sd2CRwZ04DIrU86xqvQSk45L8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize.css/download/normalize.css-7.0.0.tgz} + name: normalize.css + version: 7.0.0 + dev: false + + registry.nlark.com/nth-check/1.0.2: + resolution: {integrity: sha1-sr0pXDfj3VijvwcAN2Zjuk2c8Fw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nth-check/download/nth-check-1.0.2.tgz} + name: nth-check + version: 1.0.2 + dependencies: + boolbase: registry.nlark.com/boolbase/1.0.0 + dev: true + + registry.nlark.com/nth-check/2.0.1: + resolution: {integrity: sha1-Lv4WL1w9oGoolZ+9PbddvuqfD8I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nth-check/download/nth-check-2.0.1.tgz} + name: nth-check + version: 2.0.1 + dependencies: + boolbase: registry.nlark.com/boolbase/1.0.0 + dev: true + + registry.nlark.com/num2fraction/1.2.2: + resolution: {integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/num2fraction/download/num2fraction-1.2.2.tgz} + name: num2fraction + version: 1.2.2 + dev: true + + registry.nlark.com/nwsapi/2.2.0: + resolution: {integrity: sha1-IEh5qePQaP8qVROcLHcngGgaOLc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz} + name: nwsapi + version: 2.2.0 + dev: true + + registry.nlark.com/oauth-sign/0.9.0: + resolution: {integrity: sha1-R6ewFrqmi1+g7PPe4IqFxnmsZFU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/oauth-sign/download/oauth-sign-0.9.0.tgz} + name: oauth-sign + version: 0.9.0 + dev: true + + registry.nlark.com/object-assign/4.1.1: + resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz?cache=0&sync_timestamp=1631603545414&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-assign%2Fdownload%2Fobject-assign-4.1.1.tgz} + name: object-assign + version: 4.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/object-copy/0.1.0: + resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-copy/download/object-copy-0.1.0.tgz} + name: object-copy + version: 0.1.0 + engines: {node: '>=0.10.0'} + dependencies: + copy-descriptor: registry.nlark.com/copy-descriptor/0.1.1 + define-property: registry.nlark.com/define-property/0.2.5 + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/object-hash/1.3.1: + resolution: {integrity: sha1-/eRSCYqVHLFF8Dm7fUVUSd3BJt8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-hash/download/object-hash-1.3.1.tgz} + name: object-hash + version: 1.3.1 + engines: {node: '>= 0.10.0'} + dev: true + + registry.nlark.com/object-inspect/1.11.0: + resolution: {integrity: sha1-nc6xRs7dQUig2eUauI00z1CZIrE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-inspect/download/object-inspect-1.11.0.tgz} + name: object-inspect + version: 1.11.0 + + registry.nlark.com/object-is/1.1.5: + resolution: {integrity: sha1-ud7qpfx/GEag+uzc7sE45XePU6w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz} + name: object-is + version: 1.1.5 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + dev: true + + registry.nlark.com/object-keys/1.1.1: + resolution: {integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz} + name: object-keys + version: 1.1.1 + engines: {node: '>= 0.4'} + dev: true + + registry.nlark.com/object-visit/1.0.1: + resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-visit/download/object-visit-1.0.1.tgz} + name: object-visit + version: 1.0.1 + engines: {node: '>=0.10.0'} + dependencies: + isobject: registry.nlark.com/isobject/3.0.1 + dev: true + + registry.nlark.com/object.assign/4.1.2: + resolution: {integrity: sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz} + name: object.assign + version: 4.1.2 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + has-symbols: registry.nlark.com/has-symbols/1.0.2 + object-keys: registry.nlark.com/object-keys/1.1.1 + dev: true + + registry.nlark.com/object.omit/2.0.1: + resolution: {integrity: sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object.omit/download/object.omit-2.0.1.tgz} + name: object.omit + version: 2.0.1 + engines: {node: '>=0.10.0'} + dependencies: + for-own: registry.nlark.com/for-own/0.1.5 + is-extendable: registry.nlark.com/is-extendable/0.1.1 + dev: true + + registry.nlark.com/object.pick/1.3.0: + resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object.pick/download/object.pick-1.3.0.tgz} + name: object.pick + version: 1.3.0 + engines: {node: '>=0.10.0'} + dependencies: + isobject: registry.nlark.com/isobject/3.0.1 + dev: true + + registry.nlark.com/obuf/1.1.2: + resolution: {integrity: sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/obuf/download/obuf-1.1.2.tgz} + name: obuf + version: 1.1.2 + dev: true + + registry.nlark.com/on-finished/2.3.0: + resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/on-finished/download/on-finished-2.3.0.tgz} + name: on-finished + version: 2.3.0 + engines: {node: '>= 0.8'} + dependencies: + ee-first: registry.nlark.com/ee-first/1.1.1 + dev: true + + registry.nlark.com/on-headers/1.0.2: + resolution: {integrity: sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/on-headers/download/on-headers-1.0.2.tgz} + name: on-headers + version: 1.0.2 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/once/1.4.0: + resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/once/download/once-1.4.0.tgz} + name: once + version: 1.4.0 + dependencies: + wrappy: registry.nlark.com/wrappy/1.0.2 + + registry.nlark.com/onetime/2.0.1: + resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/onetime/download/onetime-2.0.1.tgz} + name: onetime + version: 2.0.1 + engines: {node: '>=4'} + dependencies: + mimic-fn: registry.nlark.com/mimic-fn/1.2.0 + dev: true + + registry.nlark.com/onetime/5.1.2: + resolution: {integrity: sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz} + name: onetime + version: 5.1.2 + engines: {node: '>=6'} + dependencies: + mimic-fn: registry.nlark.com/mimic-fn/2.1.0 + dev: true + + registry.nlark.com/opener/1.5.2: + resolution: {integrity: sha1-XTfh81B3udysQwE3InGv3rKhNZg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/opener/download/opener-1.5.2.tgz} + name: opener + version: 1.5.2 + hasBin: true + dev: true + + registry.nlark.com/optionator/0.8.3: + resolution: {integrity: sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/optionator/download/optionator-0.8.3.tgz} + name: optionator + version: 0.8.3 + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: registry.nlark.com/deep-is/0.1.4 + fast-levenshtein: registry.nlark.com/fast-levenshtein/2.0.6 + levn: registry.nlark.com/levn/0.3.0 + prelude-ls: registry.nlark.com/prelude-ls/1.1.2 + type-check: registry.nlark.com/type-check/0.3.2 + word-wrap: registry.nlark.com/word-wrap/1.2.3 + dev: true + + registry.nlark.com/ora/3.4.0: + resolution: {integrity: sha1-vwdSSRBZo+8+1MhQl1Md6f280xg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ora/download/ora-3.4.0.tgz} + name: ora + version: 3.4.0 + engines: {node: '>=6'} + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + cli-cursor: registry.nlark.com/cli-cursor/2.1.0 + cli-spinners: registry.npmmirror.com/cli-spinners/2.6.1 + log-symbols: registry.nlark.com/log-symbols/2.2.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + wcwidth: registry.nlark.com/wcwidth/1.0.1 + dev: true + + registry.nlark.com/original/1.0.2: + resolution: {integrity: sha1-5EKmHP/hxf0gpl8yYcJmY7MD8l8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/original/download/original-1.0.2.tgz} + name: original + version: 1.0.2 + dependencies: + url-parse: registry.nlark.com/url-parse/1.5.3 + dev: true + + registry.nlark.com/os-browserify/0.3.0: + resolution: {integrity: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/os-browserify/download/os-browserify-0.3.0.tgz} + name: os-browserify + version: 0.3.0 + dev: true + + registry.nlark.com/os-tmpdir/1.0.2: + resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz} + name: os-tmpdir + version: 1.0.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/p-each-series/1.0.0: + resolution: {integrity: sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-each-series/download/p-each-series-1.0.0.tgz} + name: p-each-series + version: 1.0.0 + engines: {node: '>=4'} + dependencies: + p-reduce: registry.nlark.com/p-reduce/1.0.0 + dev: true + + registry.nlark.com/p-finally/1.0.0: + resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-finally/download/p-finally-1.0.0.tgz} + name: p-finally + version: 1.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/p-finally/2.0.1: + resolution: {integrity: sha1-vW/KqcVZoJa2gIBvTWV7Pw8kBWE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-finally/download/p-finally-2.0.1.tgz} + name: p-finally + version: 2.0.1 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/p-limit/1.3.0: + resolution: {integrity: sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz} + name: p-limit + version: 1.3.0 + engines: {node: '>=4'} + dependencies: + p-try: registry.npmmirror.com/p-try/1.0.0 + dev: true + + registry.nlark.com/p-limit/2.3.0: + resolution: {integrity: sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz} + name: p-limit + version: 2.3.0 + engines: {node: '>=6'} + dependencies: + p-try: registry.npmmirror.com/p-try/2.2.0 + dev: true + + registry.nlark.com/p-locate/2.0.0: + resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz} + name: p-locate + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + p-limit: registry.nlark.com/p-limit/1.3.0 + dev: true + + registry.nlark.com/p-locate/3.0.0: + resolution: {integrity: sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-3.0.0.tgz} + name: p-locate + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + p-limit: registry.nlark.com/p-limit/2.3.0 + dev: true + + registry.nlark.com/p-locate/4.1.0: + resolution: {integrity: sha1-o0KLtwiLOmApL2aRkni3wpetTwc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz} + name: p-locate + version: 4.1.0 + engines: {node: '>=8'} + dependencies: + p-limit: registry.nlark.com/p-limit/2.3.0 + dev: true + + registry.nlark.com/p-reduce/1.0.0: + resolution: {integrity: sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-reduce/download/p-reduce-1.0.0.tgz} + name: p-reduce + version: 1.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/pako/1.0.11: + resolution: {integrity: sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pako/download/pako-1.0.11.tgz} + name: pako + version: 1.0.11 + dev: true + + registry.nlark.com/parallel-transform/1.2.0: + resolution: {integrity: sha1-kEnKN9bLIYLDsdLHIL6U0UpYFPw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parallel-transform/download/parallel-transform-1.2.0.tgz} + name: parallel-transform + version: 1.2.0 + dependencies: + cyclist: registry.nlark.com/cyclist/1.0.1 + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/param-case/2.1.1: + resolution: {integrity: sha1-35T9jPZTHs915r75oIWPvHK+Ikc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/param-case/download/param-case-2.1.1.tgz} + name: param-case + version: 2.1.1 + dependencies: + no-case: registry.nlark.com/no-case/2.3.2 + dev: true + + registry.nlark.com/parse-asn1/5.1.6: + resolution: {integrity: sha1-OFCAo+wTy2KmLTlAnLPoiETNrtQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse-asn1/download/parse-asn1-5.1.6.tgz} + name: parse-asn1 + version: 5.1.6 + dependencies: + asn1.js: registry.npmmirror.com/asn1.js/5.4.1 + browserify-aes: registry.nlark.com/browserify-aes/1.2.0 + evp_bytestokey: registry.nlark.com/evp_bytestokey/1.0.3 + pbkdf2: registry.nlark.com/pbkdf2/3.1.2 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/parse-glob/3.0.4: + resolution: {integrity: sha1-ssN2z7EfNVE7rdFz7wu246OIORw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse-glob/download/parse-glob-3.0.4.tgz} + name: parse-glob + version: 3.0.4 + engines: {node: '>=0.10.0'} + dependencies: + glob-base: registry.nlark.com/glob-base/0.3.0 + is-dotfile: registry.nlark.com/is-dotfile/1.0.3 + is-extglob: registry.nlark.com/is-extglob/1.0.0 + is-glob: registry.npmmirror.com/is-glob/2.0.1 + dev: true + + registry.nlark.com/parse5-htmlparser2-tree-adapter/6.0.1: + resolution: {integrity: sha1-LN+a2CMyEUA3DU2/XT6Sx8jdxuY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse5-htmlparser2-tree-adapter/download/parse5-htmlparser2-tree-adapter-6.0.1.tgz} + name: parse5-htmlparser2-tree-adapter + version: 6.0.1 + dependencies: + parse5: registry.nlark.com/parse5/6.0.1 + dev: true + + registry.nlark.com/parse5/4.0.0: + resolution: {integrity: sha1-bXhlbj2o14tOwLkG98CO8d/j9gg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse5/download/parse5-4.0.0.tgz} + name: parse5 + version: 4.0.0 + dev: true + + registry.nlark.com/parse5/5.1.0: + resolution: {integrity: sha1-xZNByXI/QUxFKXVWTHwApo1YrNI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse5/download/parse5-5.1.0.tgz} + name: parse5 + version: 5.1.0 + dev: true + + registry.nlark.com/parse5/5.1.1: + resolution: {integrity: sha1-9o5OW6GFKsLK3AD0VV//bCq7YXg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse5/download/parse5-5.1.1.tgz} + name: parse5 + version: 5.1.1 + dev: true + + registry.nlark.com/parse5/6.0.1: + resolution: {integrity: sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz} + name: parse5 + version: 6.0.1 + dev: true + + registry.nlark.com/parseurl/1.3.3: + resolution: {integrity: sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parseurl/download/parseurl-1.3.3.tgz} + name: parseurl + version: 1.3.3 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/pascalcase/0.1.1: + resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pascalcase/download/pascalcase-0.1.1.tgz} + name: pascalcase + version: 0.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/path-browserify/0.0.1: + resolution: {integrity: sha1-5sTd1+06onxoogzE5Q4aTug7vEo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-browserify/download/path-browserify-0.0.1.tgz} + name: path-browserify + version: 0.0.1 + dev: true + + registry.nlark.com/path-dirname/1.0.2: + resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-dirname/download/path-dirname-1.0.2.tgz} + name: path-dirname + version: 1.0.2 + dev: true + + registry.nlark.com/path-exists/2.1.0: + resolution: {integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-2.1.0.tgz} + name: path-exists + version: 2.1.0 + engines: {node: '>=0.10.0'} + dependencies: + pinkie-promise: registry.nlark.com/pinkie-promise/2.0.1 + dev: true + + registry.nlark.com/path-exists/3.0.0: + resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz} + name: path-exists + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/path-exists/4.0.0: + resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz} + name: path-exists + version: 4.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/path-is-absolute/1.0.1: + resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz} + name: path-is-absolute + version: 1.0.1 + engines: {node: '>=0.10.0'} + + registry.nlark.com/path-key/2.0.1: + resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-key/download/path-key-2.0.1.tgz} + name: path-key + version: 2.0.1 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/path-key/3.1.1: + resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz} + name: path-key + version: 3.1.1 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/path-parse/1.0.7: + resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz} + name: path-parse + version: 1.0.7 + dev: true + + registry.nlark.com/path-to-regexp/0.1.7: + resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-to-regexp/download/path-to-regexp-0.1.7.tgz} + name: path-to-regexp + version: 0.1.7 + dev: true + + registry.nlark.com/path-to-regexp/2.4.0: + resolution: {integrity: sha1-Nc5/Mz1WFvHB4b/iZsOrouWy5wQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-to-regexp/download/path-to-regexp-2.4.0.tgz} + name: path-to-regexp + version: 2.4.0 + dev: false + + registry.nlark.com/path-type/1.1.0: + resolution: {integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-type/download/path-type-1.1.0.tgz} + name: path-type + version: 1.1.0 + engines: {node: '>=0.10.0'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + pify: registry.nlark.com/pify/2.3.0 + pinkie-promise: registry.nlark.com/pinkie-promise/2.0.1 + dev: true + + registry.nlark.com/path-type/3.0.0: + resolution: {integrity: sha1-zvMdyOCho7sNEFwM2Xzzv0f0428=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-type/download/path-type-3.0.0.tgz} + name: path-type + version: 3.0.0 + engines: {node: '>=4'} + dependencies: + pify: registry.nlark.com/pify/3.0.0 + dev: true + + registry.nlark.com/pbkdf2/3.1.2: + resolution: {integrity: sha1-3YIqoIh1gOUvGgOdw+2hCO+uMHU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pbkdf2/download/pbkdf2-3.1.2.tgz} + name: pbkdf2 + version: 3.1.2 + engines: {node: '>=0.12'} + dependencies: + create-hash: registry.nlark.com/create-hash/1.2.0 + create-hmac: registry.nlark.com/create-hmac/1.1.7 + ripemd160: registry.nlark.com/ripemd160/2.0.2 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + sha.js: registry.nlark.com/sha.js/2.4.11 + dev: true + + registry.nlark.com/performance-now/2.1.0: + resolution: {integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/performance-now/download/performance-now-2.1.0.tgz} + name: performance-now + version: 2.1.0 + dev: true + + registry.nlark.com/picomatch/2.3.0: + resolution: {integrity: sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz} + name: picomatch + version: 2.3.0 + engines: {node: '>=8.6'} + dev: true + + registry.nlark.com/pify/2.3.0: + resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pify/download/pify-2.3.0.tgz} + name: pify + version: 2.3.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/pify/3.0.0: + resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pify/download/pify-3.0.0.tgz} + name: pify + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/pify/4.0.1: + resolution: {integrity: sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pify/download/pify-4.0.1.tgz} + name: pify + version: 4.0.1 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/pinkie-promise/2.0.1: + resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz} + name: pinkie-promise + version: 2.0.1 + engines: {node: '>=0.10.0'} + dependencies: + pinkie: registry.nlark.com/pinkie/2.0.4 + dev: true + + registry.nlark.com/pinkie/2.0.4: + resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pinkie/download/pinkie-2.0.4.tgz} + name: pinkie + version: 2.0.4 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/pirates/4.0.1: + resolution: {integrity: sha1-ZDqSyviUVm+RsrmG0sZpUKji+4c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pirates/download/pirates-4.0.1.tgz} + name: pirates + version: 4.0.1 + engines: {node: '>= 6'} + dependencies: + node-modules-regexp: registry.nlark.com/node-modules-regexp/1.0.0 + dev: true + + registry.nlark.com/pn/1.1.0: + resolution: {integrity: sha1-4vTO8OIZ9GPBeas3Rj5OHs3Muvs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pn/download/pn-1.1.0.tgz} + name: pn + version: 1.1.0 + dev: true + + registry.nlark.com/portfinder/1.0.28: + resolution: {integrity: sha1-Z8RiKFK9U3TdHdkA93n1NGL6x3g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/portfinder/download/portfinder-1.0.28.tgz} + name: portfinder + version: 1.0.28 + engines: {node: '>= 0.12.0'} + dependencies: + async: registry.npmmirror.com/async/2.6.3 + debug: registry.npmmirror.com/debug/3.2.7 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + + registry.nlark.com/posix-character-classes/0.1.1: + resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/posix-character-classes/download/posix-character-classes-0.1.1.tgz} + name: posix-character-classes + version: 0.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/postcss-calc/7.0.5: + resolution: {integrity: sha1-+KbpnxLmGcLrwjz2xIb9wVhgkz4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-calc/download/postcss-calc-7.0.5.tgz} + name: postcss-calc + version: 7.0.5 + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6 + postcss-value-parser: registry.nlark.com/postcss-value-parser/4.1.0 + dev: true + + registry.nlark.com/postcss-discard-comments/4.0.2: + resolution: {integrity: sha1-H7q9LCRr/2qq15l7KwkY9NevQDM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-discard-comments/download/postcss-discard-comments-4.0.2.tgz} + name: postcss-discard-comments + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-discard-duplicates/4.0.2: + resolution: {integrity: sha1-P+EzzTyCKC5VD8myORdqkge3hOs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-discard-duplicates/download/postcss-discard-duplicates-4.0.2.tgz} + name: postcss-discard-duplicates + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-discard-empty/4.0.1: + resolution: {integrity: sha1-yMlR6fc+2UKAGUWERKAq2Qu592U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-discard-empty/download/postcss-discard-empty-4.0.1.tgz} + name: postcss-discard-empty + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-discard-overridden/4.0.1: + resolution: {integrity: sha1-ZSrvipZybwKfXj4AFG7npOdV/1c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-discard-overridden/download/postcss-discard-overridden-4.0.1.tgz} + name: postcss-discard-overridden + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-merge-rules/4.0.3: + resolution: {integrity: sha1-NivqT/Wh+Y5AdacTxsslrv75plA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-merge-rules/download/postcss-merge-rules-4.0.3.tgz} + name: postcss-merge-rules + version: 4.0.3 + engines: {node: '>=6.9.0'} + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + caniuse-api: registry.nlark.com/caniuse-api/3.0.0 + cssnano-util-same-parent: registry.nlark.com/cssnano-util-same-parent/4.0.1 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/3.1.2 + vendors: registry.nlark.com/vendors/1.0.4 + dev: true + + registry.nlark.com/postcss-minify-font-values/4.0.2: + resolution: {integrity: sha1-zUw0TM5HQ0P6xdgiBqssvLiv1aY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-minify-font-values/download/postcss-minify-font-values-4.0.2.tgz} + name: postcss-minify-font-values + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-minify-params/4.0.2: + resolution: {integrity: sha1-a5zvAwwR41Jh+V9hjJADbWgNuHQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-minify-params/download/postcss-minify-params-4.0.2.tgz} + name: postcss-minify-params + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + alphanum-sort: registry.nlark.com/alphanum-sort/1.0.2 + browserslist: registry.npmmirror.com/browserslist/4.17.6 + cssnano-util-get-arguments: registry.nlark.com/cssnano-util-get-arguments/4.0.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + uniqs: registry.nlark.com/uniqs/2.0.0 + dev: true + + registry.nlark.com/postcss-minify-selectors/4.0.2: + resolution: {integrity: sha1-4uXrQL/uUA0M2SQ1APX46kJi+9g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-minify-selectors/download/postcss-minify-selectors-4.0.2.tgz} + name: postcss-minify-selectors + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + alphanum-sort: registry.nlark.com/alphanum-sort/1.0.2 + has: registry.nlark.com/has/1.0.3 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/3.1.2 + dev: true + + registry.nlark.com/postcss-modules-extract-imports/2.0.0: + resolution: {integrity: sha1-gYcZoa4doyX5gyRGsBE27rSTzX4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-2.0.0.tgz} + name: postcss-modules-extract-imports + version: 2.0.0 + engines: {node: '>= 6'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-modules-local-by-default/3.0.3: + resolution: {integrity: sha1-uxTgzHgnnVBNvcv9fgyiiZP/u7A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-3.0.3.tgz} + name: postcss-modules-local-by-default + version: 3.0.3 + engines: {node: '>= 6'} + dependencies: + icss-utils: registry.nlark.com/icss-utils/4.1.1 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6 + postcss-value-parser: registry.nlark.com/postcss-value-parser/4.1.0 + dev: true + + registry.nlark.com/postcss-modules-scope/2.2.0: + resolution: {integrity: sha1-OFyuATzHdD9afXYC0Qc6iequYu4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-modules-scope/download/postcss-modules-scope-2.2.0.tgz} + name: postcss-modules-scope + version: 2.2.0 + engines: {node: '>= 6'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6 + dev: true + + registry.nlark.com/postcss-modules-values/3.0.0: + resolution: {integrity: sha1-W1AA1uuuKbQlUwG0o6VFdEI+fxA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-3.0.0.tgz} + name: postcss-modules-values + version: 3.0.0 + dependencies: + icss-utils: registry.nlark.com/icss-utils/4.1.1 + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-normalize-charset/4.0.1: + resolution: {integrity: sha1-izWt067oOhNrBHHg1ZvlilAoXdQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-charset/download/postcss-normalize-charset-4.0.1.tgz} + name: postcss-normalize-charset + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-normalize-display-values/4.0.2: + resolution: {integrity: sha1-Db4EpM6QY9RmftK+R2u4MMglk1o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-display-values/download/postcss-normalize-display-values-4.0.2.tgz} + name: postcss-normalize-display-values + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-match: registry.nlark.com/cssnano-util-get-match/4.0.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-positions/4.0.2: + resolution: {integrity: sha1-BfdX+E8mBDc3g2ipH4ky1LECkX8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-positions/download/postcss-normalize-positions-4.0.2.tgz} + name: postcss-normalize-positions + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-arguments: registry.nlark.com/cssnano-util-get-arguments/4.0.0 + has: registry.nlark.com/has/1.0.3 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-repeat-style/4.0.2: + resolution: {integrity: sha1-xOu8KJ85kaAo1EdRy90RkYsXkQw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-repeat-style/download/postcss-normalize-repeat-style-4.0.2.tgz} + name: postcss-normalize-repeat-style + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-arguments: registry.nlark.com/cssnano-util-get-arguments/4.0.0 + cssnano-util-get-match: registry.nlark.com/cssnano-util-get-match/4.0.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-string/4.0.2: + resolution: {integrity: sha1-zUTECrB6DHo23F6Zqs4eyk7CaQw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-string/download/postcss-normalize-string-4.0.2.tgz} + name: postcss-normalize-string + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + has: registry.nlark.com/has/1.0.3 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-timing-functions/4.0.2: + resolution: {integrity: sha1-jgCcoqOUnNr4rSPmtquZy159KNk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-timing-functions/download/postcss-normalize-timing-functions-4.0.2.tgz} + name: postcss-normalize-timing-functions + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-match: registry.nlark.com/cssnano-util-get-match/4.0.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-unicode/4.0.1: + resolution: {integrity: sha1-hBvUj9zzAZrUuqdJOj02O1KuHPs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-unicode/download/postcss-normalize-unicode-4.0.1.tgz} + name: postcss-normalize-unicode + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-url/4.0.1: + resolution: {integrity: sha1-EOQ3+GvHx+WPe5ZS7YeNqqlfquE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-url/download/postcss-normalize-url-4.0.1.tgz} + name: postcss-normalize-url + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + is-absolute-url: registry.nlark.com/is-absolute-url/2.1.0 + normalize-url: registry.nlark.com/normalize-url/3.3.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-normalize-whitespace/4.0.2: + resolution: {integrity: sha1-vx1AcP5Pzqh9E0joJdjMDF+qfYI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-normalize-whitespace/download/postcss-normalize-whitespace-4.0.2.tgz} + name: postcss-normalize-whitespace + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-ordered-values/4.1.2: + resolution: {integrity: sha1-DPdcgg7H1cTSgBiVWeC1ceusDu4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-ordered-values/download/postcss-ordered-values-4.1.2.tgz} + name: postcss-ordered-values + version: 4.1.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-arguments: registry.nlark.com/cssnano-util-get-arguments/4.0.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-reduce-initial/4.0.3: + resolution: {integrity: sha1-f9QuvqXpyBRgljniwuhK4nC6SN8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-reduce-initial/download/postcss-reduce-initial-4.0.3.tgz} + name: postcss-reduce-initial + version: 4.0.3 + engines: {node: '>=6.9.0'} + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + caniuse-api: registry.nlark.com/caniuse-api/3.0.0 + has: registry.nlark.com/has/1.0.3 + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.nlark.com/postcss-reduce-transforms/4.0.2: + resolution: {integrity: sha1-F++kBerMbge+NBSlyi0QdGgdTik=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-reduce-transforms/download/postcss-reduce-transforms-4.0.2.tgz} + name: postcss-reduce-transforms + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-match: registry.nlark.com/cssnano-util-get-match/4.0.0 + has: registry.nlark.com/has/1.0.3 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.nlark.com/postcss-selector-parser/3.1.2: + resolution: {integrity: sha1-sxD1xMD9r3b5SQK7qjDbaqhPUnA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-3.1.2.tgz} + name: postcss-selector-parser + version: 3.1.2 + engines: {node: '>=8'} + dependencies: + dot-prop: registry.nlark.com/dot-prop/5.3.0 + indexes-of: registry.nlark.com/indexes-of/1.0.1 + uniq: registry.nlark.com/uniq/1.0.1 + dev: true + + registry.nlark.com/postcss-selector-parser/6.0.6: + resolution: {integrity: sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz} + name: postcss-selector-parser + version: 6.0.6 + engines: {node: '>=4'} + dependencies: + cssesc: registry.nlark.com/cssesc/3.0.0 + util-deprecate: registry.nlark.com/util-deprecate/1.0.2 + dev: true + + registry.nlark.com/postcss-unique-selectors/4.0.1: + resolution: {integrity: sha1-lEaRHzKJv9ZMbWgPBzwDsfnuS6w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-unique-selectors/download/postcss-unique-selectors-4.0.1.tgz} + name: postcss-unique-selectors + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + alphanum-sort: registry.nlark.com/alphanum-sort/1.0.2 + postcss: registry.npmmirror.com/postcss/7.0.39 + uniqs: registry.nlark.com/uniqs/2.0.0 + dev: true + + registry.nlark.com/postcss-value-parser/3.3.1: + resolution: {integrity: sha1-n/giVH4okyE88cMO+lGsX9G6goE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz} + name: postcss-value-parser + version: 3.3.1 + dev: true + + registry.nlark.com/postcss-value-parser/4.1.0: + resolution: {integrity: sha1-RD9qIM7WSBor2k+oUypuVdeJoss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz} + name: postcss-value-parser + version: 4.1.0 + dev: true + + registry.nlark.com/posthtml/0.9.2: + resolution: {integrity: sha1-9MBtufZ7Yf0XxOJW5+PZUVv3Jv0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/posthtml/download/posthtml-0.9.2.tgz} + name: posthtml + version: 0.9.2 + engines: {node: '>=0.10.0'} + dependencies: + posthtml-parser: registry.npmmirror.com/posthtml-parser/0.2.1 + posthtml-render: registry.npmmirror.com/posthtml-render/1.4.0 + dev: true + + registry.nlark.com/prelude-ls/1.1.2: + resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prelude-ls/download/prelude-ls-1.1.2.tgz} + name: prelude-ls + version: 1.1.2 + engines: {node: '>= 0.8.0'} + dev: true + + registry.nlark.com/prepend-http/1.0.4: + resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prepend-http/download/prepend-http-1.0.4.tgz} + name: prepend-http + version: 1.0.4 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/preserve/0.2.0: + resolution: {integrity: sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/preserve/download/preserve-0.2.0.tgz} + name: preserve + version: 0.2.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/prettier/2.4.1: + resolution: {integrity: sha1-Zx4RyJwUpM/Ids5WQQbEpnJsn1w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prettier/download/prettier-2.4.1.tgz} + name: prettier + version: 2.4.1 + engines: {node: '>=10.13.0'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + registry.nlark.com/process-nextick-args/2.0.1: + resolution: {integrity: sha1-eCDZsWEgzFXKmud5JoCufbptf+I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/process-nextick-args/download/process-nextick-args-2.0.1.tgz} + name: process-nextick-args + version: 2.0.1 + dev: true + + registry.nlark.com/process/0.11.10: + resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/process/download/process-0.11.10.tgz} + name: process + version: 0.11.10 + engines: {node: '>= 0.6.0'} + dev: true + + registry.nlark.com/progress/2.0.3: + resolution: {integrity: sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/progress/download/progress-2.0.3.tgz} + name: progress + version: 2.0.3 + engines: {node: '>=0.4.0'} + dev: true + + registry.nlark.com/promise-inflight/1.0.1: + resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/promise-inflight/download/promise-inflight-1.0.1.tgz} + name: promise-inflight + version: 1.0.1 + dev: true + + registry.nlark.com/proto-list/1.2.4: + resolution: {integrity: sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/proto-list/download/proto-list-1.2.4.tgz} + name: proto-list + version: 1.2.4 + dev: true + + registry.nlark.com/proxy-addr/2.0.7: + resolution: {integrity: sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/proxy-addr/download/proxy-addr-2.0.7.tgz} + name: proxy-addr + version: 2.0.7 + engines: {node: '>= 0.10'} + dependencies: + forwarded: registry.nlark.com/forwarded/0.2.0 + ipaddr.js: registry.npmmirror.com/ipaddr.js/1.9.1 + dev: true + + registry.nlark.com/prr/1.0.1: + resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prr/download/prr-1.0.1.tgz} + name: prr + version: 1.0.1 + dev: true + + registry.nlark.com/pseudomap/1.0.2: + resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pseudomap/download/pseudomap-1.0.2.tgz} + name: pseudomap + version: 1.0.2 + dev: true + + registry.nlark.com/psl/1.8.0: + resolution: {integrity: sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/psl/download/psl-1.8.0.tgz} + name: psl + version: 1.8.0 + dev: true + + registry.nlark.com/public-encrypt/4.0.3: + resolution: {integrity: sha1-T8ydd6B+SLp1J+fL4N4z0HATMeA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/public-encrypt/download/public-encrypt-4.0.3.tgz} + name: public-encrypt + version: 4.0.3 + dependencies: + bn.js: registry.nlark.com/bn.js/4.12.0 + browserify-rsa: registry.nlark.com/browserify-rsa/4.1.0 + create-hash: registry.nlark.com/create-hash/1.2.0 + parse-asn1: registry.nlark.com/parse-asn1/5.1.6 + randombytes: registry.nlark.com/randombytes/2.1.0 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/pump/2.0.1: + resolution: {integrity: sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pump/download/pump-2.0.1.tgz} + name: pump + version: 2.0.1 + dependencies: + end-of-stream: registry.nlark.com/end-of-stream/1.4.4 + once: registry.nlark.com/once/1.4.0 + dev: true + + registry.nlark.com/pump/3.0.0: + resolution: {integrity: sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pump/download/pump-3.0.0.tgz} + name: pump + version: 3.0.0 + dependencies: + end-of-stream: registry.nlark.com/end-of-stream/1.4.4 + once: registry.nlark.com/once/1.4.0 + dev: true + + registry.nlark.com/pumpify/1.5.1: + resolution: {integrity: sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pumpify/download/pumpify-1.5.1.tgz} + name: pumpify + version: 1.5.1 + dependencies: + duplexify: registry.nlark.com/duplexify/3.7.1 + inherits: registry.nlark.com/inherits/2.0.4 + pump: registry.nlark.com/pump/2.0.1 + dev: true + + registry.nlark.com/punycode/1.3.2: + resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/punycode/download/punycode-1.3.2.tgz} + name: punycode + version: 1.3.2 + dev: true + + registry.nlark.com/punycode/1.4.1: + resolution: {integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/punycode/download/punycode-1.4.1.tgz} + name: punycode + version: 1.4.1 + dev: true + + registry.nlark.com/punycode/2.1.1: + resolution: {integrity: sha1-tYsBCsQMIsVldhbI0sLALHv0eew=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz} + name: punycode + version: 2.1.1 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/q/1.5.1: + resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/q/download/q-1.5.1.tgz} + name: q + version: 1.5.1 + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + registry.nlark.com/qs/6.10.1: + resolution: {integrity: sha1-STFIL6jWR6Wqt5nFJx0hM7mB+2o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/qs/download/qs-6.10.1.tgz} + name: qs + version: 6.10.1 + engines: {node: '>=0.6'} + dependencies: + side-channel: registry.nlark.com/side-channel/1.0.4 + dev: false + + registry.nlark.com/qs/6.5.2: + resolution: {integrity: sha1-yzroBuh0BERYTvFUzo7pjUA/PjY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/qs/download/qs-6.5.2.tgz} + name: qs + version: 6.5.2 + engines: {node: '>=0.6'} + dev: true + + registry.nlark.com/qs/6.7.0: + resolution: {integrity: sha1-QdwaAV49WB8WIXdr4xr7KHapsbw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/qs/download/qs-6.7.0.tgz} + name: qs + version: 6.7.0 + engines: {node: '>=0.6'} + dev: true + + registry.nlark.com/query-string/4.3.4: + resolution: {integrity: sha1-u7aTucqRXCMlFbIosaArYJBD2+s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/query-string/download/query-string-4.3.4.tgz} + name: query-string + version: 4.3.4 + engines: {node: '>=0.10.0'} + dependencies: + object-assign: registry.nlark.com/object-assign/4.1.1 + strict-uri-encode: registry.nlark.com/strict-uri-encode/1.1.0 + dev: true + + registry.nlark.com/querystring-es3/0.2.1: + resolution: {integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/querystring-es3/download/querystring-es3-0.2.1.tgz} + name: querystring-es3 + version: 0.2.1 + engines: {node: '>=0.4.x'} + dev: true + + registry.nlark.com/querystringify/2.2.0: + resolution: {integrity: sha1-M0WUG0FTy50ILY7uTNogFqmu9/Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/querystringify/download/querystringify-2.2.0.tgz} + name: querystringify + version: 2.2.0 + dev: true + + registry.nlark.com/randomatic/3.1.1: + resolution: {integrity: sha1-t3bvxZN1mE42xTey9RofCv8Noe0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/randomatic/download/randomatic-3.1.1.tgz} + name: randomatic + version: 3.1.1 + engines: {node: '>= 0.10.0'} + dependencies: + is-number: registry.nlark.com/is-number/4.0.0 + kind-of: registry.nlark.com/kind-of/6.0.3 + math-random: registry.nlark.com/math-random/1.0.4 + dev: true + + registry.nlark.com/randombytes/2.1.0: + resolution: {integrity: sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/randombytes/download/randombytes-2.1.0.tgz} + name: randombytes + version: 2.1.0 + dependencies: + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/randomfill/1.0.4: + resolution: {integrity: sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/randomfill/download/randomfill-1.0.4.tgz} + name: randomfill + version: 1.0.4 + dependencies: + randombytes: registry.nlark.com/randombytes/2.1.0 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/range-parser/1.2.1: + resolution: {integrity: sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/range-parser/download/range-parser-1.2.1.tgz} + name: range-parser + version: 1.2.1 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/read-pkg/1.1.0: + resolution: {integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/read-pkg/download/read-pkg-1.1.0.tgz} + name: read-pkg + version: 1.1.0 + engines: {node: '>=0.10.0'} + dependencies: + load-json-file: registry.nlark.com/load-json-file/1.1.0 + normalize-package-data: registry.nlark.com/normalize-package-data/2.5.0 + path-type: registry.nlark.com/path-type/1.1.0 + dev: true + + registry.nlark.com/read-pkg/3.0.0: + resolution: {integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/read-pkg/download/read-pkg-3.0.0.tgz} + name: read-pkg + version: 3.0.0 + engines: {node: '>=4'} + dependencies: + load-json-file: registry.nlark.com/load-json-file/4.0.0 + normalize-package-data: registry.nlark.com/normalize-package-data/2.5.0 + path-type: registry.nlark.com/path-type/3.0.0 + dev: true + + registry.nlark.com/read-pkg/5.2.0: + resolution: {integrity: sha1-e/KVQ4yloz5WzTDgU7NO5yUMk8w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz} + name: read-pkg + version: 5.2.0 + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': registry.nlark.com/@types/normalize-package-data/2.4.1 + normalize-package-data: registry.nlark.com/normalize-package-data/2.5.0 + parse-json: registry.npmmirror.com/parse-json/5.2.0 + type-fest: registry.npmmirror.com/type-fest/0.6.0 + dev: true + + registry.nlark.com/readable-stream/2.3.7: + resolution: {integrity: sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readable-stream/download/readable-stream-2.3.7.tgz} + name: readable-stream + version: 2.3.7 + dependencies: + core-util-is: registry.nlark.com/core-util-is/1.0.3 + inherits: registry.nlark.com/inherits/2.0.4 + isarray: registry.nlark.com/isarray/1.0.0 + process-nextick-args: registry.nlark.com/process-nextick-args/2.0.1 + safe-buffer: registry.nlark.com/safe-buffer/5.1.2 + string_decoder: registry.nlark.com/string_decoder/1.1.1 + util-deprecate: registry.nlark.com/util-deprecate/1.0.2 + dev: true + + registry.nlark.com/readable-stream/3.6.0: + resolution: {integrity: sha1-M3u9o63AcGvT4CRCaihtS0sskZg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readable-stream/download/readable-stream-3.6.0.tgz} + name: readable-stream + version: 3.6.0 + engines: {node: '>= 6'} + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + string_decoder: registry.nlark.com/string_decoder/1.3.0 + util-deprecate: registry.nlark.com/util-deprecate/1.0.2 + dev: true + + registry.nlark.com/readdirp/2.2.1: + resolution: {integrity: sha1-DodiKjMlqjPokihcr4tOhGUppSU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readdirp/download/readdirp-2.2.1.tgz} + name: readdirp + version: 2.2.1 + engines: {node: '>=0.10'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + micromatch: registry.nlark.com/micromatch/3.1.10 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/readdirp/3.6.0: + resolution: {integrity: sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz} + name: readdirp + version: 3.6.0 + engines: {node: '>=8.10.0'} + dependencies: + picomatch: registry.nlark.com/picomatch/2.3.0 + dev: true + + registry.nlark.com/regenerate-unicode-properties/9.0.0: + resolution: {integrity: sha1-VNCccRXh9T3CMUqXSzLBw0Tv4yY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regenerate-unicode-properties/download/regenerate-unicode-properties-9.0.0.tgz} + name: regenerate-unicode-properties + version: 9.0.0 + engines: {node: '>=4'} + dependencies: + regenerate: registry.nlark.com/regenerate/1.4.2 + dev: true + + registry.nlark.com/regenerate/1.4.2: + resolution: {integrity: sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regenerate/download/regenerate-1.4.2.tgz} + name: regenerate + version: 1.4.2 + dev: true + + registry.nlark.com/regenerator-runtime/0.10.5: + resolution: {integrity: sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.10.5.tgz} + name: regenerator-runtime + version: 0.10.5 + dev: true + + registry.nlark.com/regenerator-runtime/0.11.1: + resolution: {integrity: sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz} + name: regenerator-runtime + version: 0.11.1 + + registry.nlark.com/regenerator-runtime/0.13.9: + resolution: {integrity: sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.9.tgz} + name: regenerator-runtime + version: 0.13.9 + dev: true + + registry.nlark.com/regenerator-transform/0.14.5: + resolution: {integrity: sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regenerator-transform/download/regenerator-transform-0.14.5.tgz} + name: regenerator-transform + version: 0.14.5 + dependencies: + '@babel/runtime': registry.npmmirror.com/@babel/runtime/7.16.3 + dev: true + + registry.nlark.com/regex-cache/0.4.4: + resolution: {integrity: sha1-db3FiioUls7EihKDW8VMjVYjNt0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regex-cache/download/regex-cache-0.4.4.tgz} + name: regex-cache + version: 0.4.4 + engines: {node: '>=0.10.0'} + dependencies: + is-equal-shallow: registry.nlark.com/is-equal-shallow/0.1.3 + dev: true + + registry.nlark.com/regex-not/1.0.2: + resolution: {integrity: sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regex-not/download/regex-not-1.0.2.tgz} + name: regex-not + version: 1.0.2 + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: registry.nlark.com/extend-shallow/3.0.2 + safe-regex: registry.nlark.com/safe-regex/1.1.0 + dev: true + + registry.nlark.com/regexp.prototype.flags/1.3.1: + resolution: {integrity: sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz} + name: regexp.prototype.flags + version: 1.3.1 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + dev: true + + registry.nlark.com/regexpp/2.0.1: + resolution: {integrity: sha1-jRnTHPYySCtYkEn4KB+T28uk0H8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regexpp/download/regexpp-2.0.1.tgz} + name: regexpp + version: 2.0.1 + engines: {node: '>=6.5.0'} + dev: true + + registry.nlark.com/regexpu-core/4.8.0: + resolution: {integrity: sha1-5WBbo2G2excYR4UBMnUC9EeamPA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regexpu-core/download/regexpu-core-4.8.0.tgz} + name: regexpu-core + version: 4.8.0 + engines: {node: '>=4'} + dependencies: + regenerate: registry.nlark.com/regenerate/1.4.2 + regenerate-unicode-properties: registry.nlark.com/regenerate-unicode-properties/9.0.0 + regjsgen: registry.npmmirror.com/regjsgen/0.5.2 + regjsparser: registry.nlark.com/regjsparser/0.7.0 + unicode-match-property-ecmascript: registry.nlark.com/unicode-match-property-ecmascript/2.0.0 + unicode-match-property-value-ecmascript: registry.nlark.com/unicode-match-property-value-ecmascript/2.0.0 + dev: true + + registry.nlark.com/regjsparser/0.7.0: + resolution: {integrity: sha1-prZntUyIXhi1JVTLSWDvcRh+mWg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regjsparser/download/regjsparser-0.7.0.tgz} + name: regjsparser + version: 0.7.0 + hasBin: true + dependencies: + jsesc: registry.nlark.com/jsesc/0.5.0 + dev: true + + registry.nlark.com/relateurl/0.2.7: + resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/relateurl/download/relateurl-0.2.7.tgz} + name: relateurl + version: 0.2.7 + engines: {node: '>= 0.10'} + dev: true + + registry.nlark.com/remove-trailing-separator/1.1.0: + resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz} + name: remove-trailing-separator + version: 1.1.0 + dev: true + + registry.nlark.com/repeat-element/1.1.4: + resolution: {integrity: sha1-vmgVIIR6tYx1aKx1+/rSjtQtOek=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/repeat-element/download/repeat-element-1.1.4.tgz} + name: repeat-element + version: 1.1.4 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/repeat-string/1.6.1: + resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/repeat-string/download/repeat-string-1.6.1.tgz} + name: repeat-string + version: 1.6.1 + engines: {node: '>=0.10'} + dev: true + + registry.nlark.com/repeating/2.0.1: + resolution: {integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/repeating/download/repeating-2.0.1.tgz} + name: repeating + version: 2.0.1 + engines: {node: '>=0.10.0'} + dependencies: + is-finite: registry.npmmirror.com/is-finite/1.1.0 + dev: true + + registry.nlark.com/require-directory/2.1.1: + resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/require-directory/download/require-directory-2.1.1.tgz} + name: require-directory + version: 2.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/require-main-filename/1.0.1: + resolution: {integrity: sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/require-main-filename/download/require-main-filename-1.0.1.tgz} + name: require-main-filename + version: 1.0.1 + dev: true + + registry.nlark.com/require-main-filename/2.0.0: + resolution: {integrity: sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/require-main-filename/download/require-main-filename-2.0.0.tgz} + name: require-main-filename + version: 2.0.0 + dev: true + + registry.nlark.com/requires-port/1.0.0: + resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/requires-port/download/requires-port-1.0.0.tgz} + name: requires-port + version: 1.0.0 + dev: true + + registry.nlark.com/resize-observer-polyfill/1.5.1: + resolution: {integrity: sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz} + name: resize-observer-polyfill + version: 1.5.1 + dev: false + + registry.nlark.com/resolve-cwd/2.0.0: + resolution: {integrity: sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-cwd/download/resolve-cwd-2.0.0.tgz} + name: resolve-cwd + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + resolve-from: registry.nlark.com/resolve-from/3.0.0 + dev: true + + registry.nlark.com/resolve-from/3.0.0: + resolution: {integrity: sha1-six699nWiBvItuZTM17rywoYh0g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-from/download/resolve-from-3.0.0.tgz?cache=0&sync_timestamp=1631603497752&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-3.0.0.tgz} + name: resolve-from + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/resolve-from/4.0.0: + resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz?cache=0&sync_timestamp=1631603497752&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-4.0.0.tgz} + name: resolve-from + version: 4.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/resolve/1.1.7: + resolution: {integrity: sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve/download/resolve-1.1.7.tgz?cache=0&sync_timestamp=1631603497557&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve%2Fdownload%2Fresolve-1.1.7.tgz} + name: resolve + version: 1.1.7 + dev: true + + registry.nlark.com/resolve/1.20.0: + resolution: {integrity: sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz?cache=0&sync_timestamp=1631603497557&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve%2Fdownload%2Fresolve-1.20.0.tgz} + name: resolve + version: 1.20.0 + dependencies: + is-core-module: registry.npmmirror.com/is-core-module/2.8.0 + path-parse: registry.nlark.com/path-parse/1.0.7 + dev: true + + registry.nlark.com/restore-cursor/2.0.0: + resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/restore-cursor/download/restore-cursor-2.0.0.tgz} + name: restore-cursor + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + onetime: registry.nlark.com/onetime/2.0.1 + signal-exit: registry.npmmirror.com/signal-exit/3.0.5 + dev: true + + registry.nlark.com/restore-cursor/3.1.0: + resolution: {integrity: sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz} + name: restore-cursor + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + onetime: registry.nlark.com/onetime/5.1.2 + signal-exit: registry.npmmirror.com/signal-exit/3.0.5 + dev: true + + registry.nlark.com/ret/0.1.15: + resolution: {integrity: sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ret/download/ret-0.1.15.tgz} + name: ret + version: 0.1.15 + engines: {node: '>=0.12'} + dev: true + + registry.nlark.com/retry/0.12.0: + resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/retry/download/retry-0.12.0.tgz} + name: retry + version: 0.12.0 + engines: {node: '>= 4'} + dev: true + + registry.nlark.com/rgb-regex/1.0.1: + resolution: {integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/rgb-regex/download/rgb-regex-1.0.1.tgz} + name: rgb-regex + version: 1.0.1 + dev: true + + registry.nlark.com/rgba-regex/1.0.0: + resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/rgba-regex/download/rgba-regex-1.0.0.tgz} + name: rgba-regex + version: 1.0.0 + dev: true + + registry.nlark.com/ripemd160/2.0.2: + resolution: {integrity: sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ripemd160/download/ripemd160-2.0.2.tgz} + name: ripemd160 + version: 2.0.2 + dependencies: + hash-base: registry.nlark.com/hash-base/3.1.0 + inherits: registry.nlark.com/inherits/2.0.4 + dev: true + + registry.nlark.com/rsvp/4.8.5: + resolution: {integrity: sha1-yPFVMR0Wf2jyHhaN9x7FsIMRNzQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/rsvp/download/rsvp-4.8.5.tgz} + name: rsvp + version: 4.8.5 + engines: {node: 6.* || >= 7.*} + dev: true + + registry.nlark.com/run-async/2.4.1: + resolution: {integrity: sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz} + name: run-async + version: 2.4.1 + engines: {node: '>=0.12.0'} + dev: true + + registry.nlark.com/run-queue/1.0.3: + resolution: {integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/run-queue/download/run-queue-1.0.3.tgz} + name: run-queue + version: 1.0.3 + dependencies: + aproba: registry.nlark.com/aproba/1.2.0 + dev: true + + registry.nlark.com/safe-buffer/5.1.2: + resolution: {integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz} + name: safe-buffer + version: 5.1.2 + dev: true + + registry.nlark.com/safe-buffer/5.2.1: + resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz} + name: safe-buffer + version: 5.2.1 + dev: true + + registry.nlark.com/safe-regex/1.1.0: + resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-regex/download/safe-regex-1.1.0.tgz} + name: safe-regex + version: 1.1.0 + dependencies: + ret: registry.nlark.com/ret/0.1.15 + dev: true + + registry.nlark.com/safer-buffer/2.1.2: + resolution: {integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safer-buffer/download/safer-buffer-2.1.2.tgz} + name: safer-buffer + version: 2.1.2 + dev: true + + registry.nlark.com/sax/1.2.4: + resolution: {integrity: sha1-KBYjTiN4vdxOU1T6tcqold9xANk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sax/download/sax-1.2.4.tgz} + name: sax + version: 1.2.4 + dev: true + + registry.nlark.com/schema-utils/1.0.0: + resolution: {integrity: sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/schema-utils/download/schema-utils-1.0.0.tgz} + name: schema-utils + version: 1.0.0 + engines: {node: '>= 4'} + dependencies: + ajv: registry.npmmirror.com/ajv/6.12.6 + ajv-errors: registry.nlark.com/ajv-errors/1.0.1_ajv@6.12.6 + ajv-keywords: registry.nlark.com/ajv-keywords/3.5.2_ajv@6.12.6 + dev: true + + registry.nlark.com/schema-utils/2.7.1: + resolution: {integrity: sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/schema-utils/download/schema-utils-2.7.1.tgz} + name: schema-utils + version: 2.7.1 + engines: {node: '>= 8.9.0'} + dependencies: + '@types/json-schema': registry.nlark.com/@types/json-schema/7.0.9 + ajv: registry.npmmirror.com/ajv/6.12.6 + ajv-keywords: registry.nlark.com/ajv-keywords/3.5.2_ajv@6.12.6 + dev: true + + registry.nlark.com/select-hose/2.0.0: + resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/select-hose/download/select-hose-2.0.0.tgz} + name: select-hose + version: 2.0.0 + dev: true + + registry.nlark.com/selfsigned/1.10.11: + resolution: {integrity: sha1-JJKc2Qb+D0S20B+yOZmnOVN6y+k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/selfsigned/download/selfsigned-1.10.11.tgz} + name: selfsigned + version: 1.10.11 + dependencies: + node-forge: registry.nlark.com/node-forge/0.10.0 + dev: true + + registry.nlark.com/semver/5.7.1: + resolution: {integrity: sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1631603498811&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz} + name: semver + version: 5.7.1 + hasBin: true + dev: true + + registry.nlark.com/semver/6.3.0: + resolution: {integrity: sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1631603498811&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz} + name: semver + version: 6.3.0 + hasBin: true + dev: true + + registry.nlark.com/semver/7.0.0: + resolution: {integrity: sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-7.0.0.tgz?cache=0&sync_timestamp=1631603498811&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-7.0.0.tgz} + name: semver + version: 7.0.0 + hasBin: true + dev: true + + registry.nlark.com/serialize-javascript/4.0.0: + resolution: {integrity: sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/serialize-javascript/download/serialize-javascript-4.0.0.tgz} + name: serialize-javascript + version: 4.0.0 + dependencies: + randombytes: registry.nlark.com/randombytes/2.1.0 + dev: true + + registry.nlark.com/serve-index/1.9.1: + resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/serve-index/download/serve-index-1.9.1.tgz} + name: serve-index + version: 1.9.1 + engines: {node: '>= 0.8.0'} + dependencies: + accepts: registry.nlark.com/accepts/1.3.7 + batch: registry.npmmirror.com/batch/0.6.1 + debug: registry.npmmirror.com/debug/2.6.9 + escape-html: registry.nlark.com/escape-html/1.0.3 + http-errors: registry.nlark.com/http-errors/1.6.3 + mime-types: registry.npmmirror.com/mime-types/2.1.34 + parseurl: registry.nlark.com/parseurl/1.3.3 + dev: true + + registry.nlark.com/serve-static/1.13.2: + resolution: {integrity: sha1-CV6Ecv1bRiN9tQzkhqQ/S4bGzsE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/serve-static/download/serve-static-1.13.2.tgz} + name: serve-static + version: 1.13.2 + engines: {node: '>= 0.8.0'} + dependencies: + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + parseurl: registry.nlark.com/parseurl/1.3.3 + send: registry.npmmirror.com/send/0.16.2 + dev: true + + registry.nlark.com/serve-static/1.14.1: + resolution: {integrity: sha1-Zm5jbcTwEPfvKZcKiKZ0MgiYsvk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/serve-static/download/serve-static-1.14.1.tgz} + name: serve-static + version: 1.14.1 + engines: {node: '>= 0.8.0'} + dependencies: + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + parseurl: registry.nlark.com/parseurl/1.3.3 + send: registry.npmmirror.com/send/0.17.1 + dev: true + + registry.nlark.com/set-blocking/2.0.0: + resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/set-blocking/download/set-blocking-2.0.0.tgz} + name: set-blocking + version: 2.0.0 + dev: true + + registry.nlark.com/set-value/2.0.1: + resolution: {integrity: sha1-oY1AUw5vB95CKMfe/kInr4ytAFs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/set-value/download/set-value-2.0.1.tgz} + name: set-value + version: 2.0.1 + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + is-extendable: registry.nlark.com/is-extendable/0.1.1 + is-plain-object: registry.nlark.com/is-plain-object/2.0.4 + split-string: registry.nlark.com/split-string/3.1.0 + dev: true + + registry.nlark.com/setimmediate/1.0.5: + resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/setimmediate/download/setimmediate-1.0.5.tgz} + name: setimmediate + version: 1.0.5 + dev: true + + registry.nlark.com/setprototypeof/1.1.0: + resolution: {integrity: sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/setprototypeof/download/setprototypeof-1.1.0.tgz} + name: setprototypeof + version: 1.1.0 + dev: true + + registry.nlark.com/setprototypeof/1.1.1: + resolution: {integrity: sha1-fpWsskqpL1iF4KvvW6ExMw1K5oM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/setprototypeof/download/setprototypeof-1.1.1.tgz} + name: setprototypeof + version: 1.1.1 + dev: true + + registry.nlark.com/sha.js/2.4.11: + resolution: {integrity: sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sha.js/download/sha.js-2.4.11.tgz} + name: sha.js + version: 2.4.11 + hasBin: true + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/shallow-clone/3.0.1: + resolution: {integrity: sha1-jymBrZJTH1UDWwH7IwdppA4C76M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shallow-clone/download/shallow-clone-3.0.1.tgz} + name: shallow-clone + version: 3.0.1 + engines: {node: '>=8'} + dependencies: + kind-of: registry.nlark.com/kind-of/6.0.3 + dev: true + + registry.nlark.com/shebang-command/1.2.0: + resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shebang-command/download/shebang-command-1.2.0.tgz} + name: shebang-command + version: 1.2.0 + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: registry.nlark.com/shebang-regex/1.0.0 + dev: true + + registry.nlark.com/shebang-command/2.0.0: + resolution: {integrity: sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz} + name: shebang-command + version: 2.0.0 + engines: {node: '>=8'} + dependencies: + shebang-regex: registry.nlark.com/shebang-regex/3.0.0 + dev: true + + registry.nlark.com/shebang-regex/1.0.0: + resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shebang-regex/download/shebang-regex-1.0.0.tgz} + name: shebang-regex + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/shebang-regex/3.0.0: + resolution: {integrity: sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz} + name: shebang-regex + version: 3.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/shellwords/0.1.1: + resolution: {integrity: sha1-1rkYHBpI05cyTISHHvvPxz/AZUs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shellwords/download/shellwords-0.1.1.tgz} + name: shellwords + version: 0.1.1 + dev: true + + registry.nlark.com/side-channel/1.0.4: + resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/side-channel/download/side-channel-1.0.4.tgz} + name: side-channel + version: 1.0.4 + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 + object-inspect: registry.nlark.com/object-inspect/1.11.0 + + registry.nlark.com/sigmund/1.0.1: + resolution: {integrity: sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sigmund/download/sigmund-1.0.1.tgz} + name: sigmund + version: 1.0.1 + dev: true + + registry.nlark.com/sisteransi/1.0.5: + resolution: {integrity: sha1-E01oEpd1ZDfMBcoBNw06elcQde0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sisteransi/download/sisteransi-1.0.5.tgz} + name: sisteransi + version: 1.0.5 + dev: true + + registry.nlark.com/slash/1.0.0: + resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slash/download/slash-1.0.0.tgz} + name: slash + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/slash/2.0.0: + resolution: {integrity: sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slash/download/slash-2.0.0.tgz} + name: slash + version: 2.0.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/slash/3.0.0: + resolution: {integrity: sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slash/download/slash-3.0.0.tgz} + name: slash + version: 3.0.0 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/slice-ansi/2.1.0: + resolution: {integrity: sha1-ys12k0YaY3pXiNkqfdT7oGjoFjY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-2.1.0.tgz} + name: slice-ansi + version: 2.1.0 + engines: {node: '>=6'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/3.2.1 + astral-regex: registry.nlark.com/astral-regex/1.0.0 + is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/2.0.0 + dev: true + + registry.nlark.com/snapdragon-node/2.1.1: + resolution: {integrity: sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/snapdragon-node/download/snapdragon-node-2.1.1.tgz} + name: snapdragon-node + version: 2.1.1 + engines: {node: '>=0.10.0'} + dependencies: + define-property: registry.nlark.com/define-property/1.0.0 + isobject: registry.nlark.com/isobject/3.0.1 + snapdragon-util: registry.nlark.com/snapdragon-util/3.0.1 + dev: true + + registry.nlark.com/snapdragon-util/3.0.1: + resolution: {integrity: sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/snapdragon-util/download/snapdragon-util-3.0.1.tgz} + name: snapdragon-util + version: 3.0.1 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/snapdragon/0.8.2: + resolution: {integrity: sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/snapdragon/download/snapdragon-0.8.2.tgz} + name: snapdragon + version: 0.8.2 + engines: {node: '>=0.10.0'} + dependencies: + base: registry.nlark.com/base/0.11.2 + debug: registry.npmmirror.com/debug/2.6.9 + define-property: registry.nlark.com/define-property/0.2.5 + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + map-cache: registry.nlark.com/map-cache/0.2.2 + source-map: registry.nlark.com/source-map/0.5.7 + source-map-resolve: registry.nlark.com/source-map-resolve/0.5.3 + use: registry.npmmirror.com/use/3.1.1 + dev: true + + registry.nlark.com/sockjs-client/1.5.2: + resolution: {integrity: sha1-S8SMLanOR2nxnccjOWtQ9cEjMKM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sockjs-client/download/sockjs-client-1.5.2.tgz} + name: sockjs-client + version: 1.5.2 + dependencies: + debug: registry.npmmirror.com/debug/3.2.7 + eventsource: registry.nlark.com/eventsource/1.1.0 + faye-websocket: registry.nlark.com/faye-websocket/0.11.4 + inherits: registry.nlark.com/inherits/2.0.4 + json3: registry.npmmirror.com/json3/3.3.3 + url-parse: registry.nlark.com/url-parse/1.5.3 + dev: true + + registry.nlark.com/sockjs/0.3.21: + resolution: {integrity: sha1-s0/7mOeWkwtgoM+hGQTWozmn1Bc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sockjs/download/sockjs-0.3.21.tgz} + name: sockjs + version: 0.3.21 + dependencies: + faye-websocket: registry.nlark.com/faye-websocket/0.11.4 + uuid: registry.npmmirror.com/uuid/3.4.0 + websocket-driver: registry.nlark.com/websocket-driver/0.7.4 + dev: true + + registry.nlark.com/sort-keys/1.1.2: + resolution: {integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sort-keys/download/sort-keys-1.1.2.tgz} + name: sort-keys + version: 1.1.2 + engines: {node: '>=0.10.0'} + dependencies: + is-plain-obj: registry.nlark.com/is-plain-obj/1.1.0 + dev: true + + registry.nlark.com/source-list-map/2.0.1: + resolution: {integrity: sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-list-map/download/source-list-map-2.0.1.tgz} + name: source-list-map + version: 2.0.1 + dev: true + + registry.nlark.com/source-map-resolve/0.5.3: + resolution: {integrity: sha1-GQhmvs51U+H48mei7oLGBrVQmho=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map-resolve/download/source-map-resolve-0.5.3.tgz} + name: source-map-resolve + version: 0.5.3 + dependencies: + atob: registry.nlark.com/atob/2.1.2 + decode-uri-component: registry.nlark.com/decode-uri-component/0.2.0 + resolve-url: registry.npmmirror.com/resolve-url/0.2.1 + source-map-url: registry.nlark.com/source-map-url/0.4.1 + urix: registry.npmmirror.com/urix/0.1.0 + dev: true + + registry.nlark.com/source-map-support/0.5.20: + resolution: {integrity: sha1-EhZgifj15ejFaSazd2Mzkt0stsk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map-support/download/source-map-support-0.5.20.tgz} + name: source-map-support + version: 0.5.20 + dependencies: + buffer-from: registry.nlark.com/buffer-from/1.1.2 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.nlark.com/source-map-url/0.4.1: + resolution: {integrity: sha1-CvZmBadFpaL5HPG7+KevvCg97FY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map-url/download/source-map-url-0.4.1.tgz} + name: source-map-url + version: 0.4.1 + dev: true + + registry.nlark.com/source-map/0.5.7: + resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz} + name: source-map + version: 0.5.7 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/source-map/0.6.1: + resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz} + name: source-map + version: 0.6.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/spdx-correct/3.1.1: + resolution: {integrity: sha1-3s6BrJweZxPl99G28X1Gj6U9iak=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz} + name: spdx-correct + version: 3.1.1 + dependencies: + spdx-expression-parse: registry.nlark.com/spdx-expression-parse/3.0.1 + spdx-license-ids: registry.nlark.com/spdx-license-ids/3.0.10 + dev: true + + registry.nlark.com/spdx-exceptions/2.3.0: + resolution: {integrity: sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz} + name: spdx-exceptions + version: 2.3.0 + dev: true + + registry.nlark.com/spdx-expression-parse/3.0.1: + resolution: {integrity: sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz} + name: spdx-expression-parse + version: 3.0.1 + dependencies: + spdx-exceptions: registry.nlark.com/spdx-exceptions/2.3.0 + spdx-license-ids: registry.nlark.com/spdx-license-ids/3.0.10 + dev: true + + registry.nlark.com/spdx-license-ids/3.0.10: + resolution: {integrity: sha1-DZvszN5wA9bGWNSH3UijLwvzAUs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.10.tgz} + name: spdx-license-ids + version: 3.0.10 + dev: true + + registry.nlark.com/spdy-transport/3.0.0_supports-color@6.1.0: + resolution: {integrity: sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdy-transport/download/spdy-transport-3.0.0.tgz} + id: registry.nlark.com/spdy-transport/3.0.0 + name: spdy-transport + version: 3.0.0 + dependencies: + debug: registry.npmmirror.com/debug/4.3.2_supports-color@6.1.0 + detect-node: registry.nlark.com/detect-node/2.1.0 + hpack.js: registry.npmmirror.com/hpack.js/2.1.6 + obuf: registry.nlark.com/obuf/1.1.2 + readable-stream: registry.nlark.com/readable-stream/3.6.0 + wbuf: registry.nlark.com/wbuf/1.7.3 + transitivePeerDependencies: + - supports-color + dev: true + + registry.nlark.com/spdy/4.0.2_supports-color@6.1.0: + resolution: {integrity: sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdy/download/spdy-4.0.2.tgz} + id: registry.nlark.com/spdy/4.0.2 + name: spdy + version: 4.0.2 + engines: {node: '>=6.0.0'} + dependencies: + debug: registry.npmmirror.com/debug/4.3.2_supports-color@6.1.0 + handle-thing: registry.nlark.com/handle-thing/2.0.1 + http-deceiver: registry.nlark.com/http-deceiver/1.2.7 + select-hose: registry.nlark.com/select-hose/2.0.0 + spdy-transport: registry.nlark.com/spdy-transport/3.0.0_supports-color@6.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.nlark.com/split-string/3.1.0: + resolution: {integrity: sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/split-string/download/split-string-3.1.0.tgz} + name: split-string + version: 3.1.0 + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: registry.nlark.com/extend-shallow/3.0.2 + dev: true + + registry.nlark.com/sprintf-js/1.0.3: + resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz} + name: sprintf-js + version: 1.0.3 + dev: true + + registry.nlark.com/sshpk/1.16.1: + resolution: {integrity: sha1-+2YcC+8ps520B2nuOfpwCT1vaHc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sshpk/download/sshpk-1.16.1.tgz} + name: sshpk + version: 1.16.1 + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + asn1: registry.npmmirror.com/asn1/0.2.6 + assert-plus: registry.nlark.com/assert-plus/1.0.0 + bcrypt-pbkdf: registry.nlark.com/bcrypt-pbkdf/1.0.2 + dashdash: registry.nlark.com/dashdash/1.14.1 + ecc-jsbn: registry.nlark.com/ecc-jsbn/0.1.2 + getpass: registry.nlark.com/getpass/0.1.7 + jsbn: registry.nlark.com/jsbn/0.1.1 + safer-buffer: registry.nlark.com/safer-buffer/2.1.2 + tweetnacl: registry.nlark.com/tweetnacl/0.14.5 + dev: true + + registry.nlark.com/ssri/6.0.2: + resolution: {integrity: sha1-FXk5E08gRk5zAd26PpD/qPdyisU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ssri/download/ssri-6.0.2.tgz} + name: ssri + version: 6.0.2 + dependencies: + figgy-pudding: registry.nlark.com/figgy-pudding/3.5.2 + dev: true + + registry.nlark.com/ssri/7.1.1: + resolution: {integrity: sha1-M+RPiWqWcVjjxjRo5H7EZhO5W18=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ssri/download/ssri-7.1.1.tgz} + name: ssri + version: 7.1.1 + engines: {node: '>= 8'} + dependencies: + figgy-pudding: registry.nlark.com/figgy-pudding/3.5.2 + minipass: registry.nlark.com/minipass/3.1.5 + dev: true + + registry.nlark.com/stack-utils/1.0.5: + resolution: {integrity: sha1-oZsLAZR+ACnI5FHV1hpJj1uxRxs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stack-utils/download/stack-utils-1.0.5.tgz} + name: stack-utils + version: 1.0.5 + engines: {node: '>=8'} + dependencies: + escape-string-regexp: registry.nlark.com/escape-string-regexp/2.0.0 + dev: true + + registry.nlark.com/stackframe/1.2.0: + resolution: {integrity: sha1-UkKUktY8YuuYmATBFVLj0i53kwM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stackframe/download/stackframe-1.2.0.tgz} + name: stackframe + version: 1.2.0 + dev: true + + registry.nlark.com/static-extend/0.1.2: + resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/static-extend/download/static-extend-0.1.2.tgz} + name: static-extend + version: 0.1.2 + engines: {node: '>=0.10.0'} + dependencies: + define-property: registry.nlark.com/define-property/0.2.5 + object-copy: registry.nlark.com/object-copy/0.1.0 + dev: true + + registry.nlark.com/statuses/1.3.1: + resolution: {integrity: sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/statuses/download/statuses-1.3.1.tgz} + name: statuses + version: 1.3.1 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/statuses/1.4.0: + resolution: {integrity: sha1-u3PURtonlhBu/MG2AaJT1sRr0Ic=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/statuses/download/statuses-1.4.0.tgz} + name: statuses + version: 1.4.0 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/statuses/1.5.0: + resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/statuses/download/statuses-1.5.0.tgz} + name: statuses + version: 1.5.0 + engines: {node: '>= 0.6'} + dev: true + + registry.nlark.com/stealthy-require/1.1.1: + resolution: {integrity: sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz} + name: stealthy-require + version: 1.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/stream-browserify/2.0.2: + resolution: {integrity: sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stream-browserify/download/stream-browserify-2.0.2.tgz} + name: stream-browserify + version: 2.0.2 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.nlark.com/stream-each/1.2.3: + resolution: {integrity: sha1-6+J6DDibBPvMIzZClS4Qcxr6m64=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stream-each/download/stream-each-1.2.3.tgz} + name: stream-each + version: 1.2.3 + dependencies: + end-of-stream: registry.nlark.com/end-of-stream/1.4.4 + stream-shift: registry.nlark.com/stream-shift/1.0.1 + dev: true + + registry.nlark.com/stream-http/2.8.3: + resolution: {integrity: sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stream-http/download/stream-http-2.8.3.tgz} + name: stream-http + version: 2.8.3 + dependencies: + builtin-status-codes: registry.npmmirror.com/builtin-status-codes/3.0.0 + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + to-arraybuffer: registry.nlark.com/to-arraybuffer/1.0.1 + xtend: registry.nlark.com/xtend/4.0.2 + dev: true + + registry.nlark.com/stream-shift/1.0.1: + resolution: {integrity: sha1-1wiCgVWasneEJCebCHfaPDktWj0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stream-shift/download/stream-shift-1.0.1.tgz} + name: stream-shift + version: 1.0.1 + dev: true + + registry.nlark.com/strict-uri-encode/1.1.0: + resolution: {integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz} + name: strict-uri-encode + version: 1.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/string-length/2.0.0: + resolution: {integrity: sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string-length/download/string-length-2.0.0.tgz} + name: string-length + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + astral-regex: registry.nlark.com/astral-regex/1.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/4.0.0 + dev: true + + registry.nlark.com/string-length/3.1.0: + resolution: {integrity: sha1-EH74wjRW4Yeoq9SmEWL/SsbiWDc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string-length/download/string-length-3.1.0.tgz} + name: string-length + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + astral-regex: registry.nlark.com/astral-regex/1.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + dev: true + + registry.nlark.com/string.prototype.trimend/1.0.4: + resolution: {integrity: sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz} + name: string.prototype.trimend + version: 1.0.4 + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + dev: true + + registry.nlark.com/string.prototype.trimstart/1.0.4: + resolution: {integrity: sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz} + name: string.prototype.trimstart + version: 1.0.4 + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + dev: true + + registry.nlark.com/string_decoder/1.1.1: + resolution: {integrity: sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string_decoder/download/string_decoder-1.1.1.tgz} + name: string_decoder + version: 1.1.1 + dependencies: + safe-buffer: registry.nlark.com/safe-buffer/5.1.2 + dev: true + + registry.nlark.com/string_decoder/1.3.0: + resolution: {integrity: sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string_decoder/download/string_decoder-1.3.0.tgz} + name: string_decoder + version: 1.3.0 + dependencies: + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/strip-bom/2.0.0: + resolution: {integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-bom/download/strip-bom-2.0.0.tgz} + name: strip-bom + version: 2.0.0 + engines: {node: '>=0.10.0'} + dependencies: + is-utf8: registry.nlark.com/is-utf8/0.2.1 + dev: true + + registry.nlark.com/strip-bom/3.0.0: + resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz} + name: strip-bom + version: 3.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/strip-final-newline/2.0.0: + resolution: {integrity: sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz} + name: strip-final-newline + version: 2.0.0 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/strip-indent/2.0.0: + resolution: {integrity: sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-indent/download/strip-indent-2.0.0.tgz} + name: strip-indent + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/strip-json-comments/2.0.1: + resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz} + name: strip-json-comments + version: 2.0.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/strip-json-comments/3.1.1: + resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz} + name: strip-json-comments + version: 3.1.1 + engines: {node: '>=8'} + dev: true + + registry.nlark.com/stylehacks/4.0.3: + resolution: {integrity: sha1-Zxj8r00eB9ihMYaQiB6NlnJqcdU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/stylehacks/download/stylehacks-4.0.3.tgz} + name: stylehacks + version: 4.0.3 + engines: {node: '>=6.9.0'} + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/3.1.2 + dev: true + + registry.nlark.com/supports-color/2.0.0: + resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz} + name: supports-color + version: 2.0.0 + engines: {node: '>=0.8.0'} + dev: true + + registry.nlark.com/supports-color/3.2.3: + resolution: {integrity: sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-3.2.3.tgz} + name: supports-color + version: 3.2.3 + engines: {node: '>=0.8.0'} + dependencies: + has-flag: registry.nlark.com/has-flag/1.0.0 + dev: true + + registry.nlark.com/supports-color/4.5.0: + resolution: {integrity: sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-4.5.0.tgz} + name: supports-color + version: 4.5.0 + engines: {node: '>=4'} + dependencies: + has-flag: registry.nlark.com/has-flag/2.0.0 + dev: true + + registry.nlark.com/supports-color/5.5.0: + resolution: {integrity: sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz} + name: supports-color + version: 5.5.0 + engines: {node: '>=4'} + dependencies: + has-flag: registry.nlark.com/has-flag/3.0.0 + dev: true + + registry.nlark.com/supports-color/6.1.0: + resolution: {integrity: sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-6.1.0.tgz} + name: supports-color + version: 6.1.0 + engines: {node: '>=6'} + dependencies: + has-flag: registry.nlark.com/has-flag/3.0.0 + dev: true + + registry.nlark.com/supports-color/7.2.0: + resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz} + name: supports-color + version: 7.2.0 + engines: {node: '>=8'} + dependencies: + has-flag: registry.nlark.com/has-flag/4.0.0 + + registry.nlark.com/svg-baker/1.7.0: + resolution: {integrity: sha1-g2f3jYdVUMUv5HVvcwPVxdfC6ac=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/svg-baker/download/svg-baker-1.7.0.tgz} + name: svg-baker + version: 1.7.0 + dependencies: + bluebird: registry.nlark.com/bluebird/3.7.2 + clone: registry.nlark.com/clone/2.1.2 + he: registry.nlark.com/he/1.2.0 + image-size: registry.nlark.com/image-size/0.5.5 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + merge-options: registry.nlark.com/merge-options/1.0.1 + micromatch: registry.nlark.com/micromatch/3.1.0 + postcss: registry.npmmirror.com/postcss/5.2.18 + postcss-prefix-selector: registry.npmmirror.com/postcss-prefix-selector/1.13.0 + posthtml-rename-id: registry.npmmirror.com/posthtml-rename-id/1.0.12 + posthtml-svg-mode: registry.npmmirror.com/posthtml-svg-mode/1.0.3 + query-string: registry.nlark.com/query-string/4.3.4 + traverse: registry.npmmirror.com/traverse/0.6.6 + dev: true + + registry.nlark.com/svg-tags/1.0.0: + resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz} + name: svg-tags + version: 1.0.0 + dev: true + + registry.nlark.com/symbol-tree/3.2.4: + resolution: {integrity: sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/symbol-tree/download/symbol-tree-3.2.4.tgz} + name: symbol-tree + version: 3.2.4 + dev: true + + registry.nlark.com/tapable/1.1.3: + resolution: {integrity: sha1-ofzMBrWNth/XpF2i2kT186Pme6I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tapable/download/tapable-1.1.3.tgz} + name: tapable + version: 1.1.3 + engines: {node: '>=6'} + dev: true + + registry.nlark.com/test-exclude/4.2.3: + resolution: {integrity: sha1-qaXmRHTkOYM5JFoKdprXwvSpfCA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/test-exclude/download/test-exclude-4.2.3.tgz} + name: test-exclude + version: 4.2.3 + dependencies: + arrify: registry.nlark.com/arrify/1.0.1 + micromatch: registry.nlark.com/micromatch/2.3.11 + object-assign: registry.nlark.com/object-assign/4.1.1 + read-pkg-up: registry.npmmirror.com/read-pkg-up/1.0.1 + require-main-filename: registry.nlark.com/require-main-filename/1.0.1 + dev: true + + registry.nlark.com/test-exclude/5.2.3: + resolution: {integrity: sha1-w9Ph4xHrfuQF4JLawQrv0JCR6sA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/test-exclude/download/test-exclude-5.2.3.tgz} + name: test-exclude + version: 5.2.3 + engines: {node: '>=6'} + dependencies: + glob: registry.npmmirror.com/glob/7.2.0 + minimatch: registry.nlark.com/minimatch/3.0.4 + read-pkg-up: registry.npmmirror.com/read-pkg-up/4.0.0 + require-main-filename: registry.nlark.com/require-main-filename/2.0.0 + dev: true + + registry.nlark.com/text-table/0.2.0: + resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz} + name: text-table + version: 0.2.0 + dev: true + + registry.nlark.com/thread-loader/2.1.3_webpack@4.46.0: + resolution: {integrity: sha1-y9LBOfwrLebp0o9iKGq3cMGsvdo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/thread-loader/download/thread-loader-2.1.3.tgz} + id: registry.nlark.com/thread-loader/2.1.3 + name: thread-loader + version: 2.1.3 + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 + dependencies: + loader-runner: registry.nlark.com/loader-runner/2.4.0 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + neo-async: registry.nlark.com/neo-async/2.6.2 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.nlark.com/throat/4.1.0: + resolution: {integrity: sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/throat/download/throat-4.1.0.tgz} + name: throat + version: 4.1.0 + dev: true + + registry.nlark.com/through/2.3.8: + resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/through/download/through-2.3.8.tgz} + name: through + version: 2.3.8 + dev: true + + registry.nlark.com/through2/2.0.5: + resolution: {integrity: sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/through2/download/through2-2.0.5.tgz} + name: through2 + version: 2.0.5 + dependencies: + readable-stream: registry.nlark.com/readable-stream/2.3.7 + xtend: registry.nlark.com/xtend/4.0.2 + dev: true + + registry.nlark.com/thunky/1.1.0: + resolution: {integrity: sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/thunky/download/thunky-1.1.0.tgz} + name: thunky + version: 1.1.0 + dev: true + + registry.nlark.com/timers-browserify/2.0.12: + resolution: {integrity: sha1-RKRcEfv0B/NPl7zNFXfGUjYbAO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/timers-browserify/download/timers-browserify-2.0.12.tgz} + name: timers-browserify + version: 2.0.12 + engines: {node: '>=0.6.0'} + dependencies: + setimmediate: registry.nlark.com/setimmediate/1.0.5 + dev: true + + registry.nlark.com/timsort/0.3.0: + resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/timsort/download/timsort-0.3.0.tgz} + name: timsort + version: 0.3.0 + dev: true + + registry.nlark.com/tmp/0.0.33: + resolution: {integrity: sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz} + name: tmp + version: 0.0.33 + engines: {node: '>=0.6.0'} + dependencies: + os-tmpdir: registry.nlark.com/os-tmpdir/1.0.2 + dev: true + + registry.nlark.com/tmpl/1.0.5: + resolution: {integrity: sha1-hoPguQK7nCDE9ybjwLafNlGMB8w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tmpl/download/tmpl-1.0.5.tgz} + name: tmpl + version: 1.0.5 + dev: true + + registry.nlark.com/to-arraybuffer/1.0.1: + resolution: {integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz} + name: to-arraybuffer + version: 1.0.1 + dev: true + + registry.nlark.com/to-fast-properties/1.0.3: + resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz} + name: to-fast-properties + version: 1.0.3 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/to-fast-properties/2.0.0: + resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz} + name: to-fast-properties + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/to-object-path/0.3.0: + resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-object-path/download/to-object-path-0.3.0.tgz} + name: to-object-path + version: 0.3.0 + engines: {node: '>=0.10.0'} + dependencies: + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.nlark.com/to-regex-range/2.1.1: + resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-regex-range/download/to-regex-range-2.1.1.tgz} + name: to-regex-range + version: 2.1.1 + engines: {node: '>=0.10.0'} + dependencies: + is-number: registry.nlark.com/is-number/3.0.0 + repeat-string: registry.nlark.com/repeat-string/1.6.1 + dev: true + + registry.nlark.com/to-regex-range/5.0.1: + resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz} + name: to-regex-range + version: 5.0.1 + engines: {node: '>=8.0'} + dependencies: + is-number: registry.nlark.com/is-number/7.0.0 + dev: true + + registry.nlark.com/to-regex/3.0.2: + resolution: {integrity: sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-regex/download/to-regex-3.0.2.tgz} + name: to-regex + version: 3.0.2 + engines: {node: '>=0.10.0'} + dependencies: + define-property: registry.nlark.com/define-property/2.0.2 + extend-shallow: registry.nlark.com/extend-shallow/3.0.2 + regex-not: registry.nlark.com/regex-not/1.0.2 + safe-regex: registry.nlark.com/safe-regex/1.1.0 + dev: true + + registry.nlark.com/toposort/1.0.7: + resolution: {integrity: sha1-LmhELZ9k7HILjMieZEOsbKqVACk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/toposort/download/toposort-1.0.7.tgz} + name: toposort + version: 1.0.7 + dev: true + + registry.nlark.com/tough-cookie/2.5.0: + resolution: {integrity: sha1-zZ+yoKodWhK0c72fuW+j3P9lreI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tough-cookie/download/tough-cookie-2.5.0.tgz} + name: tough-cookie + version: 2.5.0 + engines: {node: '>=0.8'} + dependencies: + psl: registry.nlark.com/psl/1.8.0 + punycode: registry.nlark.com/punycode/2.1.1 + dev: true + + registry.nlark.com/tough-cookie/3.0.1: + resolution: {integrity: sha1-nfT1fnOcJpMKAYGEiH9K233Kc7I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tough-cookie/download/tough-cookie-3.0.1.tgz} + name: tough-cookie + version: 3.0.1 + engines: {node: '>=6'} + dependencies: + ip-regex: registry.nlark.com/ip-regex/2.1.0 + psl: registry.nlark.com/psl/1.8.0 + punycode: registry.nlark.com/punycode/2.1.1 + dev: true + + registry.nlark.com/tryer/1.0.1: + resolution: {integrity: sha1-8shUBoALmw90yfdGW4HqrSQSUvg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tryer/download/tryer-1.0.1.tgz} + name: tryer + version: 1.0.1 + dev: true + + registry.nlark.com/tslib/1.14.1: + resolution: {integrity: sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz?cache=0&sync_timestamp=1631603615234&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftslib%2Fdownload%2Ftslib-1.14.1.tgz} + name: tslib + version: 1.14.1 + dev: true + + registry.nlark.com/tunnel-agent/0.6.0: + resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tunnel-agent/download/tunnel-agent-0.6.0.tgz} + name: tunnel-agent + version: 0.6.0 + dependencies: + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + dev: true + + registry.nlark.com/tweetnacl/0.14.5: + resolution: {integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tweetnacl/download/tweetnacl-0.14.5.tgz} + name: tweetnacl + version: 0.14.5 + dev: true + + registry.nlark.com/type-check/0.3.2: + resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/type-check/download/type-check-0.3.2.tgz} + name: type-check + version: 0.3.2 + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: registry.nlark.com/prelude-ls/1.1.2 + dev: true + + registry.nlark.com/type-is/1.6.18: + resolution: {integrity: sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/type-is/download/type-is-1.6.18.tgz} + name: type-is + version: 1.6.18 + engines: {node: '>= 0.6'} + dependencies: + media-typer: registry.npmmirror.com/media-typer/0.3.0 + mime-types: registry.npmmirror.com/mime-types/2.1.34 + dev: true + + registry.nlark.com/typedarray/0.0.6: + resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/typedarray/download/typedarray-0.0.6.tgz} + name: typedarray + version: 0.0.6 + dev: true + + registry.nlark.com/unbox-primitive/1.0.1: + resolution: {integrity: sha1-CF4hViXsMWJXTciFmr7nilmxRHE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz} + name: unbox-primitive + version: 1.0.1 + dependencies: + function-bind: registry.nlark.com/function-bind/1.1.1 + has-bigints: registry.nlark.com/has-bigints/1.0.1 + has-symbols: registry.nlark.com/has-symbols/1.0.2 + which-boxed-primitive: registry.nlark.com/which-boxed-primitive/1.0.2 + dev: true + + registry.nlark.com/unicode-canonical-property-names-ecmascript/2.0.0: + resolution: {integrity: sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-2.0.0.tgz} + name: unicode-canonical-property-names-ecmascript + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/unicode-match-property-ecmascript/2.0.0: + resolution: {integrity: sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-2.0.0.tgz} + name: unicode-match-property-ecmascript + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + unicode-canonical-property-names-ecmascript: registry.nlark.com/unicode-canonical-property-names-ecmascript/2.0.0 + unicode-property-aliases-ecmascript: registry.nlark.com/unicode-property-aliases-ecmascript/2.0.0 + dev: true + + registry.nlark.com/unicode-match-property-value-ecmascript/2.0.0: + resolution: {integrity: sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-2.0.0.tgz} + name: unicode-match-property-value-ecmascript + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/unicode-property-aliases-ecmascript/2.0.0: + resolution: {integrity: sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-2.0.0.tgz} + name: unicode-property-aliases-ecmascript + version: 2.0.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/union-value/1.0.1: + resolution: {integrity: sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/union-value/download/union-value-1.0.1.tgz} + name: union-value + version: 1.0.1 + engines: {node: '>=0.10.0'} + dependencies: + arr-union: registry.nlark.com/arr-union/3.1.0 + get-value: registry.nlark.com/get-value/2.0.6 + is-extendable: registry.nlark.com/is-extendable/0.1.1 + set-value: registry.nlark.com/set-value/2.0.1 + dev: true + + registry.nlark.com/uniq/1.0.1: + resolution: {integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/uniq/download/uniq-1.0.1.tgz} + name: uniq + version: 1.0.1 + dev: true + + registry.nlark.com/uniqs/2.0.0: + resolution: {integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/uniqs/download/uniqs-2.0.0.tgz} + name: uniqs + version: 2.0.0 + dev: true + + registry.nlark.com/unique-filename/1.1.1: + resolution: {integrity: sha1-HWl2k2mtoFgxA6HmrodoG1ZXMjA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unique-filename/download/unique-filename-1.1.1.tgz} + name: unique-filename + version: 1.1.1 + dependencies: + unique-slug: registry.nlark.com/unique-slug/2.0.2 + dev: true + + registry.nlark.com/unique-slug/2.0.2: + resolution: {integrity: sha1-uqvOkQg/xk6UWw861hPiZPfNTmw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unique-slug/download/unique-slug-2.0.2.tgz} + name: unique-slug + version: 2.0.2 + dependencies: + imurmurhash: registry.nlark.com/imurmurhash/0.1.4 + dev: true + + registry.nlark.com/universalify/0.1.2: + resolution: {integrity: sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/universalify/download/universalify-0.1.2.tgz} + name: universalify + version: 0.1.2 + engines: {node: '>= 4.0.0'} + dev: true + + registry.nlark.com/unpipe/1.0.0: + resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unpipe/download/unpipe-1.0.0.tgz} + name: unpipe + version: 1.0.0 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/unquote/1.1.1: + resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unquote/download/unquote-1.1.1.tgz} + name: unquote + version: 1.1.1 + dev: true + + registry.nlark.com/unset-value/1.0.0: + resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unset-value/download/unset-value-1.0.0.tgz} + name: unset-value + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + has-value: registry.nlark.com/has-value/0.3.1 + isobject: registry.nlark.com/isobject/3.0.1 + dev: true + + registry.nlark.com/upath/1.2.0: + resolution: {integrity: sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/upath/download/upath-1.2.0.tgz} + name: upath + version: 1.2.0 + engines: {node: '>=4'} + dev: true + + registry.nlark.com/upper-case/1.1.3: + resolution: {integrity: sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/upper-case/download/upper-case-1.1.3.tgz} + name: upper-case + version: 1.1.3 + dev: true + + registry.nlark.com/uppercamelcase/1.1.0: + resolution: {integrity: sha1-Mk2YprOvx+iolT4QZBUJsOTiP5c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/uppercamelcase/download/uppercamelcase-1.1.0.tgz} + name: uppercamelcase + version: 1.1.0 + dependencies: + camelcase: registry.nlark.com/camelcase/1.2.1 + dev: false + + registry.nlark.com/uri-js/4.4.1: + resolution: {integrity: sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/uri-js/download/uri-js-4.4.1.tgz} + name: uri-js + version: 4.4.1 + dependencies: + punycode: registry.nlark.com/punycode/2.1.1 + dev: true + + registry.nlark.com/url-parse/1.5.3: + resolution: {integrity: sha1-ccEwPTj7Zjmt4YPCmSyMwGht+GI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/url-parse/download/url-parse-1.5.3.tgz} + name: url-parse + version: 1.5.3 + dependencies: + querystringify: registry.nlark.com/querystringify/2.2.0 + requires-port: registry.nlark.com/requires-port/1.0.0 + dev: true + + registry.nlark.com/url/0.11.0: + resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/url/download/url-0.11.0.tgz} + name: url + version: 0.11.0 + dependencies: + punycode: registry.nlark.com/punycode/1.3.2 + querystring: registry.npmmirror.com/querystring/0.2.0 + dev: true + + registry.nlark.com/util-deprecate/1.0.2: + resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util-deprecate/download/util-deprecate-1.0.2.tgz} + name: util-deprecate + version: 1.0.2 + dev: true + + registry.nlark.com/util.promisify/1.0.0: + resolution: {integrity: sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util.promisify/download/util.promisify-1.0.0.tgz} + name: util.promisify + version: 1.0.0 + dependencies: + define-properties: registry.nlark.com/define-properties/1.1.3 + object.getownpropertydescriptors: registry.npmmirror.com/object.getownpropertydescriptors/2.1.3 + dev: true + + registry.nlark.com/util.promisify/1.0.1: + resolution: {integrity: sha1-a693dLgO6w91INi4HQeYKlmruu4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util.promisify/download/util.promisify-1.0.1.tgz} + name: util.promisify + version: 1.0.1 + dependencies: + define-properties: registry.nlark.com/define-properties/1.1.3 + es-abstract: registry.npmmirror.com/es-abstract/1.19.1 + has-symbols: registry.nlark.com/has-symbols/1.0.2 + object.getownpropertydescriptors: registry.npmmirror.com/object.getownpropertydescriptors/2.1.3 + dev: true + + registry.nlark.com/util.promisify/1.1.1: + resolution: {integrity: sha1-d4MvV87SyUeBdBScrpuW6ZGM1Us=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util.promisify/download/util.promisify-1.1.1.tgz} + name: util.promisify + version: 1.1.1 + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + for-each: registry.nlark.com/for-each/0.3.3 + has-symbols: registry.nlark.com/has-symbols/1.0.2 + object.getownpropertydescriptors: registry.npmmirror.com/object.getownpropertydescriptors/2.1.3 + dev: true + + registry.nlark.com/util/0.10.3: + resolution: {integrity: sha1-evsa/lCAUkZInj23/g7TeTNqwPk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util/download/util-0.10.3.tgz} + name: util + version: 0.10.3 + dependencies: + inherits: registry.nlark.com/inherits/2.0.1 + dev: true + + registry.nlark.com/util/0.11.1: + resolution: {integrity: sha1-MjZzNyDsZLsn9uJvQhqqLhtYjWE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util/download/util-0.11.1.tgz} + name: util + version: 0.11.1 + dependencies: + inherits: registry.nlark.com/inherits/2.0.3 + dev: true + + registry.nlark.com/utila/0.4.0: + resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/utila/download/utila-0.4.0.tgz} + name: utila + version: 0.4.0 + dev: true + + registry.nlark.com/utils-merge/1.0.1: + resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/utils-merge/download/utils-merge-1.0.1.tgz} + name: utils-merge + version: 1.0.1 + engines: {node: '>= 0.4.0'} + dev: true + + registry.nlark.com/v8-compile-cache/2.3.0: + resolution: {integrity: sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz} + name: v8-compile-cache + version: 2.3.0 + dev: true + + registry.nlark.com/validate-npm-package-license/3.0.4: + resolution: {integrity: sha1-/JH2uce6FchX9MssXe/uw51PQQo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz} + name: validate-npm-package-license + version: 3.0.4 + dependencies: + spdx-correct: registry.nlark.com/spdx-correct/3.1.1 + spdx-expression-parse: registry.nlark.com/spdx-expression-parse/3.0.1 + dev: true + + registry.nlark.com/vary/1.1.2: + resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vary/download/vary-1.1.2.tgz} + name: vary + version: 1.1.2 + engines: {node: '>= 0.8'} + dev: true + + registry.nlark.com/vendors/1.0.4: + resolution: {integrity: sha1-4rgApT56Kbk1BsPPQRANFsTErY4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vendors/download/vendors-1.0.4.tgz} + name: vendors + version: 1.0.4 + dev: true + + registry.nlark.com/vm-browserify/1.1.2: + resolution: {integrity: sha1-eGQcSIuObKkadfUR56OzKobl3aA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vm-browserify/download/vm-browserify-1.1.2.tgz} + name: vm-browserify + version: 1.1.2 + dev: true + + registry.nlark.com/vue-hot-reload-api/2.3.4: + resolution: {integrity: sha1-UylVzB6yCKPZkLOp+acFdGV+CPI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-hot-reload-api/download/vue-hot-reload-api-2.3.4.tgz} + name: vue-hot-reload-api + version: 2.3.4 + dev: true + + registry.nlark.com/vue-style-loader/4.1.3: + resolution: {integrity: sha1-bVWGOlH6dXqyTonZNxRlByqnvDU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-style-loader/download/vue-style-loader-4.1.3.tgz} + name: vue-style-loader + version: 4.1.3 + dependencies: + hash-sum: registry.nlark.com/hash-sum/1.0.2 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + dev: true + + registry.nlark.com/vue-template-es2015-compiler/1.9.1: + resolution: {integrity: sha1-HuO8mhbsv1EYvjNLsV+cRvgvWCU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-template-es2015-compiler/download/vue-template-es2015-compiler-1.9.1.tgz} + name: vue-template-es2015-compiler + version: 1.9.1 + dev: true + + registry.nlark.com/vuex/3.1.0: + resolution: {integrity: sha1-Y0uBUVzwz+l2vR/+lgF1XlH4Q7k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vuex/download/vuex-3.1.0.tgz} + name: vuex + version: 3.1.0 + dev: false + + registry.nlark.com/w3c-hr-time/1.0.2: + resolution: {integrity: sha1-ConN9cwVgi35w2BUNnaWPgzDCM0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz} + name: w3c-hr-time + version: 1.0.2 + dependencies: + browser-process-hrtime: registry.nlark.com/browser-process-hrtime/1.0.0 + dev: true + + registry.nlark.com/w3c-xmlserializer/1.1.2: + resolution: {integrity: sha1-MEhcp9cKb9BSQgo9Ev2Q5jOc55Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-1.1.2.tgz} + name: w3c-xmlserializer + version: 1.1.2 + dependencies: + domexception: registry.npmmirror.com/domexception/1.0.1 + webidl-conversions: registry.nlark.com/webidl-conversions/4.0.2 + xml-name-validator: registry.nlark.com/xml-name-validator/3.0.0 + dev: true + + registry.nlark.com/watchpack-chokidar2/2.0.1: + resolution: {integrity: sha1-OFAAcu5uzmbzdpk2lQ6hdxvhyVc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/watchpack-chokidar2/download/watchpack-chokidar2-2.0.1.tgz} + name: watchpack-chokidar2 + version: 2.0.1 + requiresBuild: true + dependencies: + chokidar: registry.npmmirror.com/chokidar/2.1.8 + dev: true + optional: true + + registry.nlark.com/watchpack/1.7.5: + resolution: {integrity: sha1-EmfmxV4Lm1vkTCAjrtVDeiwmxFM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/watchpack/download/watchpack-1.7.5.tgz} + name: watchpack + version: 1.7.5 + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + neo-async: registry.nlark.com/neo-async/2.6.2 + optionalDependencies: + chokidar: registry.npmmirror.com/chokidar/3.5.2 + watchpack-chokidar2: registry.nlark.com/watchpack-chokidar2/2.0.1 + dev: true + + registry.nlark.com/wbuf/1.7.3: + resolution: {integrity: sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wbuf/download/wbuf-1.7.3.tgz} + name: wbuf + version: 1.7.3 + dependencies: + minimalistic-assert: registry.nlark.com/minimalistic-assert/1.0.1 + dev: true + + registry.nlark.com/wcwidth/1.0.1: + resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz} + name: wcwidth + version: 1.0.1 + dependencies: + defaults: registry.nlark.com/defaults/1.0.3 + dev: true + + registry.nlark.com/webidl-conversions/4.0.2: + resolution: {integrity: sha1-qFWYCx8LazWbodXZ+zmulB+qY60=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz} + name: webidl-conversions + version: 4.0.2 + dev: true + + registry.nlark.com/webpack-chain/6.5.1: + resolution: {integrity: sha1-TycoTLu2N+PI+970Pu9YjU2GEgY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webpack-chain/download/webpack-chain-6.5.1.tgz} + name: webpack-chain + version: 6.5.1 + engines: {node: '>=8'} + dependencies: + deepmerge: registry.nlark.com/deepmerge/1.5.2 + javascript-stringify: registry.nlark.com/javascript-stringify/2.1.0 + dev: true + + registry.nlark.com/webpack-log/2.0.0: + resolution: {integrity: sha1-W3ko4GN1k/EZ0y9iJ8HgrDHhtH8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webpack-log/download/webpack-log-2.0.0.tgz} + name: webpack-log + version: 2.0.0 + engines: {node: '>= 6'} + dependencies: + ansi-colors: registry.nlark.com/ansi-colors/3.2.4 + uuid: registry.npmmirror.com/uuid/3.4.0 + dev: true + + registry.nlark.com/webpack-merge/4.2.2: + resolution: {integrity: sha1-onxS6ng9E5iv0gh/VH17nS9DY00=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webpack-merge/download/webpack-merge-4.2.2.tgz} + name: webpack-merge + version: 4.2.2 + dependencies: + lodash: registry.nlark.com/lodash/4.17.21 + dev: true + + registry.nlark.com/webpack-sources/1.4.3: + resolution: {integrity: sha1-7t2OwLko+/HL/plOItLYkPMwqTM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webpack-sources/download/webpack-sources-1.4.3.tgz} + name: webpack-sources + version: 1.4.3 + dependencies: + source-list-map: registry.nlark.com/source-list-map/2.0.1 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.nlark.com/websocket-driver/0.7.4: + resolution: {integrity: sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/websocket-driver/download/websocket-driver-0.7.4.tgz} + name: websocket-driver + version: 0.7.4 + engines: {node: '>=0.8.0'} + dependencies: + http-parser-js: registry.nlark.com/http-parser-js/0.5.3 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + websocket-extensions: registry.nlark.com/websocket-extensions/0.1.4 + dev: true + + registry.nlark.com/websocket-extensions/0.1.4: + resolution: {integrity: sha1-f4RzvIOd/YdgituV1+sHUhFXikI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/websocket-extensions/download/websocket-extensions-0.1.4.tgz} + name: websocket-extensions + version: 0.1.4 + engines: {node: '>=0.8.0'} + dev: true + + registry.nlark.com/whatwg-encoding/1.0.5: + resolution: {integrity: sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz} + name: whatwg-encoding + version: 1.0.5 + dependencies: + iconv-lite: registry.nlark.com/iconv-lite/0.4.24 + dev: true + + registry.nlark.com/whatwg-mimetype/2.3.0: + resolution: {integrity: sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz} + name: whatwg-mimetype + version: 2.3.0 + dev: true + + registry.nlark.com/which-boxed-primitive/1.0.2: + resolution: {integrity: sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz} + name: which-boxed-primitive + version: 1.0.2 + dependencies: + is-bigint: registry.nlark.com/is-bigint/1.0.4 + is-boolean-object: registry.nlark.com/is-boolean-object/1.1.2 + is-number-object: registry.npmmirror.com/is-number-object/1.0.6 + is-string: registry.nlark.com/is-string/1.0.7 + is-symbol: registry.nlark.com/is-symbol/1.0.4 + dev: true + + registry.nlark.com/which-module/2.0.0: + resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which-module/download/which-module-2.0.0.tgz} + name: which-module + version: 2.0.0 + dev: true + + registry.nlark.com/which/1.3.1: + resolution: {integrity: sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which/download/which-1.3.1.tgz} + name: which + version: 1.3.1 + hasBin: true + dependencies: + isexe: registry.nlark.com/isexe/2.0.0 + dev: true + + registry.nlark.com/which/2.0.2: + resolution: {integrity: sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which/download/which-2.0.2.tgz} + name: which + version: 2.0.2 + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: registry.nlark.com/isexe/2.0.0 + dev: true + + registry.nlark.com/word-wrap/1.2.3: + resolution: {integrity: sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/word-wrap/download/word-wrap-1.2.3.tgz} + name: word-wrap + version: 1.2.3 + engines: {node: '>=0.10.0'} + dev: true + + registry.nlark.com/worker-farm/1.7.0: + resolution: {integrity: sha1-JqlMU5G7ypJhUgAvabhKS/dy5ag=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/worker-farm/download/worker-farm-1.7.0.tgz} + name: worker-farm + version: 1.7.0 + dependencies: + errno: registry.nlark.com/errno/0.1.8 + dev: true + + registry.nlark.com/wrap-ansi/5.1.0: + resolution: {integrity: sha1-H9H2cjXVttD+54EFYAG/tpTAOwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-5.1.0.tgz} + name: wrap-ansi + version: 5.1.0 + engines: {node: '>=6'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/3.2.1 + string-width: registry.npmmirror.com/string-width/3.1.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + dev: true + + registry.nlark.com/wrap-ansi/6.2.0: + resolution: {integrity: sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz} + name: wrap-ansi + version: 6.2.0 + engines: {node: '>=8'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/4.3.0 + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.nlark.com/wrap-ansi/7.0.0: + resolution: {integrity: sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz} + name: wrap-ansi + version: 7.0.0 + engines: {node: '>=10'} + dependencies: + ansi-styles: registry.nlark.com/ansi-styles/4.3.0 + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.nlark.com/wrappy/1.0.2: + resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz} + name: wrappy + version: 1.0.2 + + registry.nlark.com/write-file-atomic/2.4.1: + resolution: {integrity: sha1-0LBUY8GIroBDlv1asqNwBir4dSk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/write-file-atomic/download/write-file-atomic-2.4.1.tgz} + name: write-file-atomic + version: 2.4.1 + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + imurmurhash: registry.nlark.com/imurmurhash/0.1.4 + signal-exit: registry.npmmirror.com/signal-exit/3.0.5 + dev: true + + registry.nlark.com/write/1.0.3: + resolution: {integrity: sha1-CADhRSO5I6OH5BUSPIZWFqrg9cM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/write/download/write-1.0.3.tgz} + name: write + version: 1.0.3 + engines: {node: '>=4'} + dependencies: + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + dev: true + + registry.nlark.com/xml-name-validator/3.0.0: + resolution: {integrity: sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/xml-name-validator/download/xml-name-validator-3.0.0.tgz} + name: xml-name-validator + version: 3.0.0 + dev: true + + registry.nlark.com/xmlchars/2.2.0: + resolution: {integrity: sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/xmlchars/download/xmlchars-2.2.0.tgz} + name: xmlchars + version: 2.2.0 + dev: true + + registry.nlark.com/xtend/4.0.2: + resolution: {integrity: sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/xtend/download/xtend-4.0.2.tgz} + name: xtend + version: 4.0.2 + engines: {node: '>=0.4'} + dev: true + + registry.nlark.com/y18n/4.0.3: + resolution: {integrity: sha1-tfJZyCzW4zaSHv17/Yv1YN6e7t8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/y18n/download/y18n-4.0.3.tgz} + name: y18n + version: 4.0.3 + dev: true + + registry.nlark.com/y18n/5.0.8: + resolution: {integrity: sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/y18n/download/y18n-5.0.8.tgz} + name: y18n + version: 5.0.8 + engines: {node: '>=10'} + dev: true + + registry.nlark.com/yallist/2.1.2: + resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yallist/download/yallist-2.1.2.tgz} + name: yallist + version: 2.1.2 + dev: true + + registry.nlark.com/yallist/3.1.1: + resolution: {integrity: sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yallist/download/yallist-3.1.1.tgz} + name: yallist + version: 3.1.1 + dev: true + + registry.nlark.com/yallist/4.0.0: + resolution: {integrity: sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz} + name: yallist + version: 4.0.0 + dev: true + + registry.nlark.com/yargs-parser/10.1.0: + resolution: {integrity: sha1-cgImW4n36eny5XZeD+c1qQXtuqg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yargs-parser/download/yargs-parser-10.1.0.tgz} + name: yargs-parser + version: 10.1.0 + dependencies: + camelcase: registry.nlark.com/camelcase/4.1.0 + dev: true + + registry.nlark.com/yargs-parser/13.1.2: + resolution: {integrity: sha1-Ew8JcC667vJlDVTObj5XBvek+zg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yargs-parser/download/yargs-parser-13.1.2.tgz} + name: yargs-parser + version: 13.1.2 + dependencies: + camelcase: registry.nlark.com/camelcase/5.3.1 + decamelize: registry.npmmirror.com/decamelize/1.2.0 + dev: true + + registry.nlark.com/yargs-parser/20.2.9: + resolution: {integrity: sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yargs-parser/download/yargs-parser-20.2.9.tgz} + name: yargs-parser + version: 20.2.9 + engines: {node: '>=10'} + dev: true + + registry.npmmirror.com/@babel/code-frame/7.16.0: + resolution: {integrity: sha1-DfyAMJvuyEEeZecGRhxAiwu5tDE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.0.tgz} + name: '@babel/code-frame' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': registry.npmmirror.com/@babel/highlight/7.16.0 + dev: true + + registry.npmmirror.com/@babel/compat-data/7.16.0: + resolution: {integrity: sha1-6iadf3jes6eCbDmkBI7s2lQevao=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.0.tgz} + name: '@babel/compat-data' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dev: true + + registry.npmmirror.com/@babel/core/7.16.0: + resolution: {integrity: sha1-xP9EBG9f4xBSXMnrTvUUfwxTdNQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/download/@babel/core-7.16.0.tgz} + name: '@babel/core' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + '@babel/generator': registry.npmmirror.com/@babel/generator/7.16.0 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.16.0 + '@babel/helpers': registry.npmmirror.com/@babel/helpers/7.16.3 + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + convert-source-map: registry.nlark.com/convert-source-map/1.8.0 + debug: registry.npmmirror.com/debug/4.3.2 + gensync: registry.nlark.com/gensync/1.0.0-beta.2 + json5: registry.nlark.com/json5/2.2.0 + semver: registry.nlark.com/semver/6.3.0 + source-map: registry.nlark.com/source-map/0.5.7 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/generator/7.16.0: + resolution: {integrity: sha1-1A89HVB15i01ALzLZ/PaqKlSZbI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.0.tgz} + name: '@babel/generator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + jsesc: registry.nlark.com/jsesc/2.5.2 + source-map: registry.nlark.com/source-map/0.5.7 + dev: true + + registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0: + resolution: {integrity: sha1-mh8OvNpT2aLQAQjEzqzmpdXx8I0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.16.0.tgz} + name: '@babel/helper-annotate-as-pure' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.16.0: + resolution: {integrity: sha1-8aaGuS2nlAIMJlguuFLprM0NeII=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz} + name: '@babel/helper-builder-binary-assignment-operator-visitor' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-explode-assignable-expression': registry.npmmirror.com/@babel/helper-explode-assignable-expression/7.16.0 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: + resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.3.tgz} + id: registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3 + name: '@babel/helper-compilation-targets' + version: 7.16.3 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.16.0 + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-validator-option': registry.nlark.com/@babel/helper-validator-option/7.14.5 + browserslist: registry.npmmirror.com/browserslist/4.17.6 + semver: registry.nlark.com/semver/6.3.0 + dev: true + + registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-CQ1NFms0KgOp/sN+9P1a65x8aks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.0.tgz} + id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0 + name: '@babel/helper-create-class-features-plugin' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0 + '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.0 + '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.0 + '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.0 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-BrI0jON/zMT14Y3NjXUFPyp8RP8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.16.0.tgz} + id: registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.16.0 + name: '@babel/helper-create-regexp-features-plugin' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0 + regexpu-core: registry.nlark.com/regexpu-core/4.8.0 + dev: true + + registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.16.0: + resolution: {integrity: sha1-iGeu150+psreQPgB77esXGaRaxA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.4.tgz} + id: registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.2.4 + name: '@babel/helper-define-polyfill-provider' + version: 0.2.4 + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + debug: registry.npmmirror.com/debug/4.3.2 + lodash.debounce: registry.nlark.com/lodash.debounce/4.0.8 + resolve: registry.nlark.com/resolve/1.20.0 + semver: registry.nlark.com/semver/6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/helper-explode-assignable-expression/7.16.0: + resolution: {integrity: sha1-dTAXM3oV9G+cCfZ0z/EM7pudd3g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.16.0.tgz} + name: '@babel/helper-explode-assignable-expression' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-function-name/7.16.0: + resolution: {integrity: sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.0.tgz} + name: '@babel/helper-function-name' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-get-function-arity': registry.npmmirror.com/@babel/helper-get-function-arity/7.16.0 + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-get-function-arity/7.16.0: + resolution: {integrity: sha1-AIjHSGspqctdlIsaHeRttm4InPo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.0.tgz} + name: '@babel/helper-get-function-arity' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-hoist-variables/7.16.0: + resolution: {integrity: sha1-TJAjwvHe9+KP9G/B2802o5vqqBo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.0.tgz} + name: '@babel/helper-hoist-variables' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.0: + resolution: {integrity: sha1-KShwQO/Rl8d2Nu91GI6B2ovM1aQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.0.tgz} + name: '@babel/helper-member-expression-to-functions' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-module-imports/7.16.0: + resolution: {integrity: sha1-kFOOYLZy7PG0SPX09UM9N+eaPsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.0.tgz} + name: '@babel/helper-module-imports' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-module-transforms/7.16.0: + resolution: {integrity: sha1-HIKo3UyzRXdQLr0pCWmbGUw+m7U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.0.tgz} + name: '@babel/helper-module-transforms' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.0 + '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.16.0 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0 + '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7 + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.0: + resolution: {integrity: sha1-zs2xRdcMVAlrFWT46fEM19GTszg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.0.tgz} + name: '@babel/helper-optimise-call-expression' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.16.0: + resolution: {integrity: sha1-1ao7CG4Tpf4FI4/0DDpaDC2rPq0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.16.0.tgz} + name: '@babel/helper-remap-async-to-generator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0 + '@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function/7.16.0 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/helper-replace-supers/7.16.0: + resolution: {integrity: sha1-cwVejTz5vLqN21XK2T/tyGD2jxc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.0.tgz} + name: '@babel/helper-replace-supers' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.0 + '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/helper-simple-access/7.16.0: + resolution: {integrity: sha1-IdaidiDjg+N1NM9sELugGab5BRc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.0.tgz} + name: '@babel/helper-simple-access' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.16.0: + resolution: {integrity: sha1-DuM4gHAUfDrgUeSH7KPrsOLouwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.16.0.tgz} + name: '@babel/helper-skip-transparent-expression-wrappers' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0: + resolution: {integrity: sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.0.tgz} + name: '@babel/helper-split-export-declaration' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/helper-wrap-function/7.16.0: + resolution: {integrity: sha1-s88xivzndN/nW4Z2fNbWjzSC5Xw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.16.0.tgz} + name: '@babel/helper-wrap-function' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0 + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/helpers/7.16.3: + resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.3.tgz} + name: '@babel/helpers' + version: 7.16.3 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/highlight/7.16.0: + resolution: {integrity: sha1-bOsysspLj182H7f9gh4/3fShclo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.0.tgz} + name: '@babel/highlight' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7 + chalk: registry.nlark.com/chalk/2.4.2 + js-tokens: registry.nlark.com/js-tokens/4.0.0 + dev: true + + registry.npmmirror.com/@babel/parser/7.16.3: + resolution: {integrity: sha512-dcNwU1O4sx57ClvLBVFbEgx0UZWfd0JQX5X6fxFRCLHelFBGXFfSz6Y0FAq2PEwUqlqLkdVjVr4VASEOuUnLJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.3.tgz} + name: '@babel/parser' + version: 7.16.3 + engines: {node: '>=6.0.0'} + hasBin: true + dev: true + + registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0: + resolution: {integrity: sha1-KXf8qbIS2xU8GVZ05Xz6uAdzMYM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/download/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz} + id: registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2 + name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression' + version: 7.16.2 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-NYly6qsAb16wgmGDsMk8vK8T4eI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0 + name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.16.0 + '@babel/plugin-proposal-optional-chaining': registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-EUJdR6YDZDUvZorV+8HWWWssXK8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/7.16.0 + name: '@babel/plugin-proposal-async-generator-functions' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.16.0 + '@babel/plugin-syntax-async-generators': registry.nlark.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-wClhgmfd68coD6KG4PjKKieKLRo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-class-properties/7.16.0 + name: '@babel/plugin-proposal-class-properties' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-UpaULFZNgUTIPuo0fQqooLiRcOc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-class-static-block/7.16.0 + name: '@babel/plugin-proposal-class-static-block' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-class-static-block': registry.nlark.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-decorators/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-UV219okWEcDRdrY+3ghE+9m+eXs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-decorators/7.16.0 + name: '@babel/plugin-proposal-decorators' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-decorators': registry.npmmirror.com/@babel/plugin-syntax-decorators/7.16.0_@babel+core@7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-eD7KYdUFJiAvmylglUU5d+iGWfE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/7.16.0 + name: '@babel/plugin-proposal-dynamic-import' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-dynamic-import': registry.nlark.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-nAHe5Auda4R7ZWqvSjl2pxdA8iI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/7.16.0 + name: '@babel/plugin-proposal-export-namespace-from' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-export-namespace-from': registry.nlark.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-yuNale0dKn+inE3EFUC4SnLpqyU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-json-strings/7.16.0 + name: '@babel/plugin-proposal-json-strings' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-json-strings': registry.nlark.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-pxG4zrP/3dPviNOknobb08x9s/0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/7.16.0 + name: '@babel/plugin-proposal-logical-assignment-operators' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-logical-assignment-operators': registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-ROHM4I/iQnSCz0RqkbtFFSjtBZY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/7.16.0 + name: '@babel/plugin-proposal-nullish-coalescing-operator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-nullish-coalescing-operator': registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-XUGOT7v4ubfQMSXTpScwQzo3NzQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/7.16.0 + name: '@babel/plugin-proposal-numeric-separator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-numeric-separator': registry.nlark.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-X7MvbZJNbmcSgQNipg4SomCYcuY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/7.16.0 + name: '@babel/plugin-proposal-object-rest-spread' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.16.0 + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-object-rest-spread': registry.nlark.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0 + '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-WRAIWBGrTCiwDW6/+kqwJ00eXxY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/7.16.0 + name: '@babel/plugin-proposal-optional-catch-binding' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-optional-catch-binding': registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-VtvDlwglaDYI6e+1XqgsKi1sjcA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/7.16.0 + name: '@babel/plugin-proposal-optional-chaining' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.16.0 + '@babel/plugin-syntax-optional-chaining': registry.nlark.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-tNr7nHF+QwHFd2sw0IDWODyJr/Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-private-methods/7.16.0 + name: '@babel/plugin-proposal-private-methods' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-aek1ssXHnSSIES2IbwxOJ5D+528=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.16.0 + name: '@babel/plugin-proposal-private-property-in-object' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-syntax-private-property-in-object': registry.nlark.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-iQSC38XqN45C4Zpx5wlyjKvxhhI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/7.16.0 + name: '@babel/plugin-proposal-unicode-property-regex' + version: 7.16.0 + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-syntax-decorators/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-642BHN0QYPasPACVa/P2M1UFoy8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-decorators/download/@babel/plugin-syntax-decorators-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-syntax-decorators/7.16.0 + name: '@babel/plugin-syntax-decorators' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-+WJDlDFzZamojII1jT+EcRVGmPE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0 + name: '@babel/plugin-syntax-jsx' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-lRcG+LRJyDTtB71HTAkkyUS5Wo4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.16.0 + name: '@babel/plugin-transform-arrow-functions' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-3xJjf5Yw3foO+dehG8QU1inThgQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.16.0 + name: '@babel/plugin-transform-async-to-generator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-xhh2MjOtAoR4BavKxMNFzp3nFF0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.16.0 + name: '@babel/plugin-transform-block-scoped-functions' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-vPQz+0gv6MPTtOimaxxKjnfTfBY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.16.0 + name: '@babel/plugin-transform-block-scoping' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-VM9f8LIkLGVz11PNS/xwd6iygvU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-classes/7.16.0 + name: '@babel/plugin-transform-classes' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0 + '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.0 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0 + globals: registry.npmmirror.com/globals/11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-4MOFUH0h4bCwdtZr7W1SMbhRELc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.16.0 + name: '@babel/plugin-transform-computed-properties' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-rT1+dFhK1epOrbHmZCFGxZDe4zw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-destructuring/7.16.0 + name: '@babel/plugin-transform-destructuring' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-ULqwDBCEthYtClioGAMc9XeY4G8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.16.0 + name: '@babel/plugin-transform-dotall-regex' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-i8LiGBPj6J5eW/O2CqX8RYV1oXY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.16.0 + name: '@babel/plugin-transform-duplicate-keys' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-oYDNKIHjUzzvnTkB5I2tD77/S+Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.16.0 + name: '@babel/plugin-transform-exponentiation-operator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-96us7RVSYOJGE1m7x8ckispea9I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-for-of/7.16.0 + name: '@babel/plugin-transform-for-of' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-AuNpnChMYmIjZZn3UQZcXV8fQA4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-function-name/7.16.0 + name: '@babel/plugin-transform-function-name' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-eXEeZw/86zG9KYIp1Q82IfeYDKw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-literals/7.16.0 + name: '@babel/plugin-transform-literals' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-UlG0zOAer4MUQD0hrtsmnXn15ks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.16.0 + name: '@babel/plugin-transform-member-expression-literals' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-CavUHhjc9P1HnFmMHO97056xM34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.16.0 + name: '@babel/plugin-transform-modules-amd' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + babel-plugin-dynamic-import-node: registry.nlark.com/babel-plugin-dynamic-import-node/2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-rdWOY4yN3Eh1vZqey1xZRhP2ySI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.16.0 + name: '@babel/plugin-transform-modules-commonjs' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.16.0 + babel-plugin-dynamic-import-node: registry.nlark.com/babel-plugin-dynamic-import-node/2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-qSzyQK/rYF9MoWZwRTAkQl5CHqQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.16.0 + name: '@babel/plugin-transform-modules-systemjs' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.16.0 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7 + babel-plugin-dynamic-import-node: registry.nlark.com/babel-plugin-dynamic-import-node/2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-GV8mwq1tajkbcIgO/84YzmJeBqc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.16.0 + name: '@babel/plugin-transform-modules-umd' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-09thzF1bl5hlWZZ81eqD5cMglso=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.16.0 + name: '@babel/plugin-transform-named-capturing-groups-regex' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-r4I6tXb3UiFaSZN3eaQcplglqzU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-new-target/7.16.0 + name: '@babel/plugin-transform-new-target' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-+yDVgG3GSRoGKWrBTqjo1v7dpys=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-object-super/7.16.0 + name: '@babel/plugin-transform-object-super' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0: + resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.16.3.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-parameters/7.16.3 + name: '@babel/plugin-transform-parameters' + version: 7.16.3 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-qVxVIYmpagAFn2d23E4A42kMeNE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-property-literals/7.16.0 + name: '@babel/plugin-transform-property-literals' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-6u5CLISwIy0Drqfbmcl97q9hJaQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-regenerator/7.16.0 + name: '@babel/plugin-transform-regenerator' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + regenerator-transform: registry.nlark.com/regenerator-transform/0.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-//S53LGeEmGTlL2hctFPLQTAN5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.16.0 + name: '@babel/plugin-transform-reserved-words' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-runtime/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-P+DaNsLwg0vvfE0+fystsO4MiQk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-runtime/download/@babel/plugin-transform-runtime-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-runtime/7.16.0 + name: '@babel/plugin-transform-runtime' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.2.3_@babel+core@7.16.0 + babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.3.0_@babel+core@7.16.0 + babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.2.3_@babel+core@7.16.0 + semver: registry.nlark.com/semver/6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-CQNy4xQffMMk7XCz2vU3nfL6OE0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.16.0 + name: '@babel/plugin-transform-shorthand-properties' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-0hygmbvVOrMHqGIeAZp70PQM3Ps=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-spread/7.16.0 + name: '@babel/plugin-transform-spread' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.16.0 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-w16jGgLYa+SF9qpRAYS2d6kXOP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.16.0 + name: '@babel/plugin-transform-sticky-regex' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-qOztOo57ji1A7E7EVIpFkSYw0wI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-template-literals/7.16.0 + name: '@babel/plugin-transform-template-literals' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-ixmiRMb4ydZo3Kam91Stbq0RKPI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.16.0 + name: '@babel/plugin-transform-typeof-symbol' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-GjVAZLTEVmOjIzT0b6DPYQC1sfM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.16.0 + name: '@babel/plugin-transform-unicode-escapes' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-KTuAlQF3yMha7eh87ygCWfuZVAI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.16.0.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.16.0 + name: '@babel/plugin-transform-unicode-regex' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + dev: true + + registry.npmmirror.com/@babel/preset-env/7.16.0_@babel+core@7.16.0: + resolution: {integrity: sha1-lyKDk9IXVg1qHGxW8K250SvKZ/U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-env/download/@babel/preset-env-7.16.0.tgz} + id: registry.npmmirror.com/@babel/preset-env/7.16.0 + name: '@babel/preset-env' + version: 7.16.0 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.16.0 + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/helper-validator-option': registry.nlark.com/@babel/helper-validator-option/7.14.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-async-generator-functions': registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-class-properties': registry.npmmirror.com/@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-class-static-block': registry.npmmirror.com/@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-dynamic-import': registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-export-namespace-from': registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-json-strings': registry.npmmirror.com/@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-numeric-separator': registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-object-rest-spread': registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-optional-catch-binding': registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-optional-chaining': registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-private-methods': registry.npmmirror.com/@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-private-property-in-object': registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-unicode-property-regex': registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0 + '@babel/plugin-syntax-async-generators': registry.nlark.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0 + '@babel/plugin-syntax-class-properties': registry.nlark.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0 + '@babel/plugin-syntax-class-static-block': registry.nlark.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0 + '@babel/plugin-syntax-dynamic-import': registry.nlark.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-export-namespace-from': registry.nlark.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-json-strings': registry.nlark.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-logical-assignment-operators': registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0 + '@babel/plugin-syntax-nullish-coalescing-operator': registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-numeric-separator': registry.nlark.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0 + '@babel/plugin-syntax-object-rest-spread': registry.nlark.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-optional-catch-binding': registry.nlark.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-optional-chaining': registry.nlark.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-private-property-in-object': registry.nlark.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0 + '@babel/plugin-syntax-top-level-await': registry.nlark.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0 + '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0 + '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0 + '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules/0.1.5_@babel+core@7.16.0 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.2.3_@babel+core@7.16.0 + babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.3.0_@babel+core@7.16.0 + babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.2.3_@babel+core@7.16.0 + core-js-compat: registry.npmmirror.com/core-js-compat/3.19.1 + semver: registry.nlark.com/semver/6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/preset-modules/0.1.5_@babel+core@7.16.0: + resolution: {integrity: sha1-75Odbn8miCfhhBY43G/5VRXhFdk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-modules/download/@babel/preset-modules-0.1.5.tgz} + id: registry.npmmirror.com/@babel/preset-modules/0.1.5 + name: '@babel/preset-modules' + version: 0.1.5 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + '@babel/plugin-proposal-unicode-property-regex': registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + esutils: registry.nlark.com/esutils/2.0.3 + dev: true + + registry.npmmirror.com/@babel/runtime/7.16.3: + resolution: {integrity: sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/download/@babel/runtime-7.16.3.tgz} + name: '@babel/runtime' + version: 7.16.3 + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: registry.nlark.com/regenerator-runtime/0.13.9 + dev: true + + registry.npmmirror.com/@babel/template/7.16.0: + resolution: {integrity: sha1-0Wo16/TNdOICCDNW+rId2JNj3dY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/download/@babel/template-7.16.0.tgz} + name: '@babel/template' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + dev: true + + registry.npmmirror.com/@babel/traverse/7.16.3: + resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/download/@babel/traverse-7.16.3.tgz} + name: '@babel/traverse' + version: 7.16.3 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + '@babel/generator': registry.npmmirror.com/@babel/generator/7.16.0 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0 + '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.16.0 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0 + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + debug: registry.npmmirror.com/debug/4.3.2 + globals: registry.npmmirror.com/globals/11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@babel/types/7.16.0: + resolution: {integrity: sha1-2zsxOAT5aq3Qt3bEgj4SetZyibo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/download/@babel/types-7.16.0.tgz} + name: '@babel/types' + version: 7.16.0 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7 + to-fast-properties: registry.nlark.com/to-fast-properties/2.0.0 + dev: true + + registry.npmmirror.com/@hapi/address/2.1.4: + resolution: {integrity: sha1-XWftQ/P9QaadS5/3tW58DR0KgeU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@hapi/address/download/@hapi/address-2.1.4.tgz} + name: '@hapi/address' + version: 2.1.4 + deprecated: Moved to 'npm install @sideway/address' + dev: true + + registry.npmmirror.com/@hapi/bourne/1.3.2: + resolution: {integrity: sha1-CnCVreoGckPOMoPhtWuKj0U7JCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@hapi/bourne/download/@hapi/bourne-1.3.2.tgz} + name: '@hapi/bourne' + version: 1.3.2 + deprecated: This version has been deprecated and is no longer supported or maintained + dev: true + + registry.npmmirror.com/@hapi/hoek/8.5.1: + resolution: {integrity: sha1-/elgZMpEbeyMVajC8TCVewcMbgY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@hapi/hoek/download/@hapi/hoek-8.5.1.tgz} + name: '@hapi/hoek' + version: 8.5.1 + deprecated: This version has been deprecated and is no longer supported or maintained + dev: true + + registry.npmmirror.com/@hapi/joi/15.1.1: + resolution: {integrity: sha1-xnW4pxKW8Cgz+NbSQ7NMV7jOGdc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@hapi/joi/download/@hapi/joi-15.1.1.tgz} + name: '@hapi/joi' + version: 15.1.1 + deprecated: Switch to 'npm install joi' + dependencies: + '@hapi/address': registry.npmmirror.com/@hapi/address/2.1.4 + '@hapi/bourne': registry.npmmirror.com/@hapi/bourne/1.3.2 + '@hapi/hoek': registry.npmmirror.com/@hapi/hoek/8.5.1 + '@hapi/topo': registry.nlark.com/@hapi/topo/3.1.6 + dev: true + + registry.npmmirror.com/@jest/console/24.9.0: + resolution: {integrity: sha1-ebG8Bvt0qM+wHL3t+UVYSxuXB/A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/console/download/@jest/console-24.9.0.tgz} + name: '@jest/console' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/source-map': registry.nlark.com/@jest/source-map/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + slash: registry.nlark.com/slash/2.0.0 + dev: true + + registry.npmmirror.com/@jest/core/24.9.0: + resolution: {integrity: sha1-LOzNC5MYH5xIUOdPKprUPTUTacQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/core/download/@jest/core-24.9.0.tgz} + name: '@jest/core' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/console': registry.npmmirror.com/@jest/console/24.9.0 + '@jest/reporters': registry.npmmirror.com/@jest/reporters/24.9.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/transform': registry.npmmirror.com/@jest/transform/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + ansi-escapes: registry.nlark.com/ansi-escapes/3.2.0 + chalk: registry.nlark.com/chalk/2.4.2 + exit: registry.nlark.com/exit/0.1.2 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + jest-changed-files: registry.npmmirror.com/jest-changed-files/24.9.0 + jest-config: registry.npmmirror.com/jest-config/24.9.0 + jest-haste-map: registry.npmmirror.com/jest-haste-map/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + jest-resolve-dependencies: registry.npmmirror.com/jest-resolve-dependencies/24.9.0 + jest-runner: registry.npmmirror.com/jest-runner/24.9.0 + jest-runtime: registry.npmmirror.com/jest-runtime/24.9.0 + jest-snapshot: registry.npmmirror.com/jest-snapshot/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-validate: registry.npmmirror.com/jest-validate/24.9.0 + jest-watcher: registry.npmmirror.com/jest-watcher/24.9.0 + micromatch: registry.nlark.com/micromatch/3.1.10 + p-each-series: registry.nlark.com/p-each-series/1.0.0 + realpath-native: registry.npmmirror.com/realpath-native/1.1.0 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + slash: registry.nlark.com/slash/2.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@jest/environment/24.9.0: + resolution: {integrity: sha1-IeOvotZcBYbL1svv4gi6+t5Eqxg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/environment/download/@jest/environment-24.9.0.tgz} + name: '@jest/environment' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers/24.9.0 + '@jest/transform': registry.npmmirror.com/@jest/transform/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + jest-mock: registry.npmmirror.com/jest-mock/24.9.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@jest/fake-timers/24.9.0: + resolution: {integrity: sha1-uj5r8O7NCaY2BJiWQ00wZjZUDJM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/fake-timers/download/@jest/fake-timers-24.9.0.tgz} + name: '@jest/fake-timers' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-mock: registry.npmmirror.com/jest-mock/24.9.0 + dev: true + + registry.npmmirror.com/@jest/reporters/24.9.0: + resolution: {integrity: sha1-hmYO/44rlmHQQqjpigKLjWMaW0M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/reporters/download/@jest/reporters-24.9.0.tgz} + name: '@jest/reporters' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/transform': registry.npmmirror.com/@jest/transform/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + exit: registry.nlark.com/exit/0.1.2 + glob: registry.npmmirror.com/glob/7.2.0 + istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage/2.0.5 + istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument/3.3.0 + istanbul-lib-report: registry.nlark.com/istanbul-lib-report/2.0.8 + istanbul-lib-source-maps: registry.npmmirror.com/istanbul-lib-source-maps/3.0.6 + istanbul-reports: registry.npmmirror.com/istanbul-reports/2.2.7 + jest-haste-map: registry.npmmirror.com/jest-haste-map/24.9.0 + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + jest-runtime: registry.npmmirror.com/jest-runtime/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-worker: registry.npmmirror.com/jest-worker/24.9.0 + node-notifier: registry.nlark.com/node-notifier/5.4.5 + slash: registry.nlark.com/slash/2.0.0 + source-map: registry.nlark.com/source-map/0.6.1 + string-length: registry.nlark.com/string-length/2.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@jest/test-result/24.9.0: + resolution: {integrity: sha1-EXluiqnb+I6gJXV7MVJZWtBroMo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-result/download/@jest/test-result-24.9.0.tgz} + name: '@jest/test-result' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/console': registry.npmmirror.com/@jest/console/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + '@types/istanbul-lib-coverage': registry.nlark.com/@types/istanbul-lib-coverage/2.0.3 + dev: true + + registry.npmmirror.com/@jest/test-sequencer/24.9.0: + resolution: {integrity: sha1-+PM081tiWk8vNV8v5+YDba0uazE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-sequencer/download/@jest/test-sequencer-24.9.0.tgz} + name: '@jest/test-sequencer' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + jest-haste-map: registry.npmmirror.com/jest-haste-map/24.9.0 + jest-runner: registry.npmmirror.com/jest-runner/24.9.0 + jest-runtime: registry.npmmirror.com/jest-runtime/24.9.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@jest/transform/24.9.0: + resolution: {integrity: sha1-SuJ2iyllU/rasJ6ewRlUPJCxbFY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/transform/download/@jest/transform-24.9.0.tgz} + name: '@jest/transform' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul/5.2.0 + chalk: registry.nlark.com/chalk/2.4.2 + convert-source-map: registry.nlark.com/convert-source-map/1.8.0 + fast-json-stable-stringify: registry.nlark.com/fast-json-stable-stringify/2.1.0 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + jest-haste-map: registry.npmmirror.com/jest-haste-map/24.9.0 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + micromatch: registry.nlark.com/micromatch/3.1.10 + pirates: registry.nlark.com/pirates/4.0.1 + realpath-native: registry.npmmirror.com/realpath-native/1.1.0 + slash: registry.nlark.com/slash/2.0.0 + source-map: registry.nlark.com/source-map/0.6.1 + write-file-atomic: registry.nlark.com/write-file-atomic/2.4.1 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@jest/types/24.9.0: + resolution: {integrity: sha1-Y8smy3UA0Gnlo4lEGnxqtekJ/Fk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/types/download/@jest/types-24.9.0.tgz} + name: '@jest/types' + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@types/istanbul-lib-coverage': registry.nlark.com/@types/istanbul-lib-coverage/2.0.3 + '@types/istanbul-reports': registry.nlark.com/@types/istanbul-reports/1.1.2 + '@types/yargs': registry.npmmirror.com/@types/yargs/13.0.12 + dev: true + + registry.npmmirror.com/@soda/get-current-script/1.0.2: + resolution: {integrity: sha1-pTUV2yXYA4N0OBtzryC7Ty5QjYc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@soda/get-current-script/download/@soda/get-current-script-1.0.2.tgz} + name: '@soda/get-current-script' + version: 1.0.2 + dev: true + + registry.npmmirror.com/@types/glob/7.2.0: + resolution: {integrity: sha1-vBtb86qS8lvV3TnzXFc2G9zlsus=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/glob/download/@types/glob-7.2.0.tgz} + name: '@types/glob' + version: 7.2.0 + dependencies: + '@types/minimatch': registry.nlark.com/@types/minimatch/3.0.5 + '@types/node': registry.npmmirror.com/@types/node/16.11.7 + dev: true + + registry.npmmirror.com/@types/node/16.11.7: + resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/download/@types/node-16.11.7.tgz} + name: '@types/node' + version: 16.11.7 + dev: true + + registry.npmmirror.com/@types/strip-bom/3.0.0: + resolution: {integrity: sha1-FKjsOVbC6B7bdSB5CuzyHCkK69I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/strip-bom/download/@types/strip-bom-3.0.0.tgz} + name: '@types/strip-bom' + version: 3.0.0 + dev: true + + registry.npmmirror.com/@types/strip-json-comments/0.0.30: + resolution: {integrity: sha1-mqMMBNshKpoGSdaub9UKzMQHSKE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/strip-json-comments/download/@types/strip-json-comments-0.0.30.tgz} + name: '@types/strip-json-comments' + version: 0.0.30 + dev: true + + registry.npmmirror.com/@types/yargs/13.0.12: + resolution: {integrity: sha1-2JWojHA7eK8EZaneiKqSxhQwsJI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs/download/@types/yargs-13.0.12.tgz} + name: '@types/yargs' + version: 13.0.12 + dependencies: + '@types/yargs-parser': registry.nlark.com/@types/yargs-parser/20.2.1 + dev: true + + registry.npmmirror.com/@vue/babel-helper-vue-transform-on/1.0.2: + resolution: {integrity: sha1-m5xpHNBvyFUiGiR1w8yDHXdLx9w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz} + name: '@vue/babel-helper-vue-transform-on' + version: 1.0.2 + dev: true + + registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.16.0: + resolution: {integrity: sha1-DFusJ4gNI/iYlM0Daje1XvYd38E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.1.1.tgz} + id: registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1 + name: '@vue/babel-plugin-jsx' + version: 1.1.1 + dependencies: + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + '@vue/babel-helper-vue-transform-on': registry.npmmirror.com/@vue/babel-helper-vue-transform-on/1.0.2 + camelcase: registry.nlark.com/camelcase/6.2.0 + html-tags: registry.nlark.com/html-tags/3.1.0 + svg-tags: registry.nlark.com/svg-tags/1.0.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + + registry.npmmirror.com/@vue/babel-preset-app/4.5.15_vue@2.6.10: + resolution: {integrity: sha1-9rwI+PZ06YomAAQjTN4YuWbXLrA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-preset-app/download/@vue/babel-preset-app-4.5.15.tgz} + id: registry.npmmirror.com/@vue/babel-preset-app/4.5.15 + name: '@vue/babel-preset-app' + version: 4.5.15 + peerDependencies: + vue: ^2 || ^3.0.0-0 + peerDependenciesMeta: + core-js: + optional: true + vue: + optional: true + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 + '@babel/plugin-proposal-class-properties': registry.npmmirror.com/@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0 + '@babel/plugin-proposal-decorators': registry.npmmirror.com/@babel/plugin-proposal-decorators/7.16.0_@babel+core@7.16.0 + '@babel/plugin-syntax-dynamic-import': registry.nlark.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0 + '@babel/plugin-transform-runtime': registry.npmmirror.com/@babel/plugin-transform-runtime/7.16.0_@babel+core@7.16.0 + '@babel/preset-env': registry.npmmirror.com/@babel/preset-env/7.16.0_@babel+core@7.16.0 + '@babel/runtime': registry.npmmirror.com/@babel/runtime/7.16.3 + '@vue/babel-plugin-jsx': registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.16.0 + '@vue/babel-preset-jsx': registry.nlark.com/@vue/babel-preset-jsx/1.2.4_@babel+core@7.16.0 + babel-plugin-dynamic-import-node: registry.nlark.com/babel-plugin-dynamic-import-node/2.3.3 + core-js: registry.npmmirror.com/core-js/3.6.5 + core-js-compat: registry.npmmirror.com/core-js-compat/3.19.1 + semver: registry.nlark.com/semver/6.3.0 + vue: registry.npmmirror.com/vue/2.6.10 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/@vue/cli-overlay/4.5.15: + resolution: {integrity: sha1-BwD9a605M21Bibo/99JeY46BjJw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-overlay/download/@vue/cli-overlay-4.5.15.tgz} + name: '@vue/cli-overlay' + version: 4.5.15 + dev: true + + registry.npmmirror.com/@vue/cli-plugin-babel/4.4.4_73dc883dde44f18441aa6573f43c88d3: + resolution: {integrity: sha1-GJBLXjgXMpGzcFTC8Dk/uMdI83s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-plugin-babel/download/@vue/cli-plugin-babel-4.4.4.tgz} + id: registry.npmmirror.com/@vue/cli-plugin-babel/4.4.4 + name: '@vue/cli-plugin-babel' + version: 4.4.4 + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@vue/babel-preset-app': registry.npmmirror.com/@vue/babel-preset-app/4.5.15_vue@2.6.10 + '@vue/cli-service': registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f + '@vue/cli-shared-utils': registry.npmmirror.com/@vue/cli-shared-utils/4.5.15 + babel-loader: registry.npmmirror.com/babel-loader/8.2.3_1bd60a6cd0f7024f034efd75ae733a3f + cache-loader: registry.nlark.com/cache-loader/4.1.0_webpack@4.46.0 + thread-loader: registry.nlark.com/thread-loader/2.1.3_webpack@4.46.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + transitivePeerDependencies: + - supports-color + - vue + - webpack-cli + - webpack-command + dev: true + + registry.npmmirror.com/@vue/cli-plugin-eslint/4.4.4_4c02ce60bf5d245163a3258a3e654afe: + resolution: {integrity: sha1-Gf0doYY6kFhLeJOczhzpTEntQ4g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-plugin-eslint/download/@vue/cli-plugin-eslint-4.4.4.tgz} + id: registry.npmmirror.com/@vue/cli-plugin-eslint/4.4.4 + name: '@vue/cli-plugin-eslint' + version: 4.4.4 + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0-0 + eslint: '>= 1.6.0' + dependencies: + '@vue/cli-service': registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f + '@vue/cli-shared-utils': registry.npmmirror.com/@vue/cli-shared-utils/4.5.15 + eslint: registry.npmmirror.com/eslint/6.7.2 + eslint-loader: registry.npmmirror.com/eslint-loader/2.2.1_eslint@6.7.2+webpack@4.46.0 + globby: registry.nlark.com/globby/9.2.0 + inquirer: registry.npmmirror.com/inquirer/7.3.3 + webpack: registry.npmmirror.com/webpack/4.46.0 + yorkie: registry.npmmirror.com/yorkie/2.0.0 + transitivePeerDependencies: + - webpack-cli + - webpack-command + dev: true + + registry.npmmirror.com/@vue/cli-plugin-router/4.5.15_@vue+cli-service@4.4.4: + resolution: {integrity: sha1-HnXIyJ30LGlPFDufECjePPXWHh4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-plugin-router/download/@vue/cli-plugin-router-4.5.15.tgz} + id: registry.npmmirror.com/@vue/cli-plugin-router/4.5.15 + name: '@vue/cli-plugin-router' + version: 4.5.15 + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0-0 + dependencies: + '@vue/cli-service': registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f + '@vue/cli-shared-utils': registry.npmmirror.com/@vue/cli-shared-utils/4.5.15 + dev: true + + registry.npmmirror.com/@vue/cli-plugin-unit-jest/4.4.4_1770ede1501523cd138a18b22895daee: + resolution: {integrity: sha1-oi4p7FruNPI+RNLA8+fXo72MGcw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-plugin-unit-jest/download/@vue/cli-plugin-unit-jest-4.4.4.tgz} + id: registry.npmmirror.com/@vue/cli-plugin-unit-jest/4.4.4 + name: '@vue/cli-plugin-unit-jest' + version: 4.4.4 + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0 + '@types/jest': registry.nlark.com/@types/jest/24.9.1 + '@vue/cli-service': registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f + '@vue/cli-shared-utils': registry.npmmirror.com/@vue/cli-shared-utils/4.5.15 + babel-core: registry.npmmirror.com/babel-core/7.0.0-bridge.0_@babel+core@7.16.0 + babel-jest: registry.npmmirror.com/babel-jest/24.9.0_@babel+core@7.16.0 + babel-plugin-transform-es2015-modules-commonjs: registry.npmmirror.com/babel-plugin-transform-es2015-modules-commonjs/6.26.2 + deepmerge: registry.nlark.com/deepmerge/4.2.2 + jest: registry.npmmirror.com/jest/24.9.0 + jest-environment-jsdom-fifteen: registry.npmmirror.com/jest-environment-jsdom-fifteen/1.0.2 + jest-serializer-vue: registry.npmmirror.com/jest-serializer-vue/2.0.2 + jest-transform-stub: registry.npmmirror.com/jest-transform-stub/2.0.0 + jest-watch-typeahead: registry.npmmirror.com/jest-watch-typeahead/0.4.2 + ts-jest: registry.npmmirror.com/ts-jest/24.3.0_jest@24.9.0 + vue-jest: registry.npmmirror.com/vue-jest/3.0.7_9235beb11cb2cd2c17b886f42402aca4 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + - vue + - vue-template-compiler + dev: true + + registry.npmmirror.com/@vue/cli-plugin-vuex/4.5.15_@vue+cli-service@4.4.4: + resolution: {integrity: sha1-RmwfAnd9Av71Opu0mjbMOjvP7E4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-plugin-vuex/download/@vue/cli-plugin-vuex-4.5.15.tgz} + id: registry.npmmirror.com/@vue/cli-plugin-vuex/4.5.15 + name: '@vue/cli-plugin-vuex' + version: 4.5.15 + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0-0 + dependencies: + '@vue/cli-service': registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f + dev: true + + registry.npmmirror.com/@vue/cli-service/4.4.4_718d40b2aeef08a3cca4d73cd22ce32f: + resolution: {integrity: sha1-JWyZDkmi/43FM7dzxQSmVDXHXEw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-service/download/@vue/cli-service-4.4.4.tgz} + id: registry.npmmirror.com/@vue/cli-service/4.4.4 + name: '@vue/cli-service' + version: 4.4.4 + engines: {node: '>=8'} + hasBin: true + peerDependencies: + less-loader: '*' + pug-plain-loader: '*' + raw-loader: '*' + sass-loader: '*' + stylus-loader: '*' + vue-template-compiler: ^2.0.0 + peerDependenciesMeta: + less-loader: + optional: true + pug-plain-loader: + optional: true + raw-loader: + optional: true + sass-loader: + optional: true + stylus-loader: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@intervolga/optimize-cssnano-plugin': registry.nlark.com/@intervolga/optimize-cssnano-plugin/1.0.6_webpack@4.46.0 + '@soda/friendly-errors-webpack-plugin': registry.nlark.com/@soda/friendly-errors-webpack-plugin/1.8.0_webpack@4.46.0 + '@soda/get-current-script': registry.npmmirror.com/@soda/get-current-script/1.0.2 + '@vue/cli-overlay': registry.npmmirror.com/@vue/cli-overlay/4.5.15 + '@vue/cli-plugin-router': registry.npmmirror.com/@vue/cli-plugin-router/4.5.15_@vue+cli-service@4.4.4 + '@vue/cli-plugin-vuex': registry.npmmirror.com/@vue/cli-plugin-vuex/4.5.15_@vue+cli-service@4.4.4 + '@vue/cli-shared-utils': registry.npmmirror.com/@vue/cli-shared-utils/4.5.15 + '@vue/component-compiler-utils': registry.npmmirror.com/@vue/component-compiler-utils/3.3.0 + '@vue/preload-webpack-plugin': registry.nlark.com/@vue/preload-webpack-plugin/1.1.2_502c618fc8a7d35df07e93275324a2d0 + '@vue/web-component-wrapper': registry.nlark.com/@vue/web-component-wrapper/1.3.0 + acorn: registry.nlark.com/acorn/7.4.1 + acorn-walk: registry.nlark.com/acorn-walk/7.2.0 + address: registry.nlark.com/address/1.1.2 + autoprefixer: registry.npmmirror.com/autoprefixer/9.8.8 + browserslist: registry.npmmirror.com/browserslist/4.17.6 + cache-loader: registry.nlark.com/cache-loader/4.1.0_webpack@4.46.0 + case-sensitive-paths-webpack-plugin: registry.nlark.com/case-sensitive-paths-webpack-plugin/2.4.0 + cli-highlight: registry.npmmirror.com/cli-highlight/2.1.11 + clipboardy: registry.npmmirror.com/clipboardy/2.3.0 + cliui: registry.nlark.com/cliui/6.0.0 + copy-webpack-plugin: registry.npmmirror.com/copy-webpack-plugin/5.1.2_webpack@4.46.0 + css-loader: registry.npmmirror.com/css-loader/3.6.0_webpack@4.46.0 + cssnano: registry.npmmirror.com/cssnano/4.1.11 + debug: registry.npmmirror.com/debug/4.3.2 + default-gateway: registry.npmmirror.com/default-gateway/5.0.5 + dotenv: registry.nlark.com/dotenv/8.6.0 + dotenv-expand: registry.nlark.com/dotenv-expand/5.1.0 + file-loader: registry.nlark.com/file-loader/4.3.0_webpack@4.46.0 + fs-extra: registry.nlark.com/fs-extra/7.0.1 + globby: registry.nlark.com/globby/9.2.0 + hash-sum: registry.nlark.com/hash-sum/2.0.0 + html-webpack-plugin: registry.npmmirror.com/html-webpack-plugin/3.2.0_webpack@4.46.0 + launch-editor-middleware: registry.nlark.com/launch-editor-middleware/2.2.1 + lodash.defaultsdeep: registry.nlark.com/lodash.defaultsdeep/4.6.1 + lodash.mapvalues: registry.nlark.com/lodash.mapvalues/4.6.0 + lodash.transform: registry.nlark.com/lodash.transform/4.6.0 + mini-css-extract-plugin: registry.npmmirror.com/mini-css-extract-plugin/0.9.0_webpack@4.46.0 + minimist: registry.nlark.com/minimist/1.2.5 + pnp-webpack-plugin: registry.npmmirror.com/pnp-webpack-plugin/1.7.0 + portfinder: registry.nlark.com/portfinder/1.0.28 + postcss-loader: registry.npmmirror.com/postcss-loader/3.0.0 + sass-loader: registry.npmmirror.com/sass-loader/8.0.2_sass@1.26.8 + ssri: registry.nlark.com/ssri/7.1.1 + terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin/2.3.8_webpack@4.46.0 + thread-loader: registry.nlark.com/thread-loader/2.1.3_webpack@4.46.0 + url-loader: registry.npmmirror.com/url-loader/2.3.0_file-loader@4.3.0+webpack@4.46.0 + vue-loader: registry.npmmirror.com/vue-loader/15.9.8_b8d247df3b20733387738da3a99b0112 + vue-style-loader: registry.nlark.com/vue-style-loader/4.1.3 + vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.6.10 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-bundle-analyzer: registry.npmmirror.com/webpack-bundle-analyzer/3.9.0 + webpack-chain: registry.nlark.com/webpack-chain/6.5.1 + webpack-dev-server: registry.npmmirror.com/webpack-dev-server/3.11.3_webpack@4.46.0 + webpack-merge: registry.nlark.com/webpack-merge/4.2.2 + transitivePeerDependencies: + - supports-color + - typescript + - webpack-cli + - webpack-command + dev: true + + registry.npmmirror.com/@vue/cli-shared-utils/4.5.15: + resolution: {integrity: sha1-26OFgWXb40ZXVfJWpIkOaQhFMtY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/cli-shared-utils/download/@vue/cli-shared-utils-4.5.15.tgz} + name: '@vue/cli-shared-utils' + version: 4.5.15 + dependencies: + '@hapi/joi': registry.npmmirror.com/@hapi/joi/15.1.1 + chalk: registry.nlark.com/chalk/2.4.2 + execa: registry.nlark.com/execa/1.0.0 + launch-editor: registry.nlark.com/launch-editor/2.2.1 + lru-cache: registry.nlark.com/lru-cache/5.1.1 + node-ipc: registry.nlark.com/node-ipc/9.2.1 + open: registry.npmmirror.com/open/6.4.0 + ora: registry.nlark.com/ora/3.4.0 + read-pkg: registry.nlark.com/read-pkg/5.2.0 + request: registry.npmmirror.com/request/2.88.2 + semver: registry.nlark.com/semver/6.3.0 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.npmmirror.com/@vue/component-compiler-utils/3.3.0: + resolution: {integrity: sha1-+fX7U0ZLDDeyyNLz+/5E32D2Hck=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/component-compiler-utils/download/@vue/component-compiler-utils-3.3.0.tgz} + name: '@vue/component-compiler-utils' + version: 3.3.0 + dependencies: + consolidate: registry.nlark.com/consolidate/0.15.1 + hash-sum: registry.nlark.com/hash-sum/1.0.2 + lru-cache: registry.nlark.com/lru-cache/4.1.5 + merge-source-map: registry.nlark.com/merge-source-map/1.1.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6 + source-map: registry.nlark.com/source-map/0.6.1 + vue-template-es2015-compiler: registry.nlark.com/vue-template-es2015-compiler/1.9.1 + optionalDependencies: + prettier: registry.nlark.com/prettier/2.4.1 + dev: true + + registry.npmmirror.com/@vue/test-utils/1.0.0-beta.29_46af323429f830a6028b5e43b9b2e56c: + resolution: {integrity: sha1-yULPJeiRzwgbagMzK0rh70MHJvA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/test-utils/download/@vue/test-utils-1.0.0-beta.29.tgz} + id: registry.npmmirror.com/@vue/test-utils/1.0.0-beta.29 + name: '@vue/test-utils' + version: 1.0.0-beta.29 + peerDependencies: + vue: 2.x + vue-template-compiler: ^2.x + dependencies: + dom-event-types: registry.npmmirror.com/dom-event-types/1.0.0 + lodash: registry.nlark.com/lodash/4.17.21 + vue: registry.npmmirror.com/vue/2.6.10 + vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.6.10 + dev: true + + registry.npmmirror.com/@webassemblyjs/ast/1.9.0: + resolution: {integrity: sha1-vYUGBLQEJFmlpBzX0zjL7Wle2WQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz} + name: '@webassemblyjs/ast' + version: 1.9.0 + dependencies: + '@webassemblyjs/helper-module-context': registry.nlark.com/@webassemblyjs/helper-module-context/1.9.0 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/1.9.0 + '@webassemblyjs/wast-parser': registry.npmmirror.com/@webassemblyjs/wast-parser/1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-api-error/1.9.0: + resolution: {integrity: sha1-ID9nbjM7lsnaLuqzzO8zxFkotqI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-api-error/download/@webassemblyjs/helper-api-error-1.9.0.tgz} + name: '@webassemblyjs/helper-api-error' + version: 1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-buffer/1.9.0: + resolution: {integrity: sha1-oUQtJpxf6yP8vJ73WdrDVH8p3gA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-buffer/download/@webassemblyjs/helper-buffer-1.9.0.tgz} + name: '@webassemblyjs/helper-buffer' + version: 1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-code-frame/1.9.0: + resolution: {integrity: sha1-ZH+Iks0gQ6gqwMjF51w28dkVnyc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-code-frame/download/@webassemblyjs/helper-code-frame-1.9.0.tgz} + name: '@webassemblyjs/helper-code-frame' + version: 1.9.0 + dependencies: + '@webassemblyjs/wast-printer': registry.npmmirror.com/@webassemblyjs/wast-printer/1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/1.9.0: + resolution: {integrity: sha1-T+2L6sm4wU+MWLcNEk1UndH+V5A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/download/@webassemblyjs/helper-wasm-bytecode-1.9.0.tgz} + name: '@webassemblyjs/helper-wasm-bytecode' + version: 1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-wasm-section/1.9.0: + resolution: {integrity: sha1-WkE41aYpK6GLBMWuSXF+QWeWU0Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/download/@webassemblyjs/helper-wasm-section-1.9.0.tgz} + name: '@webassemblyjs/helper-wasm-section' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer/1.9.0 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/1.9.0 + '@webassemblyjs/wasm-gen': registry.nlark.com/@webassemblyjs/wasm-gen/1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/ieee754/1.9.0: + resolution: {integrity: sha1-Fceg+6roP7JhQ7us9tbfFwKtOeQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ieee754/download/@webassemblyjs/ieee754-1.9.0.tgz} + name: '@webassemblyjs/ieee754' + version: 1.9.0 + dependencies: + '@xtuc/ieee754': registry.nlark.com/@xtuc/ieee754/1.2.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/leb128/1.9.0: + resolution: {integrity: sha1-8Zygt2ptxVYjoJz/p2noOPoeHJU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/leb128/download/@webassemblyjs/leb128-1.9.0.tgz} + name: '@webassemblyjs/leb128' + version: 1.9.0 + dependencies: + '@xtuc/long': registry.npmmirror.com/@xtuc/long/4.2.2 + dev: true + + registry.npmmirror.com/@webassemblyjs/wasm-opt/1.9.0: + resolution: {integrity: sha1-IhEYHlsxMmRDzIES658LkChyGmE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-opt/download/@webassemblyjs/wasm-opt-1.9.0.tgz} + name: '@webassemblyjs/wasm-opt' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer/1.9.0 + '@webassemblyjs/wasm-gen': registry.nlark.com/@webassemblyjs/wasm-gen/1.9.0 + '@webassemblyjs/wasm-parser': registry.nlark.com/@webassemblyjs/wasm-parser/1.9.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/wast-parser/1.9.0: + resolution: {integrity: sha1-MDERXXmsW9JhVWzsw/qQo+9FGRQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wast-parser/download/@webassemblyjs/wast-parser-1.9.0.tgz} + name: '@webassemblyjs/wast-parser' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/floating-point-hex-parser': registry.nlark.com/@webassemblyjs/floating-point-hex-parser/1.9.0 + '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error/1.9.0 + '@webassemblyjs/helper-code-frame': registry.npmmirror.com/@webassemblyjs/helper-code-frame/1.9.0 + '@webassemblyjs/helper-fsm': registry.nlark.com/@webassemblyjs/helper-fsm/1.9.0 + '@xtuc/long': registry.npmmirror.com/@xtuc/long/4.2.2 + dev: true + + registry.npmmirror.com/@webassemblyjs/wast-printer/1.9.0: + resolution: {integrity: sha1-STXVTIX+9jewDOn1I3dFHQDUeJk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wast-printer/download/@webassemblyjs/wast-printer-1.9.0.tgz} + name: '@webassemblyjs/wast-printer' + version: 1.9.0 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/wast-parser': registry.npmmirror.com/@webassemblyjs/wast-parser/1.9.0 + '@xtuc/long': registry.npmmirror.com/@xtuc/long/4.2.2 + dev: true + + registry.npmmirror.com/@xtuc/long/4.2.2: + resolution: {integrity: sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@xtuc/long/download/@xtuc/long-4.2.2.tgz} + name: '@xtuc/long' + version: 4.2.2 + dev: true + + registry.npmmirror.com/ajv/6.12.6: + resolution: {integrity: sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/download/ajv-6.12.6.tgz} + name: ajv + version: 6.12.6 + dependencies: + fast-deep-equal: registry.nlark.com/fast-deep-equal/3.1.3 + fast-json-stable-stringify: registry.nlark.com/fast-json-stable-stringify/2.1.0 + json-schema-traverse: registry.nlark.com/json-schema-traverse/0.4.1 + uri-js: registry.nlark.com/uri-js/4.4.1 + dev: true + + registry.npmmirror.com/ansi-html-community/0.0.8: + resolution: {integrity: sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-html-community/download/ansi-html-community-0.0.8.tgz} + name: ansi-html-community + version: 0.0.8 + engines: {'0': node >= 0.8.0} + hasBin: true + dev: true + + registry.npmmirror.com/asn1.js/5.4.1: + resolution: {integrity: sha1-EamAuE67kXgc41sP3C7ilON4Pwc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asn1.js/download/asn1.js-5.4.1.tgz} + name: asn1.js + version: 5.4.1 + dependencies: + bn.js: registry.nlark.com/bn.js/4.12.0 + inherits: registry.nlark.com/inherits/2.0.4 + minimalistic-assert: registry.nlark.com/minimalistic-assert/1.0.1 + safer-buffer: registry.nlark.com/safer-buffer/2.1.2 + dev: true + + registry.npmmirror.com/asn1/0.2.6: + resolution: {integrity: sha1-DTp7tuZOAqkMAwOzHykoaOoJoI0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asn1/download/asn1-0.2.6.tgz} + name: asn1 + version: 0.2.6 + dependencies: + safer-buffer: registry.nlark.com/safer-buffer/2.1.2 + dev: true + + registry.npmmirror.com/async-validator/1.8.5: + resolution: {integrity: sha1-3D4I7B/Q3dtn5ghC8CwM0c7G1/A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async-validator/download/async-validator-1.8.5.tgz} + name: async-validator + version: 1.8.5 + dependencies: + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + dev: false + + registry.npmmirror.com/async/2.6.3: + resolution: {integrity: sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async/download/async-2.6.3.tgz} + name: async + version: 2.6.3 + dependencies: + lodash: registry.nlark.com/lodash/4.17.21 + + registry.npmmirror.com/async/3.2.2: + resolution: {integrity: sha1-LrdnEDS7IZTUXTDjHiTsfn+WcM0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async/download/async-3.2.2.tgz} + name: async + version: 3.2.2 + dev: false + + registry.npmmirror.com/autoprefixer/9.5.1: + resolution: {integrity: sha1-JDsSZ7Z+fpR/KJGdeGtQ07sPs1c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/download/autoprefixer-9.5.1.tgz} + name: autoprefixer + version: 9.5.1 + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001280 + normalize-range: registry.nlark.com/normalize-range/0.1.2 + num2fraction: registry.nlark.com/num2fraction/1.2.2 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.npmmirror.com/autoprefixer/9.8.8: + resolution: {integrity: sha1-/UvUWVOF+m8GWZ3nSaTV96R0lXo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/download/autoprefixer-9.8.8.tgz} + name: autoprefixer + version: 9.8.8 + hasBin: true + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001280 + normalize-range: registry.nlark.com/normalize-range/0.1.2 + num2fraction: registry.nlark.com/num2fraction/1.2.2 + picocolors: registry.npmmirror.com/picocolors/0.2.1 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/4.1.0 + dev: true + + registry.npmmirror.com/axios/0.24.0: + resolution: {integrity: sha1-gE5voeS5xSiFAd2d/1anoJQNINY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/download/axios-0.24.0.tgz} + name: axios + version: 0.24.0 + dependencies: + follow-redirects: registry.npmmirror.com/follow-redirects/1.14.5 + transitivePeerDependencies: + - debug + dev: false + + registry.npmmirror.com/babel-core/7.0.0-bridge.0_@babel+core@7.16.0: + resolution: {integrity: sha1-laSS3dkPm06aSh2hTrM1uHtjTs4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-core/download/babel-core-7.0.0-bridge.0.tgz} + id: registry.npmmirror.com/babel-core/7.0.0-bridge.0 + name: babel-core + version: 7.0.0-bridge.0 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + dev: true + + registry.npmmirror.com/babel-eslint/10.1.0_eslint@6.7.2: + resolution: {integrity: sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-eslint/download/babel-eslint-10.1.0.tgz} + id: registry.npmmirror.com/babel-eslint/10.1.0 + name: babel-eslint + version: 10.1.0 + engines: {node: '>=6'} + deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. + peerDependencies: + eslint: '>= 4.12.1' + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + eslint: registry.npmmirror.com/eslint/6.7.2 + eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0 + resolve: registry.nlark.com/resolve/1.20.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/babel-generator/6.26.1: + resolution: {integrity: sha1-GERAjTuPDTWkBOp6wYDwh6YBvZA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-generator/download/babel-generator-6.26.1.tgz} + name: babel-generator + version: 6.26.1 + dependencies: + babel-messages: registry.npmmirror.com/babel-messages/6.23.0 + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + babel-types: registry.nlark.com/babel-types/6.26.0 + detect-indent: registry.nlark.com/detect-indent/4.0.0 + jsesc: registry.nlark.com/jsesc/1.3.0 + lodash: registry.nlark.com/lodash/4.17.21 + source-map: registry.nlark.com/source-map/0.5.7 + trim-right: registry.npmmirror.com/trim-right/1.0.1 + dev: true + + registry.npmmirror.com/babel-jest/23.6.0: + resolution: {integrity: sha1-pkQjI2ZVeiJAoMCD2msleGGFovE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-jest/download/babel-jest-23.6.0.tgz} + name: babel-jest + version: 23.6.0 + peerDependencies: + babel-core: ^6.0.0 || ^7.0.0-0 + dependencies: + babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul/4.1.6 + babel-preset-jest: registry.nlark.com/babel-preset-jest/23.2.0 + dev: true + + registry.npmmirror.com/babel-jest/24.9.0_@babel+core@7.16.0: + resolution: {integrity: sha1-P8Mny4RnuJ0U17xw4xUQSng8zVQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-jest/download/babel-jest-24.9.0.tgz} + id: registry.npmmirror.com/babel-jest/24.9.0 + name: babel-jest + version: 24.9.0 + engines: {node: '>= 6'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@jest/transform': registry.npmmirror.com/@jest/transform/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + '@types/babel__core': registry.nlark.com/@types/babel__core/7.1.16 + babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul/5.2.0 + babel-preset-jest: registry.nlark.com/babel-preset-jest/24.9.0_@babel+core@7.16.0 + chalk: registry.nlark.com/chalk/2.4.2 + slash: registry.nlark.com/slash/2.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/babel-loader/8.2.3_1bd60a6cd0f7024f034efd75ae733a3f: + resolution: {integrity: sha1-iYa0Dxpkys/LS4QpMgCF72ixNC0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-loader/download/babel-loader-8.2.3.tgz} + id: registry.npmmirror.com/babel-loader/8.2.3 + name: babel-loader + version: 8.2.3 + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + find-cache-dir: registry.nlark.com/find-cache-dir/3.3.2 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + make-dir: registry.nlark.com/make-dir/3.1.0 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.npmmirror.com/babel-messages/6.23.0: + resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-messages/download/babel-messages-6.23.0.tgz} + name: babel-messages + version: 6.23.0 + dependencies: + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + dev: true + + registry.npmmirror.com/babel-plugin-istanbul/4.1.6: + resolution: {integrity: sha1-NsWbIZLvzoHFs3gyG3QXWt0cmkU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-istanbul/download/babel-plugin-istanbul-4.1.6.tgz} + name: babel-plugin-istanbul + version: 4.1.6 + dependencies: + babel-plugin-syntax-object-rest-spread: registry.nlark.com/babel-plugin-syntax-object-rest-spread/6.13.0 + find-up: registry.npmmirror.com/find-up/2.1.0 + istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument/1.10.2 + test-exclude: registry.nlark.com/test-exclude/4.2.3 + dev: true + + registry.npmmirror.com/babel-plugin-istanbul/5.2.0: + resolution: {integrity: sha1-30reg9iXqS3wacTZolzyZxKTyFQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-istanbul/download/babel-plugin-istanbul-5.2.0.tgz} + name: babel-plugin-istanbul + version: 5.2.0 + engines: {node: '>=6'} + dependencies: + '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5 + find-up: registry.npmmirror.com/find-up/3.0.0 + istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument/3.3.0 + test-exclude: registry.nlark.com/test-exclude/5.2.3 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.2.3_@babel+core@7.16.0: + resolution: {integrity: sha1-btjjCYGwYvj+asqIc6N+vMjMHA8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.3.tgz} + id: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.2.3 + name: babel-plugin-polyfill-corejs2 + version: 0.2.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.16.0 + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.16.0 + semver: registry.nlark.com/semver/6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.3.0_@babel+core@7.16.0: + resolution: {integrity: sha1-+nyj0e6d3GGTYA/7YyyXhdVJGK8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.3.0.tgz} + id: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.3.0 + name: babel-plugin-polyfill-corejs3 + version: 0.3.0 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.16.0 + core-js-compat: registry.npmmirror.com/core-js-compat/3.19.1 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.2.3_@babel+core@7.16.0: + resolution: {integrity: sha1-LpgI9QJ8QzbJlJkrSKQmJYDLjW0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.3.tgz} + id: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.2.3 + name: babel-plugin-polyfill-regenerator + version: 0.2.3 + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.16.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/babel-plugin-transform-es2015-modules-commonjs/6.26.2: + resolution: {integrity: sha1-WKeThjqefKhwvcWogRF/+sJ9tvM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz} + name: babel-plugin-transform-es2015-modules-commonjs + version: 6.26.2 + dependencies: + babel-plugin-transform-strict-mode: registry.npmmirror.com/babel-plugin-transform-strict-mode/6.24.1 + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + babel-template: registry.nlark.com/babel-template/6.26.0 + babel-types: registry.nlark.com/babel-types/6.26.0 + dev: true + + registry.npmmirror.com/babel-plugin-transform-strict-mode/6.24.1: + resolution: {integrity: sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz} + name: babel-plugin-transform-strict-mode + version: 6.24.1 + dependencies: + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + babel-types: registry.nlark.com/babel-types/6.26.0 + dev: true + + registry.npmmirror.com/babel-polyfill/6.26.0: + resolution: {integrity: sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-polyfill/download/babel-polyfill-6.26.0.tgz} + name: babel-polyfill + version: 6.26.0 + dependencies: + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + core-js: registry.npmmirror.com/core-js/2.6.12 + regenerator-runtime: registry.nlark.com/regenerator-runtime/0.10.5 + dev: true + + registry.npmmirror.com/babel-traverse/6.26.0: + resolution: {integrity: sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-traverse/download/babel-traverse-6.26.0.tgz} + name: babel-traverse + version: 6.26.0 + dependencies: + babel-code-frame: registry.nlark.com/babel-code-frame/6.26.0 + babel-messages: registry.npmmirror.com/babel-messages/6.23.0 + babel-runtime: registry.nlark.com/babel-runtime/6.26.0 + babel-types: registry.nlark.com/babel-types/6.26.0 + babylon: registry.nlark.com/babylon/6.18.0 + debug: registry.npmmirror.com/debug/2.6.9 + globals: registry.npmmirror.com/globals/9.18.0 + invariant: registry.nlark.com/invariant/2.2.4 + lodash: registry.nlark.com/lodash/4.17.21 + dev: true + + registry.npmmirror.com/batch/0.6.1: + resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/batch/download/batch-0.6.1.tgz} + name: batch + version: 0.6.1 + dev: true + + registry.npmmirror.com/browserslist/4.17.6: + resolution: {integrity: sha1-x2vjPneGtJf2bK0lpzdWyLk4mF0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/download/browserslist-4.17.6.tgz} + name: browserslist + version: 4.17.6 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001280 + electron-to-chromium: registry.npmmirror.com/electron-to-chromium/1.3.895 + escalade: registry.nlark.com/escalade/3.1.1 + node-releases: registry.npmmirror.com/node-releases/2.0.1 + picocolors: registry.npmmirror.com/picocolors/1.0.0 + dev: true + + registry.npmmirror.com/bs-logger/0.2.6: + resolution: {integrity: sha1-6302UwenLPl0zGzadraDVK0za9g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bs-logger/download/bs-logger-0.2.6.tgz} + name: bs-logger + version: 0.2.6 + engines: {node: '>= 6'} + dependencies: + fast-json-stable-stringify: registry.nlark.com/fast-json-stable-stringify/2.1.0 + dev: true + + registry.npmmirror.com/buffer-json/2.0.0: + resolution: {integrity: sha1-9z4TseQvGW/i/WfQAcfXEH7dfCM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer-json/download/buffer-json-2.0.0.tgz} + name: buffer-json + version: 2.0.0 + dev: true + + registry.npmmirror.com/builtin-status-codes/3.0.0: + resolution: {integrity: sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz} + name: builtin-status-codes + version: 3.0.0 + dev: true + + registry.npmmirror.com/cache-base/1.0.1: + resolution: {integrity: sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cache-base/download/cache-base-1.0.1.tgz} + name: cache-base + version: 1.0.1 + engines: {node: '>=0.10.0'} + dependencies: + collection-visit: registry.nlark.com/collection-visit/1.0.0 + component-emitter: registry.nlark.com/component-emitter/1.3.0 + get-value: registry.nlark.com/get-value/2.0.6 + has-value: registry.nlark.com/has-value/1.0.0 + isobject: registry.nlark.com/isobject/3.0.1 + set-value: registry.nlark.com/set-value/2.0.1 + to-object-path: registry.nlark.com/to-object-path/0.3.0 + union-value: registry.nlark.com/union-value/1.0.1 + unset-value: registry.nlark.com/unset-value/1.0.0 + dev: true + + registry.npmmirror.com/caller-callsite/2.0.0: + resolution: {integrity: sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caller-callsite/download/caller-callsite-2.0.0.tgz} + name: caller-callsite + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + callsites: registry.nlark.com/callsites/2.0.0 + dev: true + + registry.npmmirror.com/caller-path/2.0.0: + resolution: {integrity: sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caller-path/download/caller-path-2.0.0.tgz} + name: caller-path + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + caller-callsite: registry.npmmirror.com/caller-callsite/2.0.0 + dev: true + + registry.npmmirror.com/caniuse-lite/1.0.30001280: + resolution: {integrity: sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001280.tgz?cache=0&sync_timestamp=1636700365979&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcaniuse-lite%2Fdownload%2Fcaniuse-lite-1.0.30001280.tgz} + name: caniuse-lite + version: 1.0.30001280 + dev: true + + registry.npmmirror.com/chardet/0.7.0: + resolution: {integrity: sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chardet/download/chardet-0.7.0.tgz} + name: chardet + version: 0.7.0 + dev: true + + registry.npmmirror.com/chokidar/2.1.8: + resolution: {integrity: sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/download/chokidar-2.1.8.tgz} + name: chokidar + version: 2.1.8 + deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies. + dependencies: + anymatch: registry.nlark.com/anymatch/2.0.0 + async-each: registry.nlark.com/async-each/1.0.3 + braces: registry.nlark.com/braces/2.3.2 + glob-parent: registry.npmmirror.com/glob-parent/3.1.0 + inherits: registry.nlark.com/inherits/2.0.4 + is-binary-path: registry.nlark.com/is-binary-path/1.0.1 + is-glob: registry.npmmirror.com/is-glob/4.0.3 + normalize-path: registry.nlark.com/normalize-path/3.0.0 + path-is-absolute: registry.nlark.com/path-is-absolute/1.0.1 + readdirp: registry.nlark.com/readdirp/2.2.1 + upath: registry.nlark.com/upath/1.2.0 + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents/1.2.13 + dev: true + + registry.npmmirror.com/chokidar/3.5.2: + resolution: {integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/download/chokidar-3.5.2.tgz} + name: chokidar + version: 3.5.2 + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: registry.nlark.com/anymatch/3.1.2 + braces: registry.nlark.com/braces/3.0.2 + glob-parent: registry.npmmirror.com/glob-parent/5.1.2 + is-binary-path: registry.nlark.com/is-binary-path/2.1.0 + is-glob: registry.npmmirror.com/is-glob/4.0.3 + normalize-path: registry.nlark.com/normalize-path/3.0.0 + readdirp: registry.nlark.com/readdirp/3.6.0 + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents/2.3.2 + dev: true + + registry.npmmirror.com/clean-css/4.2.4: + resolution: {integrity: sha1-czv0brpOYHxokepXwkqYk1aDEXg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/clean-css/download/clean-css-4.2.4.tgz} + name: clean-css + version: 4.2.4 + engines: {node: '>= 4.0'} + dependencies: + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.npmmirror.com/cli-highlight/2.1.11: + resolution: {integrity: sha1-SXNvpFLwqvT65YDjCssmgo0twb8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-highlight/download/cli-highlight-2.1.11.tgz} + name: cli-highlight + version: 2.1.11 + engines: {node: '>=8.0.0', npm: '>=5.0.0'} + hasBin: true + dependencies: + chalk: registry.nlark.com/chalk/4.1.2 + highlight.js: registry.npmmirror.com/highlight.js/10.7.3 + mz: registry.npmmirror.com/mz/2.7.0 + parse5: registry.nlark.com/parse5/5.1.1 + parse5-htmlparser2-tree-adapter: registry.nlark.com/parse5-htmlparser2-tree-adapter/6.0.1 + yargs: registry.npmmirror.com/yargs/16.2.0 + dev: true + + registry.npmmirror.com/cli-spinners/2.6.1: + resolution: {integrity: sha1-rclU6+KBw3pjGb+kAebdJIj/tw0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-spinners/download/cli-spinners-2.6.1.tgz} + name: cli-spinners + version: 2.6.1 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/clipboardy/2.3.0: + resolution: {integrity: sha1-PCkDZQxo5GqRs4iYW8J3QofbopA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/clipboardy/download/clipboardy-2.3.0.tgz} + name: clipboardy + version: 2.3.0 + engines: {node: '>=8'} + dependencies: + arch: registry.nlark.com/arch/2.2.0 + execa: registry.nlark.com/execa/1.0.0 + is-wsl: registry.nlark.com/is-wsl/2.2.0 + dev: true + + registry.npmmirror.com/coa/2.0.2: + resolution: {integrity: sha1-Q/bCEVG07yv1cYfbDXPeIp4+fsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/coa/download/coa-2.0.2.tgz} + name: coa + version: 2.0.2 + engines: {node: '>= 4.0'} + dependencies: + '@types/q': registry.nlark.com/@types/q/1.5.5 + chalk: registry.nlark.com/chalk/2.4.2 + q: registry.nlark.com/q/1.5.1 + dev: true + + registry.npmmirror.com/commander/2.17.1: + resolution: {integrity: sha1-vXerfebelCBc6sxy8XFtKfIKd78=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/download/commander-2.17.1.tgz} + name: commander + version: 2.17.1 + dev: true + + registry.npmmirror.com/commander/2.19.0: + resolution: {integrity: sha1-9hmKqE5bg8RgVLlN3tv+1e6f8So=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/download/commander-2.19.0.tgz} + name: commander + version: 2.19.0 + dev: true + + registry.npmmirror.com/commander/2.20.3: + resolution: {integrity: sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/download/commander-2.20.3.tgz} + name: commander + version: 2.20.3 + dev: true + + registry.npmmirror.com/commander/8.3.0: + resolution: {integrity: sha1-SDfqGy2me5xhamevuw+v7lZ7ymY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/download/commander-8.3.0.tgz} + name: commander + version: 8.3.0 + engines: {node: '>= 12'} + dev: true + + registry.npmmirror.com/condense-newlines/0.2.1: + resolution: {integrity: sha1-PemFVTE5R10yUCyDsC9gaE0kxV8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/condense-newlines/download/condense-newlines-0.2.1.tgz} + name: condense-newlines + version: 0.2.1 + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + is-whitespace: registry.nlark.com/is-whitespace/0.3.0 + kind-of: registry.nlark.com/kind-of/3.2.2 + dev: true + + registry.npmmirror.com/content-disposition/0.5.3: + resolution: {integrity: sha1-4TDK9+cnkIfFYWwgB9BIVpiYT70=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/content-disposition/download/content-disposition-0.5.3.tgz} + name: content-disposition + version: 0.5.3 + engines: {node: '>= 0.6'} + dependencies: + safe-buffer: registry.nlark.com/safe-buffer/5.1.2 + dev: true + + registry.npmmirror.com/cookie-signature/1.0.6: + resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cookie-signature/download/cookie-signature-1.0.6.tgz} + name: cookie-signature + version: 1.0.6 + dev: true + + registry.npmmirror.com/copy-webpack-plugin/5.1.2_webpack@4.46.0: + resolution: {integrity: sha1-ioieHcr6bJHGzUvhrRWPHTgjuuI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/copy-webpack-plugin/download/copy-webpack-plugin-5.1.2.tgz} + id: registry.npmmirror.com/copy-webpack-plugin/5.1.2 + name: copy-webpack-plugin + version: 5.1.2 + engines: {node: '>= 6.9.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + cacache: registry.nlark.com/cacache/12.0.4 + find-cache-dir: registry.nlark.com/find-cache-dir/2.1.0 + glob-parent: registry.npmmirror.com/glob-parent/3.1.0 + globby: registry.nlark.com/globby/7.1.1 + is-glob: registry.npmmirror.com/is-glob/4.0.3 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + minimatch: registry.nlark.com/minimatch/3.0.4 + normalize-path: registry.nlark.com/normalize-path/3.0.0 + p-limit: registry.nlark.com/p-limit/2.3.0 + schema-utils: registry.nlark.com/schema-utils/1.0.0 + serialize-javascript: registry.nlark.com/serialize-javascript/4.0.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-log: registry.nlark.com/webpack-log/2.0.0 + dev: true + + registry.npmmirror.com/core-js-compat/3.19.1: + resolution: {integrity: sha1-/lmPGpvzcxDXfDgTlo6ffHu5lHY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js-compat/download/core-js-compat-3.19.1.tgz} + name: core-js-compat + version: 3.19.1 + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + semver: registry.nlark.com/semver/7.0.0 + dev: true + + registry.npmmirror.com/core-js/2.6.12: + resolution: {integrity: sha1-2TM9+nsGXjR8xWgiGdb2kIWcwuw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js/download/core-js-2.6.12.tgz} + name: core-js + version: 2.6.12 + deprecated: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js. + requiresBuild: true + + registry.npmmirror.com/core-js/3.6.5: + resolution: {integrity: sha1-c5XcJzrzf7LlDpvT2f6EEoUjHRo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js/download/core-js-3.6.5.tgz} + name: core-js + version: 3.6.5 + requiresBuild: true + dev: true + + registry.npmmirror.com/css-loader/3.6.0_webpack@4.46.0: + resolution: {integrity: sha1-Lkssfm4tJ/jI8o9hv/zS5ske9kU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-loader/download/css-loader-3.6.0.tgz} + id: registry.npmmirror.com/css-loader/3.6.0 + name: css-loader + version: 3.6.0 + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + camelcase: registry.nlark.com/camelcase/5.3.1 + cssesc: registry.nlark.com/cssesc/3.0.0 + icss-utils: registry.nlark.com/icss-utils/4.1.1 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + normalize-path: registry.nlark.com/normalize-path/3.0.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-modules-extract-imports: registry.nlark.com/postcss-modules-extract-imports/2.0.0 + postcss-modules-local-by-default: registry.nlark.com/postcss-modules-local-by-default/3.0.3 + postcss-modules-scope: registry.nlark.com/postcss-modules-scope/2.2.0 + postcss-modules-values: registry.nlark.com/postcss-modules-values/3.0.0 + postcss-value-parser: registry.nlark.com/postcss-value-parser/4.1.0 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + semver: registry.nlark.com/semver/6.3.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.npmmirror.com/css-url-regex/1.1.0: + resolution: {integrity: sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-url-regex/download/css-url-regex-1.1.0.tgz} + name: css-url-regex + version: 1.1.0 + dev: true + + registry.npmmirror.com/css-what/3.4.2: + resolution: {integrity: sha1-6nAm/LAXd+295SEk4h8yfnrpUOQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-what/download/css-what-3.4.2.tgz} + name: css-what + version: 3.4.2 + engines: {node: '>= 6'} + dev: true + + registry.npmmirror.com/css-what/5.1.0: + resolution: {integrity: sha1-P3tweq32M7r2LCzrhXm1RbtA9/4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-what/download/css-what-5.1.0.tgz} + name: css-what + version: 5.1.0 + engines: {node: '>= 6'} + dev: true + + registry.npmmirror.com/cssnano-preset-default/4.0.8: + resolution: {integrity: sha1-kgYisfwelaNOiDggPxOXpQTy0/8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cssnano-preset-default/download/cssnano-preset-default-4.0.8.tgz} + name: cssnano-preset-default + version: 4.0.8 + engines: {node: '>=6.9.0'} + dependencies: + css-declaration-sorter: registry.nlark.com/css-declaration-sorter/4.0.1 + cssnano-util-raw-cache: registry.nlark.com/cssnano-util-raw-cache/4.0.1 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-calc: registry.nlark.com/postcss-calc/7.0.5 + postcss-colormin: registry.npmmirror.com/postcss-colormin/4.0.3 + postcss-convert-values: registry.npmmirror.com/postcss-convert-values/4.0.1 + postcss-discard-comments: registry.nlark.com/postcss-discard-comments/4.0.2 + postcss-discard-duplicates: registry.nlark.com/postcss-discard-duplicates/4.0.2 + postcss-discard-empty: registry.nlark.com/postcss-discard-empty/4.0.1 + postcss-discard-overridden: registry.nlark.com/postcss-discard-overridden/4.0.1 + postcss-merge-longhand: registry.npmmirror.com/postcss-merge-longhand/4.0.11 + postcss-merge-rules: registry.nlark.com/postcss-merge-rules/4.0.3 + postcss-minify-font-values: registry.nlark.com/postcss-minify-font-values/4.0.2 + postcss-minify-gradients: registry.npmmirror.com/postcss-minify-gradients/4.0.2 + postcss-minify-params: registry.nlark.com/postcss-minify-params/4.0.2 + postcss-minify-selectors: registry.nlark.com/postcss-minify-selectors/4.0.2 + postcss-normalize-charset: registry.nlark.com/postcss-normalize-charset/4.0.1 + postcss-normalize-display-values: registry.nlark.com/postcss-normalize-display-values/4.0.2 + postcss-normalize-positions: registry.nlark.com/postcss-normalize-positions/4.0.2 + postcss-normalize-repeat-style: registry.nlark.com/postcss-normalize-repeat-style/4.0.2 + postcss-normalize-string: registry.nlark.com/postcss-normalize-string/4.0.2 + postcss-normalize-timing-functions: registry.nlark.com/postcss-normalize-timing-functions/4.0.2 + postcss-normalize-unicode: registry.nlark.com/postcss-normalize-unicode/4.0.1 + postcss-normalize-url: registry.nlark.com/postcss-normalize-url/4.0.1 + postcss-normalize-whitespace: registry.nlark.com/postcss-normalize-whitespace/4.0.2 + postcss-ordered-values: registry.nlark.com/postcss-ordered-values/4.1.2 + postcss-reduce-initial: registry.nlark.com/postcss-reduce-initial/4.0.3 + postcss-reduce-transforms: registry.nlark.com/postcss-reduce-transforms/4.0.2 + postcss-svgo: registry.npmmirror.com/postcss-svgo/4.0.3 + postcss-unique-selectors: registry.nlark.com/postcss-unique-selectors/4.0.1 + dev: true + + registry.npmmirror.com/cssnano/4.1.11: + resolution: {integrity: sha1-x7X1uB2iacsf2YLLlgwSAJEMmpk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cssnano/download/cssnano-4.1.11.tgz} + name: cssnano + version: 4.1.11 + engines: {node: '>=6.9.0'} + dependencies: + cosmiconfig: registry.nlark.com/cosmiconfig/5.2.1 + cssnano-preset-default: registry.npmmirror.com/cssnano-preset-default/4.0.8 + is-resolvable: registry.nlark.com/is-resolvable/1.1.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + dev: true + + registry.npmmirror.com/data-urls/1.1.0: + resolution: {integrity: sha1-Fe4Fgrql4iu1nHcUDaj5x2lju/4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/data-urls/download/data-urls-1.1.0.tgz} + name: data-urls + version: 1.1.0 + dependencies: + abab: registry.nlark.com/abab/2.0.5 + whatwg-mimetype: registry.nlark.com/whatwg-mimetype/2.3.0 + whatwg-url: registry.npmmirror.com/whatwg-url/7.1.0 + dev: true + + registry.npmmirror.com/deasync/0.1.24: + resolution: {integrity: sha512-i98vg42xNfRZCymummMAN0rIcQ1gZFinSe3btvPIvy6JFTaeHcumeKybRo2HTv86nasfmT0nEgAn2ggLZhOCVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deasync/download/deasync-0.1.24.tgz} + name: deasync + version: 0.1.24 + engines: {node: '>=0.11.0'} + requiresBuild: true + dependencies: + bindings: registry.nlark.com/bindings/1.5.0 + node-addon-api: registry.npmmirror.com/node-addon-api/1.7.2 + dev: true + + registry.npmmirror.com/debug/2.6.9: + resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz} + name: debug + version: 2.6.9 + dependencies: + ms: registry.npmmirror.com/ms/2.0.0 + dev: true + + registry.npmmirror.com/debug/3.2.7: + resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz} + name: debug + version: 3.2.7 + dependencies: + ms: registry.npmmirror.com/ms/2.1.3 + + registry.npmmirror.com/debug/4.3.2: + resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-4.3.2.tgz} + name: debug + version: 4.3.2 + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: registry.npmmirror.com/ms/2.1.2 + dev: true + + registry.npmmirror.com/debug/4.3.2_supports-color@6.1.0: + resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-4.3.2.tgz} + id: registry.npmmirror.com/debug/4.3.2 + name: debug + version: 4.3.2 + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: registry.npmmirror.com/ms/2.1.2 + supports-color: registry.nlark.com/supports-color/6.1.0 + dev: true + + registry.npmmirror.com/decamelize/1.2.0: + resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/decamelize/download/decamelize-1.2.0.tgz} + name: decamelize + version: 1.2.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/default-gateway/4.2.0: + resolution: {integrity: sha1-FnEEx1AMIRX23WmwpTa7jtcgVSs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/default-gateway/download/default-gateway-4.2.0.tgz} + name: default-gateway + version: 4.2.0 + engines: {node: '>=6'} + dependencies: + execa: registry.nlark.com/execa/1.0.0 + ip-regex: registry.nlark.com/ip-regex/2.1.0 + dev: true + + registry.npmmirror.com/default-gateway/5.0.5: + resolution: {integrity: sha1-T9a9XShV05s0zFpZUFSG6ar8mxA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/default-gateway/download/default-gateway-5.0.5.tgz} + name: default-gateway + version: 5.0.5 + engines: {node: ^8.12.0 || >=9.7.0} + dependencies: + execa: registry.nlark.com/execa/3.4.0 + dev: true + + registry.npmmirror.com/des.js/1.0.1: + resolution: {integrity: sha1-U4IULhvcU/hdhtU+X0qn3rkeCEM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/des.js/download/des.js-1.0.1.tgz} + name: des.js + version: 1.0.1 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + minimalistic-assert: registry.nlark.com/minimalistic-assert/1.0.1 + dev: true + + registry.npmmirror.com/detect-newline/2.1.0: + resolution: {integrity: sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/detect-newline/download/detect-newline-2.1.0.tgz} + name: detect-newline + version: 2.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/dom-event-types/1.0.0: + resolution: {integrity: sha1-WDCgop4b+Df+UKcM2ApZcjKBPK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dom-event-types/download/dom-event-types-1.0.0.tgz} + name: dom-event-types + version: 1.0.0 + dev: true + + registry.npmmirror.com/domexception/1.0.1: + resolution: {integrity: sha1-k3RCZEymoxJh7zbj7Gd/6AVYLJA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domexception/download/domexception-1.0.1.tgz} + name: domexception + version: 1.0.1 + dependencies: + webidl-conversions: registry.nlark.com/webidl-conversions/4.0.2 + dev: true + + registry.npmmirror.com/domready/1.0.8: + resolution: {integrity: sha1-kfJS5Ze2Wvd+dFriTdAYXV4m1Yw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domready/download/domready-1.0.8.tgz} + name: domready + version: 1.0.8 + dev: true + + registry.npmmirror.com/editorconfig/0.15.3: + resolution: {integrity: sha1-vvhMTnX7jcsM5c7o79UcFZmb78U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/editorconfig/download/editorconfig-0.15.3.tgz} + name: editorconfig + version: 0.15.3 + hasBin: true + dependencies: + commander: registry.npmmirror.com/commander/2.20.3 + lru-cache: registry.nlark.com/lru-cache/4.1.5 + semver: registry.nlark.com/semver/5.7.1 + sigmund: registry.nlark.com/sigmund/1.0.1 + dev: true + + registry.npmmirror.com/ejs/2.7.4: + resolution: {integrity: sha1-SGYSh1c9zFPjZsehrlLDoSDuybo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ejs/download/ejs-2.7.4.tgz} + name: ejs + version: 2.7.4 + engines: {node: '>=0.10.0'} + requiresBuild: true + + registry.npmmirror.com/electron-to-chromium/1.3.895: + resolution: {integrity: sha512-9Ww3fB8CWctjqHwkOt7DQbMZMpal2x2reod+/lU4b9axO1XJEDUpPMBxs7YnjLhhqpKXIIB5SRYN/B4K0QpvyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/download/electron-to-chromium-1.3.895.tgz} + name: electron-to-chromium + version: 1.3.895 + dev: true + + registry.npmmirror.com/element-ui/2.13.2_vue@2.6.10: + resolution: {integrity: sha1-WCv0eqqqr+I+oZWPriF6aHrQZEc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/element-ui/download/element-ui-2.13.2.tgz} + id: registry.npmmirror.com/element-ui/2.13.2 + name: element-ui + version: 2.13.2 + peerDependencies: + vue: ^2.5.17 + dependencies: + async-validator: registry.npmmirror.com/async-validator/1.8.5 + babel-helper-vue-jsx-merge-props: registry.nlark.com/babel-helper-vue-jsx-merge-props/2.0.3 + deepmerge: registry.nlark.com/deepmerge/1.5.2 + normalize-wheel: registry.nlark.com/normalize-wheel/1.0.1 + resize-observer-polyfill: registry.nlark.com/resize-observer-polyfill/1.5.1 + throttle-debounce: registry.npmmirror.com/throttle-debounce/1.1.0 + vue: registry.npmmirror.com/vue/2.6.10 + dev: false + + registry.npmmirror.com/emoji-regex/7.0.3: + resolution: {integrity: sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/download/emoji-regex-7.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Femoji-regex%2Fdownload%2Femoji-regex-7.0.3.tgz} + name: emoji-regex + version: 7.0.3 + dev: true + + registry.npmmirror.com/emoji-regex/8.0.0: + resolution: {integrity: sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Femoji-regex%2Fdownload%2Femoji-regex-8.0.0.tgz} + name: emoji-regex + version: 8.0.0 + dev: true + + registry.npmmirror.com/es-abstract/1.19.1: + resolution: {integrity: sha1-1IhXlodpFpWd547aoN9FZicRXsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-abstract/download/es-abstract-1.19.1.tgz} + name: es-abstract + version: 1.19.1 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + es-to-primitive: registry.nlark.com/es-to-primitive/1.2.1 + function-bind: registry.nlark.com/function-bind/1.1.1 + get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 + get-symbol-description: registry.nlark.com/get-symbol-description/1.0.0 + has: registry.nlark.com/has/1.0.3 + has-symbols: registry.nlark.com/has-symbols/1.0.2 + internal-slot: registry.nlark.com/internal-slot/1.0.3 + is-callable: registry.nlark.com/is-callable/1.2.4 + is-negative-zero: registry.nlark.com/is-negative-zero/2.0.1 + is-regex: registry.nlark.com/is-regex/1.1.4 + is-shared-array-buffer: registry.npmmirror.com/is-shared-array-buffer/1.0.1 + is-string: registry.nlark.com/is-string/1.0.7 + is-weakref: registry.npmmirror.com/is-weakref/1.0.1 + object-inspect: registry.nlark.com/object-inspect/1.11.0 + object-keys: registry.nlark.com/object-keys/1.1.1 + object.assign: registry.nlark.com/object.assign/4.1.2 + string.prototype.trimend: registry.nlark.com/string.prototype.trimend/1.0.4 + string.prototype.trimstart: registry.nlark.com/string.prototype.trimstart/1.0.4 + unbox-primitive: registry.nlark.com/unbox-primitive/1.0.1 + dev: true + + registry.npmmirror.com/eslint-loader/2.2.1_eslint@6.7.2+webpack@4.46.0: + resolution: {integrity: sha1-KLnBLaVAV68IReKmEScBova/gzc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-loader/download/eslint-loader-2.2.1.tgz} + id: registry.npmmirror.com/eslint-loader/2.2.1 + name: eslint-loader + version: 2.2.1 + deprecated: This loader has been deprecated. Please use eslint-webpack-plugin + peerDependencies: + eslint: '>=1.6.0 <7.0.0' + webpack: '>=2.0.0 <5.0.0' + dependencies: + eslint: registry.npmmirror.com/eslint/6.7.2 + loader-fs-cache: registry.nlark.com/loader-fs-cache/1.0.3 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + object-assign: registry.nlark.com/object-assign/4.1.1 + object-hash: registry.nlark.com/object-hash/1.3.1 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.npmmirror.com/eslint-plugin-vue/6.2.2_eslint@6.7.2: + resolution: {integrity: sha1-J/7NmjokeJsPER7N1UCp5WGY4P4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-vue/download/eslint-plugin-vue-6.2.2.tgz} + id: registry.npmmirror.com/eslint-plugin-vue/6.2.2 + name: eslint-plugin-vue + version: 6.2.2 + engines: {node: '>=8.10'} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 + dependencies: + eslint: registry.npmmirror.com/eslint/6.7.2 + natural-compare: registry.nlark.com/natural-compare/1.4.0 + semver: registry.nlark.com/semver/5.7.1 + vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/7.11.0_eslint@6.7.2 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/eslint-visitor-keys/1.3.0: + resolution: {integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz} + name: eslint-visitor-keys + version: 1.3.0 + engines: {node: '>=4'} + dev: true + + registry.npmmirror.com/eslint/6.7.2: + resolution: {integrity: sha1-wXcHykrXstivmGoz/rpx4Yqf7NE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint/download/eslint-6.7.2.tgz} + name: eslint + version: 6.7.2 + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + hasBin: true + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + ajv: registry.npmmirror.com/ajv/6.12.6 + chalk: registry.nlark.com/chalk/2.4.2 + cross-spawn: registry.nlark.com/cross-spawn/6.0.5 + debug: registry.npmmirror.com/debug/4.3.2 + doctrine: registry.nlark.com/doctrine/3.0.0 + eslint-scope: registry.nlark.com/eslint-scope/5.1.1 + eslint-utils: registry.nlark.com/eslint-utils/1.4.3 + eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0 + espree: registry.nlark.com/espree/6.2.1 + esquery: registry.nlark.com/esquery/1.4.0 + esutils: registry.nlark.com/esutils/2.0.3 + file-entry-cache: registry.nlark.com/file-entry-cache/5.0.1 + functional-red-black-tree: registry.npmmirror.com/functional-red-black-tree/1.0.1 + glob-parent: registry.npmmirror.com/glob-parent/5.1.2 + globals: registry.npmmirror.com/globals/12.4.0 + ignore: registry.npmmirror.com/ignore/4.0.6 + import-fresh: registry.nlark.com/import-fresh/3.3.0 + imurmurhash: registry.nlark.com/imurmurhash/0.1.4 + inquirer: registry.npmmirror.com/inquirer/7.3.3 + is-glob: registry.npmmirror.com/is-glob/4.0.3 + js-yaml: registry.nlark.com/js-yaml/3.14.1 + json-stable-stringify-without-jsonify: registry.nlark.com/json-stable-stringify-without-jsonify/1.0.1 + levn: registry.nlark.com/levn/0.3.0 + lodash: registry.nlark.com/lodash/4.17.21 + minimatch: registry.nlark.com/minimatch/3.0.4 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + natural-compare: registry.nlark.com/natural-compare/1.4.0 + optionator: registry.nlark.com/optionator/0.8.3 + progress: registry.nlark.com/progress/2.0.3 + regexpp: registry.nlark.com/regexpp/2.0.1 + semver: registry.nlark.com/semver/6.3.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + strip-json-comments: registry.nlark.com/strip-json-comments/3.1.1 + table: registry.npmmirror.com/table/5.4.6 + text-table: registry.nlark.com/text-table/0.2.0 + v8-compile-cache: registry.nlark.com/v8-compile-cache/2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/estraverse/4.3.0: + resolution: {integrity: sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz} + name: estraverse + version: 4.3.0 + engines: {node: '>=4.0'} + dev: true + + registry.npmmirror.com/estraverse/5.3.0: + resolution: {integrity: sha1-LupSkHAvJquP5TcDcP+GyWXSESM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/download/estraverse-5.3.0.tgz} + name: estraverse + version: 5.3.0 + engines: {node: '>=4.0'} + dev: true + + registry.npmmirror.com/event-pubsub/4.3.0: + resolution: {integrity: sha1-9o2Ba8KfHsAsU53FjI3UDOcss24=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/event-pubsub/download/event-pubsub-4.3.0.tgz} + name: event-pubsub + version: 4.3.0 + engines: {node: '>=4.0.0'} + dev: true + + registry.npmmirror.com/events/3.3.0: + resolution: {integrity: sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/events/download/events-3.3.0.tgz} + name: events + version: 3.3.0 + engines: {node: '>=0.8.x'} + dev: true + + registry.npmmirror.com/expect/24.9.0: + resolution: {integrity: sha1-t1FltIFwdPpKFXeU9G/p8boVtso=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expect/download/expect-24.9.0.tgz} + name: expect + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + ansi-styles: registry.nlark.com/ansi-styles/3.2.1 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + dev: true + + registry.npmmirror.com/extract-from-css/0.4.4: + resolution: {integrity: sha1-HqffLnx8brmSL6COitrqSG9vj5I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extract-from-css/download/extract-from-css-0.4.4.tgz} + name: extract-from-css + version: 0.4.4 + engines: {node: '>=0.10.0', npm: '>=2.0.0'} + dependencies: + css: registry.nlark.com/css/2.2.4 + dev: true + + registry.npmmirror.com/extsprintf/1.3.0: + resolution: {integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extsprintf/download/extsprintf-1.3.0.tgz} + name: extsprintf + version: 1.3.0 + engines: {'0': node >=0.6.0} + dev: true + + registry.npmmirror.com/filesize/3.6.1: + resolution: {integrity: sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/filesize/download/filesize-3.6.1.tgz} + name: filesize + version: 3.6.1 + engines: {node: '>= 0.4.0'} + dev: true + + registry.npmmirror.com/find-babel-config/1.2.0: + resolution: {integrity: sha1-qbezF+tbmGDNqdVHQKjIM3oig6I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-babel-config/download/find-babel-config-1.2.0.tgz} + name: find-babel-config + version: 1.2.0 + engines: {node: '>=4.0.0'} + dependencies: + json5: registry.nlark.com/json5/0.5.1 + path-exists: registry.nlark.com/path-exists/3.0.0 + dev: true + + registry.npmmirror.com/find-up/1.1.2: + resolution: {integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-1.1.2.tgz} + name: find-up + version: 1.1.2 + engines: {node: '>=0.10.0'} + dependencies: + path-exists: registry.nlark.com/path-exists/2.1.0 + pinkie-promise: registry.nlark.com/pinkie-promise/2.0.1 + dev: true + + registry.npmmirror.com/find-up/2.1.0: + resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz} + name: find-up + version: 2.1.0 + engines: {node: '>=4'} + dependencies: + locate-path: registry.npmmirror.com/locate-path/2.0.0 + dev: true + + registry.npmmirror.com/find-up/3.0.0: + resolution: {integrity: sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-3.0.0.tgz} + name: find-up + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + locate-path: registry.npmmirror.com/locate-path/3.0.0 + dev: true + + registry.npmmirror.com/find-up/4.1.0: + resolution: {integrity: sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz} + name: find-up + version: 4.1.0 + engines: {node: '>=8'} + dependencies: + locate-path: registry.npmmirror.com/locate-path/5.0.0 + path-exists: registry.nlark.com/path-exists/4.0.0 + dev: true + + registry.npmmirror.com/flatted/2.0.2: + resolution: {integrity: sha1-RXWyHivO50NKqb5mL0t7X5wrUTg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/flatted/download/flatted-2.0.2.tgz} + name: flatted + version: 2.0.2 + dev: true + + registry.npmmirror.com/follow-redirects/1.14.5: + resolution: {integrity: sha1-8JpYSJgdPHcrU5Iwl3hSP42Fw4E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/download/follow-redirects-1.14.5.tgz} + name: follow-redirects + version: 1.14.5 + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + registry.npmmirror.com/fresh/0.5.2: + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fresh/download/fresh-0.5.2.tgz} + name: fresh + version: 0.5.2 + engines: {node: '>= 0.6'} + dev: true + + registry.npmmirror.com/fs-write-stream-atomic/1.0.10: + resolution: {integrity: sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz} + name: fs-write-stream-atomic + version: 1.0.10 + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + iferr: registry.nlark.com/iferr/0.1.5 + imurmurhash: registry.nlark.com/imurmurhash/0.1.4 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + dev: true + + registry.npmmirror.com/fsevents/1.2.13: + resolution: {integrity: sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/download/fsevents-1.2.13.tgz} + name: fsevents + version: 1.2.13 + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. + requiresBuild: true + dependencies: + bindings: registry.nlark.com/bindings/1.5.0 + nan: registry.nlark.com/nan/2.15.0 + dev: true + optional: true + + registry.npmmirror.com/fsevents/2.3.2: + resolution: {integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/download/fsevents-2.3.2.tgz} + name: fsevents + version: 2.3.2 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/functional-red-black-tree/1.0.1: + resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz} + name: functional-red-black-tree + version: 1.0.1 + dev: true + + registry.npmmirror.com/glob-parent/2.0.0: + resolution: {integrity: sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-2.0.0.tgz} + name: glob-parent + version: 2.0.0 + dependencies: + is-glob: registry.npmmirror.com/is-glob/2.0.1 + dev: true + + registry.npmmirror.com/glob-parent/3.1.0: + resolution: {integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-3.1.0.tgz} + name: glob-parent + version: 3.1.0 + dependencies: + is-glob: registry.npmmirror.com/is-glob/3.1.0 + path-dirname: registry.nlark.com/path-dirname/1.0.2 + dev: true + + registry.npmmirror.com/glob-parent/5.1.2: + resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz} + name: glob-parent + version: 5.1.2 + engines: {node: '>= 6'} + dependencies: + is-glob: registry.npmmirror.com/is-glob/4.0.3 + dev: true + + registry.npmmirror.com/glob/7.2.0: + resolution: {integrity: sha1-0VU1r3cy4C6Uj0xBYovZECk/YCM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob/download/glob-7.2.0.tgz?cache=0&sync_timestamp=1636422993768&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fglob%2Fdownload%2Fglob-7.2.0.tgz} + name: glob + version: 7.2.0 + dependencies: + fs.realpath: registry.nlark.com/fs.realpath/1.0.0 + inflight: registry.nlark.com/inflight/1.0.6 + inherits: registry.nlark.com/inherits/2.0.4 + minimatch: registry.nlark.com/minimatch/3.0.4 + once: registry.nlark.com/once/1.4.0 + path-is-absolute: registry.nlark.com/path-is-absolute/1.0.1 + + registry.npmmirror.com/globals/11.12.0: + resolution: {integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/download/globals-11.12.0.tgz} + name: globals + version: 11.12.0 + engines: {node: '>=4'} + dev: true + + registry.npmmirror.com/globals/12.4.0: + resolution: {integrity: sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/download/globals-12.4.0.tgz} + name: globals + version: 12.4.0 + engines: {node: '>=8'} + dependencies: + type-fest: registry.npmmirror.com/type-fest/0.8.1 + dev: true + + registry.npmmirror.com/globals/9.18.0: + resolution: {integrity: sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/download/globals-9.18.0.tgz} + name: globals + version: 9.18.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/graceful-fs/4.2.8: + resolution: {integrity: sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/download/graceful-fs-4.2.8.tgz} + name: graceful-fs + version: 4.2.8 + dev: true + + registry.npmmirror.com/har-validator/5.1.5: + resolution: {integrity: sha1-HwgDufjLIMD6E4It8ezds2veHv0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/har-validator/download/har-validator-5.1.5.tgz} + name: har-validator + version: 5.1.5 + engines: {node: '>=6'} + deprecated: this library is no longer supported + dependencies: + ajv: registry.npmmirror.com/ajv/6.12.6 + har-schema: registry.nlark.com/har-schema/2.0.0 + dev: true + + registry.npmmirror.com/highlight.js/10.7.3: + resolution: {integrity: sha1-aXJy45kTVuQMPKxWanTu9oF1ZTE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/highlight.js/download/highlight.js-10.7.3.tgz} + name: highlight.js + version: 10.7.3 + dev: true + + registry.npmmirror.com/hpack.js/2.1.6: + resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hpack.js/download/hpack.js-2.1.6.tgz} + name: hpack.js + version: 2.1.6 + dependencies: + inherits: registry.nlark.com/inherits/2.0.4 + obuf: registry.nlark.com/obuf/1.1.2 + readable-stream: registry.nlark.com/readable-stream/2.3.7 + wbuf: registry.nlark.com/wbuf/1.7.3 + dev: true + + registry.npmmirror.com/html-webpack-plugin/3.2.0: + resolution: {integrity: sha1-sBq71yOsqqeze2r0SS69oD2d03s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz?cache=0&sync_timestamp=1635314884190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fhtml-webpack-plugin%2Fdownload%2Fhtml-webpack-plugin-3.2.0.tgz} + name: html-webpack-plugin + version: 3.2.0 + engines: {node: '>=6.9'} + deprecated: 3.x is no longer supported + peerDependencies: + webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + dependencies: + html-minifier: registry.nlark.com/html-minifier/3.5.21 + loader-utils: registry.npmmirror.com/loader-utils/0.2.17 + lodash: registry.nlark.com/lodash/4.17.21 + pretty-error: registry.npmmirror.com/pretty-error/2.1.2 + tapable: registry.nlark.com/tapable/1.1.3 + toposort: registry.nlark.com/toposort/1.0.7 + util.promisify: registry.nlark.com/util.promisify/1.0.0 + dev: true + + registry.npmmirror.com/html-webpack-plugin/3.2.0_webpack@4.46.0: + resolution: {integrity: sha1-sBq71yOsqqeze2r0SS69oD2d03s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz?cache=0&sync_timestamp=1635314884190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fhtml-webpack-plugin%2Fdownload%2Fhtml-webpack-plugin-3.2.0.tgz} + id: registry.npmmirror.com/html-webpack-plugin/3.2.0 + name: html-webpack-plugin + version: 3.2.0 + engines: {node: '>=6.9'} + deprecated: 3.x is no longer supported + peerDependencies: + webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + dependencies: + html-minifier: registry.nlark.com/html-minifier/3.5.21 + loader-utils: registry.npmmirror.com/loader-utils/0.2.17 + lodash: registry.nlark.com/lodash/4.17.21 + pretty-error: registry.npmmirror.com/pretty-error/2.1.2 + tapable: registry.nlark.com/tapable/1.1.3 + toposort: registry.nlark.com/toposort/1.0.7 + util.promisify: registry.nlark.com/util.promisify/1.0.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.npmmirror.com/htmlparser2/3.10.1: + resolution: {integrity: sha1-vWedw/WYl7ajS7EHSchVu1OpOS8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/htmlparser2/download/htmlparser2-3.10.1.tgz} + name: htmlparser2 + version: 3.10.1 + dependencies: + domelementtype: registry.nlark.com/domelementtype/1.3.1 + domhandler: registry.nlark.com/domhandler/2.4.2 + domutils: registry.nlark.com/domutils/1.7.0 + entities: registry.nlark.com/entities/1.1.2 + inherits: registry.nlark.com/inherits/2.0.4 + readable-stream: registry.nlark.com/readable-stream/3.6.0 + dev: true + + registry.npmmirror.com/htmlparser2/6.1.0: + resolution: {integrity: sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/htmlparser2/download/htmlparser2-6.1.0.tgz} + name: htmlparser2 + version: 6.1.0 + dependencies: + domelementtype: registry.nlark.com/domelementtype/2.2.0 + domhandler: registry.nlark.com/domhandler/4.2.2 + domutils: registry.nlark.com/domutils/2.8.0 + entities: registry.nlark.com/entities/2.2.0 + dev: true + + registry.npmmirror.com/ignore/3.3.10: + resolution: {integrity: sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/download/ignore-3.3.10.tgz} + name: ignore + version: 3.3.10 + dev: true + + registry.npmmirror.com/ignore/4.0.6: + resolution: {integrity: sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/download/ignore-4.0.6.tgz} + name: ignore + version: 4.0.6 + engines: {node: '>= 4'} + dev: true + + registry.npmmirror.com/import-local/2.0.0: + resolution: {integrity: sha1-VQcL44pZk88Y72236WH1vuXFoJ0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/import-local/download/import-local-2.0.0.tgz} + name: import-local + version: 2.0.0 + engines: {node: '>=6'} + hasBin: true + dependencies: + pkg-dir: registry.npmmirror.com/pkg-dir/3.0.0 + resolve-cwd: registry.nlark.com/resolve-cwd/2.0.0 + dev: true + + registry.npmmirror.com/inquirer/7.3.3: + resolution: {integrity: sha1-BNF2sq8Er8FXqD/XwQDpjuCq0AM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inquirer/download/inquirer-7.3.3.tgz} + name: inquirer + version: 7.3.3 + engines: {node: '>=8.0.0'} + dependencies: + ansi-escapes: registry.nlark.com/ansi-escapes/4.3.2 + chalk: registry.nlark.com/chalk/4.1.2 + cli-cursor: registry.nlark.com/cli-cursor/3.1.0 + cli-width: registry.nlark.com/cli-width/3.0.0 + external-editor: registry.nlark.com/external-editor/3.1.0 + figures: registry.nlark.com/figures/3.2.0 + lodash: registry.nlark.com/lodash/4.17.21 + mute-stream: registry.nlark.com/mute-stream/0.0.8 + run-async: registry.nlark.com/run-async/2.4.1 + rxjs: registry.npmmirror.com/rxjs/6.6.7 + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + through: registry.nlark.com/through/2.3.8 + dev: true + + registry.npmmirror.com/internal-ip/4.3.0: + resolution: {integrity: sha1-hFRSuq2dLKO2nGNaE3rLmg2tCQc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/internal-ip/download/internal-ip-4.3.0.tgz} + name: internal-ip + version: 4.3.0 + engines: {node: '>=6'} + dependencies: + default-gateway: registry.npmmirror.com/default-gateway/4.2.0 + ipaddr.js: registry.npmmirror.com/ipaddr.js/1.9.1 + dev: true + + registry.npmmirror.com/ipaddr.js/1.9.1: + resolution: {integrity: sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ipaddr.js/download/ipaddr.js-1.9.1.tgz} + name: ipaddr.js + version: 1.9.1 + engines: {node: '>= 0.10'} + dev: true + + registry.npmmirror.com/is-ci/1.2.1: + resolution: {integrity: sha1-43ecjuF/zPQoSI9uKBGH8uYyhBw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-ci/download/is-ci-1.2.1.tgz} + name: is-ci + version: 1.2.1 + hasBin: true + dependencies: + ci-info: registry.nlark.com/ci-info/1.6.0 + dev: true + + registry.npmmirror.com/is-ci/2.0.0: + resolution: {integrity: sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-ci/download/is-ci-2.0.0.tgz} + name: is-ci + version: 2.0.0 + hasBin: true + dependencies: + ci-info: registry.nlark.com/ci-info/2.0.0 + dev: true + + registry.npmmirror.com/is-core-module/2.8.0: + resolution: {integrity: sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/download/is-core-module-2.8.0.tgz} + name: is-core-module + version: 2.8.0 + dependencies: + has: registry.nlark.com/has/1.0.3 + dev: true + + registry.npmmirror.com/is-finite/1.1.0: + resolution: {integrity: sha1-kEE1x3+0LAZB1qobzbxNqo2ggvM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-finite/download/is-finite-1.1.0.tgz} + name: is-finite + version: 1.1.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/is-glob/2.0.1: + resolution: {integrity: sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/download/is-glob-2.0.1.tgz} + name: is-glob + version: 2.0.1 + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: registry.nlark.com/is-extglob/1.0.0 + dev: true + + registry.npmmirror.com/is-glob/3.1.0: + resolution: {integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/download/is-glob-3.1.0.tgz} + name: is-glob + version: 3.1.0 + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: registry.nlark.com/is-extglob/2.1.1 + dev: true + + registry.npmmirror.com/is-glob/4.0.3: + resolution: {integrity: sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/download/is-glob-4.0.3.tgz} + name: is-glob + version: 4.0.3 + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: registry.nlark.com/is-extglob/2.1.1 + dev: true + + registry.npmmirror.com/is-number-object/1.0.6: + resolution: {integrity: sha1-anqvg4x/BoalC0VT9+VKlklOifA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number-object/download/is-number-object-1.0.6.tgz} + name: is-number-object + version: 1.0.6 + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 + dev: true + + registry.npmmirror.com/is-shared-array-buffer/1.0.1: + resolution: {integrity: sha1-l7DIX72stZycRG/mU7gs8rW3z+Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-shared-array-buffer/download/is-shared-array-buffer-1.0.1.tgz} + name: is-shared-array-buffer + version: 1.0.1 + dev: true + + registry.npmmirror.com/is-weakref/1.0.1: + resolution: {integrity: sha1-hC26TsF/qayYUN8tbvvBc3J08qI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-weakref/download/is-weakref-1.0.1.tgz} + name: is-weakref + version: 1.0.1 + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + dev: true + + registry.npmmirror.com/istanbul-lib-coverage/1.2.1: + resolution: {integrity: sha1-zPftzQoLubj3Kf7rCTBHD5r2ZPA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-coverage/download/istanbul-lib-coverage-1.2.1.tgz} + name: istanbul-lib-coverage + version: 1.2.1 + dev: true + + registry.npmmirror.com/istanbul-lib-coverage/2.0.5: + resolution: {integrity: sha1-Z18KtpUD+tSx2En3NrqsqAM0T0k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz} + name: istanbul-lib-coverage + version: 2.0.5 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/istanbul-lib-instrument/1.10.2: + resolution: {integrity: sha1-H1XtEKw8R/K93dUweTUSZ1TQqco=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-instrument/download/istanbul-lib-instrument-1.10.2.tgz} + name: istanbul-lib-instrument + version: 1.10.2 + dependencies: + babel-generator: registry.npmmirror.com/babel-generator/6.26.1 + babel-template: registry.nlark.com/babel-template/6.26.0 + babel-traverse: registry.npmmirror.com/babel-traverse/6.26.0 + babel-types: registry.nlark.com/babel-types/6.26.0 + babylon: registry.nlark.com/babylon/6.18.0 + istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage/1.2.1 + semver: registry.nlark.com/semver/5.7.1 + dev: true + + registry.npmmirror.com/istanbul-lib-instrument/3.3.0: + resolution: {integrity: sha1-pfY9kfC7wMPkee9MXeAnM17G1jA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz} + name: istanbul-lib-instrument + version: 3.3.0 + engines: {node: '>=6'} + dependencies: + '@babel/generator': registry.npmmirror.com/@babel/generator/7.16.0 + '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.3 + '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage/2.0.5 + semver: registry.nlark.com/semver/6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/istanbul-lib-source-maps/3.0.6: + resolution: {integrity: sha1-KEmXxIIRdS7EhiU9qX44ed77qMg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-lib-source-maps/download/istanbul-lib-source-maps-3.0.6.tgz} + name: istanbul-lib-source-maps + version: 3.0.6 + engines: {node: '>=6'} + dependencies: + debug: registry.npmmirror.com/debug/4.3.2 + istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage/2.0.5 + make-dir: registry.nlark.com/make-dir/2.1.0 + rimraf: registry.npmmirror.com/rimraf/2.7.1 + source-map: registry.nlark.com/source-map/0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/istanbul-reports/2.2.7: + resolution: {integrity: sha1-XZOfYjfXtIOTzAlZ6rQM1P0FaTE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/istanbul-reports/download/istanbul-reports-2.2.7.tgz} + name: istanbul-reports + version: 2.2.7 + engines: {node: '>=6'} + dependencies: + html-escaper: registry.nlark.com/html-escaper/2.0.2 + dev: true + + registry.npmmirror.com/jest-changed-files/24.9.0: + resolution: {integrity: sha1-CNjBXreaf6P8mCabwUtFHugvgDk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-changed-files/download/jest-changed-files-24.9.0.tgz} + name: jest-changed-files + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + execa: registry.nlark.com/execa/1.0.0 + throat: registry.nlark.com/throat/4.1.0 + dev: true + + registry.npmmirror.com/jest-cli/24.9.0: + resolution: {integrity: sha1-rS3mLQdHLUGcarwwH8QyuYsQ0q8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-cli/download/jest-cli-24.9.0.tgz} + name: jest-cli + version: 24.9.0 + engines: {node: '>= 6'} + hasBin: true + dependencies: + '@jest/core': registry.npmmirror.com/@jest/core/24.9.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + exit: registry.nlark.com/exit/0.1.2 + import-local: registry.npmmirror.com/import-local/2.0.0 + is-ci: registry.npmmirror.com/is-ci/2.0.0 + jest-config: registry.npmmirror.com/jest-config/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-validate: registry.npmmirror.com/jest-validate/24.9.0 + prompts: registry.npmmirror.com/prompts/2.4.2 + realpath-native: registry.npmmirror.com/realpath-native/1.1.0 + yargs: registry.npmmirror.com/yargs/13.3.2 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-config/24.9.0: + resolution: {integrity: sha1-+xu8YMc6Rq8DWQcZ76SCXm5N0bU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-config/download/jest-config-24.9.0.tgz} + name: jest-config + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 + '@jest/test-sequencer': registry.npmmirror.com/@jest/test-sequencer/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + babel-jest: registry.npmmirror.com/babel-jest/24.9.0_@babel+core@7.16.0 + chalk: registry.nlark.com/chalk/2.4.2 + glob: registry.npmmirror.com/glob/7.2.0 + jest-environment-jsdom: registry.npmmirror.com/jest-environment-jsdom/24.9.0 + jest-environment-node: registry.npmmirror.com/jest-environment-node/24.9.0 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + jest-jasmine2: registry.npmmirror.com/jest-jasmine2/24.9.0 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-validate: registry.npmmirror.com/jest-validate/24.9.0 + micromatch: registry.nlark.com/micromatch/3.1.10 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + realpath-native: registry.npmmirror.com/realpath-native/1.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-diff/24.9.0: + resolution: {integrity: sha1-kxt9DVd4obr3RSy4FuMl43JAVdo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-diff/download/jest-diff-24.9.0.tgz} + name: jest-diff + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + diff-sequences: registry.nlark.com/diff-sequences/24.9.0 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + dev: true + + registry.npmmirror.com/jest-each/24.9.0: + resolution: {integrity: sha1-6y2mAuKmEImNvF8fbfO6hrVfiwU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-each/download/jest-each-24.9.0.tgz} + name: jest-each + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + dev: true + + registry.npmmirror.com/jest-environment-jsdom-fifteen/1.0.2: + resolution: {integrity: sha1-SaCvVeDTJzemEUoVdd1xRwKtY7A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-environment-jsdom-fifteen/download/jest-environment-jsdom-fifteen-1.0.2.tgz} + name: jest-environment-jsdom-fifteen + version: 1.0.2 + dependencies: + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + jest-mock: registry.npmmirror.com/jest-mock/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jsdom: registry.npmmirror.com/jsdom/15.2.1 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + dev: true + + registry.npmmirror.com/jest-environment-jsdom/24.9.0: + resolution: {integrity: sha1-SwgGx/yU+V7bNpppzCd47sK3N1s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-environment-jsdom/download/jest-environment-jsdom-24.9.0.tgz} + name: jest-environment-jsdom + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + jest-mock: registry.npmmirror.com/jest-mock/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jsdom: registry.npmmirror.com/jsdom/11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-environment-node/24.9.0: + resolution: {integrity: sha1-Mz0tJ5b5aH8q7r8HQrUZ8zwcv9M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-environment-node/download/jest-environment-node-24.9.0.tgz} + name: jest-environment-node + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + jest-mock: registry.npmmirror.com/jest-mock/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-get-type/24.9.0: + resolution: {integrity: sha1-FoSgyKUPLkkBtmRK6GH1ee7S7w4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-get-type/download/jest-get-type-24.9.0.tgz} + name: jest-get-type + version: 24.9.0 + engines: {node: '>= 6'} + dev: true + + registry.npmmirror.com/jest-haste-map/24.9.0: + resolution: {integrity: sha1-s4pdZCdJNOIfpBeump++t3zqrH0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-haste-map/download/jest-haste-map-24.9.0.tgz} + name: jest-haste-map + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + anymatch: registry.nlark.com/anymatch/2.0.0 + fb-watchman: registry.nlark.com/fb-watchman/2.0.1 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + invariant: registry.nlark.com/invariant/2.2.4 + jest-serializer: registry.nlark.com/jest-serializer/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-worker: registry.npmmirror.com/jest-worker/24.9.0 + micromatch: registry.nlark.com/micromatch/3.1.10 + sane: registry.npmmirror.com/sane/4.1.0 + walker: registry.npmmirror.com/walker/1.0.8 + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents/1.2.13 + dev: true + + registry.npmmirror.com/jest-jasmine2/24.9.0: + resolution: {integrity: sha1-H3sb0yQsF3TmKsq7NkbZavw75qA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz} + name: jest-jasmine2 + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + co: registry.nlark.com/co/4.6.0 + expect: registry.npmmirror.com/expect/24.9.0 + is-generator-fn: registry.nlark.com/is-generator-fn/2.1.0 + jest-each: registry.npmmirror.com/jest-each/24.9.0 + jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-runtime: registry.npmmirror.com/jest-runtime/24.9.0 + jest-snapshot: registry.npmmirror.com/jest-snapshot/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + throat: registry.nlark.com/throat/4.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-leak-detector/24.9.0: + resolution: {integrity: sha1-tmXep8dxAMXE99/LFTtlzwfc+Wo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-leak-detector/download/jest-leak-detector-24.9.0.tgz} + name: jest-leak-detector + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + dev: true + + registry.npmmirror.com/jest-matcher-utils/24.9.0: + resolution: {integrity: sha1-9bNmHV5ijf/m3WUlHf2uDofDoHM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-matcher-utils/download/jest-matcher-utils-24.9.0.tgz} + name: jest-matcher-utils + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + jest-diff: registry.npmmirror.com/jest-diff/24.9.0 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + dev: true + + registry.npmmirror.com/jest-message-util/24.9.0: + resolution: {integrity: sha1-Un9UoeOA9eICqNEUmw7IcvQxGeM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-message-util/download/jest-message-util-24.9.0.tgz} + name: jest-message-util + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + '@types/stack-utils': registry.nlark.com/@types/stack-utils/1.0.1 + chalk: registry.nlark.com/chalk/2.4.2 + micromatch: registry.nlark.com/micromatch/3.1.10 + slash: registry.nlark.com/slash/2.0.0 + stack-utils: registry.nlark.com/stack-utils/1.0.5 + dev: true + + registry.npmmirror.com/jest-mock/24.9.0: + resolution: {integrity: sha1-wig1VB7jebkIZzrVEIeiGFwT8cY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-mock/download/jest-mock-24.9.0.tgz} + name: jest-mock + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + dev: true + + registry.npmmirror.com/jest-pnp-resolver/1.2.2_jest-resolve@24.9.0: + resolution: {integrity: sha1-twSsCuAoqJEIpNBAs/kZ393I4zw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz} + id: registry.npmmirror.com/jest-pnp-resolver/1.2.2 + name: jest-pnp-resolver + version: 1.2.2 + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + dev: true + + registry.npmmirror.com/jest-resolve-dependencies/24.9.0: + resolution: {integrity: sha1-rQVRmJWcTPuopPBmxnOj8HhlB6s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz} + name: jest-resolve-dependencies + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + jest-snapshot: registry.npmmirror.com/jest-snapshot/24.9.0 + dev: true + + registry.npmmirror.com/jest-resolve/24.9.0: + resolution: {integrity: sha1-3/BMdoevNMTdflJIktnPd+XRcyE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-resolve/download/jest-resolve-24.9.0.tgz} + name: jest-resolve + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + browser-resolve: registry.nlark.com/browser-resolve/1.11.3 + chalk: registry.nlark.com/chalk/2.4.2 + jest-pnp-resolver: registry.npmmirror.com/jest-pnp-resolver/1.2.2_jest-resolve@24.9.0 + realpath-native: registry.npmmirror.com/realpath-native/1.1.0 + dev: true + + registry.npmmirror.com/jest-runner/24.9.0: + resolution: {integrity: sha1-V0+v29VEVcKzS0vfQ2WiOFf830I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-runner/download/jest-runner-24.9.0.tgz} + name: jest-runner + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/console': registry.npmmirror.com/@jest/console/24.9.0 + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + exit: registry.nlark.com/exit/0.1.2 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + jest-config: registry.npmmirror.com/jest-config/24.9.0 + jest-docblock: registry.nlark.com/jest-docblock/24.9.0 + jest-haste-map: registry.npmmirror.com/jest-haste-map/24.9.0 + jest-jasmine2: registry.npmmirror.com/jest-jasmine2/24.9.0 + jest-leak-detector: registry.npmmirror.com/jest-leak-detector/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + jest-runtime: registry.npmmirror.com/jest-runtime/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-worker: registry.npmmirror.com/jest-worker/24.9.0 + source-map-support: registry.nlark.com/source-map-support/0.5.20 + throat: registry.nlark.com/throat/4.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-runtime/24.9.0: + resolution: {integrity: sha1-nxRYOvak9zFKap2fAibhp4HI5Kw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-runtime/download/jest-runtime-24.9.0.tgz} + name: jest-runtime + version: 24.9.0 + engines: {node: '>= 6'} + hasBin: true + dependencies: + '@jest/console': registry.npmmirror.com/@jest/console/24.9.0 + '@jest/environment': registry.npmmirror.com/@jest/environment/24.9.0 + '@jest/source-map': registry.nlark.com/@jest/source-map/24.9.0 + '@jest/transform': registry.npmmirror.com/@jest/transform/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + '@types/yargs': registry.npmmirror.com/@types/yargs/13.0.12 + chalk: registry.nlark.com/chalk/2.4.2 + exit: registry.nlark.com/exit/0.1.2 + glob: registry.npmmirror.com/glob/7.2.0 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + jest-config: registry.npmmirror.com/jest-config/24.9.0 + jest-haste-map: registry.npmmirror.com/jest-haste-map/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-mock: registry.npmmirror.com/jest-mock/24.9.0 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + jest-snapshot: registry.npmmirror.com/jest-snapshot/24.9.0 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + jest-validate: registry.npmmirror.com/jest-validate/24.9.0 + realpath-native: registry.npmmirror.com/realpath-native/1.1.0 + slash: registry.nlark.com/slash/2.0.0 + strip-bom: registry.nlark.com/strip-bom/3.0.0 + yargs: registry.npmmirror.com/yargs/13.3.2 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/jest-serializer-vue/2.0.2: + resolution: {integrity: sha1-sjjvKGNX7GtIBCG9RxRQUJh9WbM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-serializer-vue/download/jest-serializer-vue-2.0.2.tgz} + name: jest-serializer-vue + version: 2.0.2 + dependencies: + pretty: registry.npmmirror.com/pretty/2.0.0 + dev: true + + registry.npmmirror.com/jest-snapshot/24.9.0: + resolution: {integrity: sha1-7I6cpPLsDFyHro+SXPl0l7DpUbo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-snapshot/download/jest-snapshot-24.9.0.tgz} + name: jest-snapshot + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + chalk: registry.nlark.com/chalk/2.4.2 + expect: registry.npmmirror.com/expect/24.9.0 + jest-diff: registry.npmmirror.com/jest-diff/24.9.0 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + jest-matcher-utils: registry.npmmirror.com/jest-matcher-utils/24.9.0 + jest-message-util: registry.npmmirror.com/jest-message-util/24.9.0 + jest-resolve: registry.npmmirror.com/jest-resolve/24.9.0 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + natural-compare: registry.nlark.com/natural-compare/1.4.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + semver: registry.nlark.com/semver/6.3.0 + dev: true + + registry.npmmirror.com/jest-transform-stub/2.0.0: + resolution: {integrity: sha1-GQGLCFH3VolyFHpdYAdLVfAiWn0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-transform-stub/download/jest-transform-stub-2.0.0.tgz} + name: jest-transform-stub + version: 2.0.0 + dev: true + + registry.npmmirror.com/jest-util/24.9.0: + resolution: {integrity: sha1-c5aBTkhTbS6Fo33j5MQx18sUAWI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-util/download/jest-util-24.9.0.tgz} + name: jest-util + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/console': registry.npmmirror.com/@jest/console/24.9.0 + '@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers/24.9.0 + '@jest/source-map': registry.nlark.com/@jest/source-map/24.9.0 + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + callsites: registry.nlark.com/callsites/3.1.0 + chalk: registry.nlark.com/chalk/2.4.2 + graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 + is-ci: registry.npmmirror.com/is-ci/2.0.0 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + slash: registry.nlark.com/slash/2.0.0 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.npmmirror.com/jest-validate/24.9.0: + resolution: {integrity: sha1-B3XFU2DRc82FTkAYB1bU/1Le+Ks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-validate/download/jest-validate-24.9.0.tgz} + name: jest-validate + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + camelcase: registry.nlark.com/camelcase/5.3.1 + chalk: registry.nlark.com/chalk/2.4.2 + jest-get-type: registry.npmmirror.com/jest-get-type/24.9.0 + leven: registry.nlark.com/leven/3.1.0 + pretty-format: registry.npmmirror.com/pretty-format/24.9.0 + dev: true + + registry.npmmirror.com/jest-watch-typeahead/0.4.2: + resolution: {integrity: sha1-5b6Vlpin+iMCIppQgsSIw8h4Cko=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-watch-typeahead/download/jest-watch-typeahead-0.4.2.tgz} + name: jest-watch-typeahead + version: 0.4.2 + dependencies: + ansi-escapes: registry.nlark.com/ansi-escapes/4.3.2 + chalk: registry.nlark.com/chalk/2.4.2 + jest-regex-util: registry.nlark.com/jest-regex-util/24.9.0 + jest-watcher: registry.npmmirror.com/jest-watcher/24.9.0 + slash: registry.nlark.com/slash/3.0.0 + string-length: registry.nlark.com/string-length/3.1.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + dev: true + + registry.npmmirror.com/jest-watcher/24.9.0: + resolution: {integrity: sha1-S1bl0c7/AF9biOUo3Jr8jdTtKzs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-watcher/download/jest-watcher-24.9.0.tgz} + name: jest-watcher + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/test-result': registry.npmmirror.com/@jest/test-result/24.9.0 + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + '@types/yargs': registry.npmmirror.com/@types/yargs/13.0.12 + ansi-escapes: registry.nlark.com/ansi-escapes/3.2.0 + chalk: registry.nlark.com/chalk/2.4.2 + jest-util: registry.npmmirror.com/jest-util/24.9.0 + string-length: registry.nlark.com/string-length/2.0.0 + dev: true + + registry.npmmirror.com/jest-worker/24.9.0: + resolution: {integrity: sha1-Xb/bWy0yLphWeJgjipaXvM5ns+U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-worker/download/jest-worker-24.9.0.tgz} + name: jest-worker + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + merge-stream: registry.nlark.com/merge-stream/2.0.0 + supports-color: registry.nlark.com/supports-color/6.1.0 + dev: true + + registry.npmmirror.com/jest-worker/25.5.0: + resolution: {integrity: sha1-JhHQcbec6g9D7lej0RhZOsFUfbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-worker/download/jest-worker-25.5.0.tgz} + name: jest-worker + version: 25.5.0 + engines: {node: '>= 8.3'} + dependencies: + merge-stream: registry.nlark.com/merge-stream/2.0.0 + supports-color: registry.nlark.com/supports-color/7.2.0 + dev: true + + registry.npmmirror.com/jest/24.9.0: + resolution: {integrity: sha1-mH0pDAWgi1LFYYjBAC42jtsAcXE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest/download/jest-24.9.0.tgz} + name: jest + version: 24.9.0 + engines: {node: '>= 6'} + hasBin: true + dependencies: + import-local: registry.npmmirror.com/import-local/2.0.0 + jest-cli: registry.npmmirror.com/jest-cli/24.9.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/js-base64/2.6.4: + resolution: {integrity: sha1-9OaGxd4eofhn28rT1G2WlCjfmMQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-base64/download/js-base64-2.6.4.tgz} + name: js-base64 + version: 2.6.4 + dev: true + + registry.npmmirror.com/js-beautify/1.14.0: + resolution: {integrity: sha1-LOeQxVXVPOHj1zYyJ6z13GkCTC0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-beautify/download/js-beautify-1.14.0.tgz} + name: js-beautify + version: 1.14.0 + engines: {node: '>=10'} + hasBin: true + dependencies: + config-chain: registry.nlark.com/config-chain/1.1.13 + editorconfig: registry.npmmirror.com/editorconfig/0.15.3 + glob: registry.npmmirror.com/glob/7.2.0 + nopt: registry.nlark.com/nopt/5.0.0 + dev: true + + registry.npmmirror.com/js-queue/2.0.2: + resolution: {integrity: sha1-C+WQM4+QOzbHPTPDGIOoIUEs1II=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-queue/download/js-queue-2.0.2.tgz} + name: js-queue + version: 2.0.2 + engines: {node: '>=1.0.0'} + dependencies: + easy-stack: registry.nlark.com/easy-stack/1.0.1 + dev: true + + registry.npmmirror.com/jsdom/11.12.0: + resolution: {integrity: sha1-GoDUDd03ih3lllbp5txaO6hle8g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsdom/download/jsdom-11.12.0.tgz} + name: jsdom + version: 11.12.0 + dependencies: + abab: registry.nlark.com/abab/2.0.5 + acorn: registry.nlark.com/acorn/5.7.4 + acorn-globals: registry.nlark.com/acorn-globals/4.3.4 + array-equal: registry.nlark.com/array-equal/1.0.0 + cssom: registry.nlark.com/cssom/0.3.8 + cssstyle: registry.nlark.com/cssstyle/1.4.0 + data-urls: registry.npmmirror.com/data-urls/1.1.0 + domexception: registry.npmmirror.com/domexception/1.0.1 + escodegen: registry.nlark.com/escodegen/1.14.3 + html-encoding-sniffer: registry.nlark.com/html-encoding-sniffer/1.0.2 + left-pad: registry.npmmirror.com/left-pad/1.3.0 + nwsapi: registry.nlark.com/nwsapi/2.2.0 + parse5: registry.nlark.com/parse5/4.0.0 + pn: registry.nlark.com/pn/1.1.0 + request: registry.npmmirror.com/request/2.88.2 + request-promise-native: registry.npmmirror.com/request-promise-native/1.0.9_request@2.88.2 + sax: registry.nlark.com/sax/1.2.4 + symbol-tree: registry.nlark.com/symbol-tree/3.2.4 + tough-cookie: registry.nlark.com/tough-cookie/2.5.0 + w3c-hr-time: registry.nlark.com/w3c-hr-time/1.0.2 + webidl-conversions: registry.nlark.com/webidl-conversions/4.0.2 + whatwg-encoding: registry.nlark.com/whatwg-encoding/1.0.5 + whatwg-mimetype: registry.nlark.com/whatwg-mimetype/2.3.0 + whatwg-url: registry.npmmirror.com/whatwg-url/6.5.0 + ws: registry.npmmirror.com/ws/5.2.3 + xml-name-validator: registry.nlark.com/xml-name-validator/3.0.0 + dev: true + + registry.npmmirror.com/jsdom/15.2.1: + resolution: {integrity: sha1-0v6xrvcYP4a+UhuMaDP/UpbQfsU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsdom/download/jsdom-15.2.1.tgz} + name: jsdom + version: 15.2.1 + engines: {node: '>=8'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: registry.nlark.com/abab/2.0.5 + acorn: registry.nlark.com/acorn/7.4.1 + acorn-globals: registry.nlark.com/acorn-globals/4.3.4 + array-equal: registry.nlark.com/array-equal/1.0.0 + cssom: registry.nlark.com/cssom/0.4.4 + cssstyle: registry.nlark.com/cssstyle/2.3.0 + data-urls: registry.npmmirror.com/data-urls/1.1.0 + domexception: registry.npmmirror.com/domexception/1.0.1 + escodegen: registry.nlark.com/escodegen/1.14.3 + html-encoding-sniffer: registry.nlark.com/html-encoding-sniffer/1.0.2 + nwsapi: registry.nlark.com/nwsapi/2.2.0 + parse5: registry.nlark.com/parse5/5.1.0 + pn: registry.nlark.com/pn/1.1.0 + request: registry.npmmirror.com/request/2.88.2 + request-promise-native: registry.npmmirror.com/request-promise-native/1.0.9_request@2.88.2 + saxes: registry.npmmirror.com/saxes/3.1.11 + symbol-tree: registry.nlark.com/symbol-tree/3.2.4 + tough-cookie: registry.nlark.com/tough-cookie/3.0.1 + w3c-hr-time: registry.nlark.com/w3c-hr-time/1.0.2 + w3c-xmlserializer: registry.nlark.com/w3c-xmlserializer/1.1.2 + webidl-conversions: registry.nlark.com/webidl-conversions/4.0.2 + whatwg-encoding: registry.nlark.com/whatwg-encoding/1.0.5 + whatwg-mimetype: registry.nlark.com/whatwg-mimetype/2.3.0 + whatwg-url: registry.npmmirror.com/whatwg-url/7.1.0 + ws: registry.npmmirror.com/ws/7.5.5 + xml-name-validator: registry.nlark.com/xml-name-validator/3.0.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: true + + registry.npmmirror.com/json-schema/0.2.3: + resolution: {integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-schema/download/json-schema-0.2.3.tgz?cache=0&sync_timestamp=1636424740652&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fjson-schema%2Fdownload%2Fjson-schema-0.2.3.tgz} + name: json-schema + version: 0.2.3 + dev: true + + registry.npmmirror.com/json3/3.3.3: + resolution: {integrity: sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json3/download/json3-3.3.3.tgz} + name: json3 + version: 3.3.3 + dev: true + + registry.npmmirror.com/jsprim/1.4.1: + resolution: {integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsprim/download/jsprim-1.4.1.tgz} + name: jsprim + version: 1.4.1 + engines: {'0': node >=0.6.0} + dependencies: + assert-plus: registry.nlark.com/assert-plus/1.0.0 + extsprintf: registry.npmmirror.com/extsprintf/1.3.0 + json-schema: registry.npmmirror.com/json-schema/0.2.3 + verror: registry.npmmirror.com/verror/1.10.0 + dev: true + + registry.npmmirror.com/left-pad/1.3.0: + resolution: {integrity: sha1-W4o6d2Xf4AEmHd6RVYnngvjJTR4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/left-pad/download/left-pad-1.3.0.tgz} + name: left-pad + version: 1.3.0 + deprecated: use String.prototype.padStart() + dev: true + + registry.npmmirror.com/loader-utils/0.2.17: + resolution: {integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/download/loader-utils-0.2.17.tgz?cache=0&sync_timestamp=1636697509282&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Floader-utils%2Fdownload%2Floader-utils-0.2.17.tgz} + name: loader-utils + version: 0.2.17 + dependencies: + big.js: registry.nlark.com/big.js/3.2.0 + emojis-list: registry.nlark.com/emojis-list/2.1.0 + json5: registry.nlark.com/json5/0.5.1 + object-assign: registry.nlark.com/object-assign/4.1.1 + dev: true + + registry.npmmirror.com/loader-utils/1.4.0: + resolution: {integrity: sha1-xXm140yzSxp07cbB+za/o3HVphM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/download/loader-utils-1.4.0.tgz?cache=0&sync_timestamp=1636697509282&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Floader-utils%2Fdownload%2Floader-utils-1.4.0.tgz} + name: loader-utils + version: 1.4.0 + engines: {node: '>=4.0.0'} + dependencies: + big.js: registry.nlark.com/big.js/5.2.2 + emojis-list: registry.nlark.com/emojis-list/3.0.0 + json5: registry.nlark.com/json5/1.0.1 + dev: true + + registry.npmmirror.com/loader-utils/2.0.2: + resolution: {integrity: sha1-1uO0+4GHByGuTghoqxHdY4NowSk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/download/loader-utils-2.0.2.tgz?cache=0&sync_timestamp=1636697509282&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Floader-utils%2Fdownload%2Floader-utils-2.0.2.tgz} + name: loader-utils + version: 2.0.2 + engines: {node: '>=8.9.0'} + dependencies: + big.js: registry.nlark.com/big.js/5.2.2 + emojis-list: registry.nlark.com/emojis-list/3.0.0 + json5: registry.nlark.com/json5/2.2.0 + dev: false + + registry.npmmirror.com/locate-path/2.0.0: + resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/download/locate-path-2.0.0.tgz} + name: locate-path + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + p-locate: registry.nlark.com/p-locate/2.0.0 + path-exists: registry.nlark.com/path-exists/3.0.0 + dev: true + + registry.npmmirror.com/locate-path/3.0.0: + resolution: {integrity: sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/download/locate-path-3.0.0.tgz} + name: locate-path + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + p-locate: registry.nlark.com/p-locate/3.0.0 + path-exists: registry.nlark.com/path-exists/3.0.0 + dev: true + + registry.npmmirror.com/locate-path/5.0.0: + resolution: {integrity: sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/download/locate-path-5.0.0.tgz} + name: locate-path + version: 5.0.0 + engines: {node: '>=8'} + dependencies: + p-locate: registry.nlark.com/p-locate/4.1.0 + dev: true + + registry.npmmirror.com/lodash.kebabcase/4.1.1: + resolution: {integrity: sha1-hImxyw0p/4gZXM7KRI/21swpXDY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.kebabcase/download/lodash.kebabcase-4.1.1.tgz} + name: lodash.kebabcase + version: 4.1.1 + dev: true + + registry.npmmirror.com/lodash.padend/4.6.1: + resolution: {integrity: sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.padend/download/lodash.padend-4.6.1.tgz} + name: lodash.padend + version: 4.6.1 + dev: true + + registry.npmmirror.com/make-error/1.3.6: + resolution: {integrity: sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/make-error/download/make-error-1.3.6.tgz} + name: make-error + version: 1.3.6 + dev: true + + registry.npmmirror.com/makeerror/1.0.12: + resolution: {integrity: sha1-Pl3SB5qC6BLpg8xmEMSiyw6qgBo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/makeerror/download/makeerror-1.0.12.tgz} + name: makeerror + version: 1.0.12 + dependencies: + tmpl: registry.nlark.com/tmpl/1.0.5 + dev: true + + registry.npmmirror.com/media-typer/0.3.0: + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/media-typer/download/media-typer-0.3.0.tgz} + name: media-typer + version: 0.3.0 + engines: {node: '>= 0.6'} + dev: true + + registry.npmmirror.com/merge-descriptors/1.0.1: + resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-descriptors/download/merge-descriptors-1.0.1.tgz} + name: merge-descriptors + version: 1.0.1 + dev: true + + registry.npmmirror.com/microargs/1.1.0: + resolution: {integrity: sha1-XsPNi9dzf1fUhVlBMZM+qUMJ+1k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/microargs/download/microargs-1.1.0.tgz} + name: microargs + version: 1.1.0 + engines: {node: '>=6.11.1'} + dev: true + + registry.npmmirror.com/microcli/1.3.1: + resolution: {integrity: sha1-bkm3GlRb55Fqh7nt07rmjMhdZ8w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/microcli/download/microcli-1.3.1.tgz} + name: microcli + version: 1.3.1 + engines: {node: '>=6.11.1'} + dependencies: + lodash: registry.nlark.com/lodash/4.17.4 + microargs: registry.npmmirror.com/microargs/1.1.0 + dev: true + + registry.npmmirror.com/mime-db/1.51.0: + resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/download/mime-db-1.51.0.tgz} + name: mime-db + version: 1.51.0 + engines: {node: '>= 0.6'} + dev: true + + registry.npmmirror.com/mime-types/2.1.34: + resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-types/download/mime-types-2.1.34.tgz?cache=0&sync_timestamp=1636433581808&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmime-types%2Fdownload%2Fmime-types-2.1.34.tgz} + name: mime-types + version: 2.1.34 + engines: {node: '>= 0.6'} + dependencies: + mime-db: registry.npmmirror.com/mime-db/1.51.0 + dev: true + + registry.npmmirror.com/mime/1.4.1: + resolution: {integrity: sha1-Eh+evEnjdm8xGnbh+hyAA8SwOqY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/download/mime-1.4.1.tgz} + name: mime + version: 1.4.1 + hasBin: true + dev: true + + registry.npmmirror.com/mime/1.6.0: + resolution: {integrity: sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/download/mime-1.6.0.tgz} + name: mime + version: 1.6.0 + engines: {node: '>=4'} + hasBin: true + dev: true + + registry.npmmirror.com/mime/2.6.0: + resolution: {integrity: sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/download/mime-2.6.0.tgz} + name: mime + version: 2.6.0 + engines: {node: '>=4.0.0'} + hasBin: true + dev: true + + registry.npmmirror.com/mini-css-extract-plugin/0.9.0_webpack@4.46.0: + resolution: {integrity: sha1-R/LPB6oWWrNXM7H8l9TEbAVkM54=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.9.0.tgz?cache=0&sync_timestamp=1636034430405&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmini-css-extract-plugin%2Fdownload%2Fmini-css-extract-plugin-0.9.0.tgz} + id: registry.npmmirror.com/mini-css-extract-plugin/0.9.0 + name: mini-css-extract-plugin + version: 0.9.0 + engines: {node: '>= 6.9.0'} + peerDependencies: + webpack: ^4.4.0 + dependencies: + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + normalize-url: registry.nlark.com/normalize-url/1.9.1 + schema-utils: registry.nlark.com/schema-utils/1.0.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-sources: registry.nlark.com/webpack-sources/1.4.3 + dev: true + + registry.npmmirror.com/minipass-collect/1.0.2: + resolution: {integrity: sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minipass-collect/download/minipass-collect-1.0.2.tgz} + name: minipass-collect + version: 1.0.2 + engines: {node: '>= 8'} + dependencies: + minipass: registry.nlark.com/minipass/3.1.5 + dev: true + + registry.npmmirror.com/minipass-flush/1.0.5: + resolution: {integrity: sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minipass-flush/download/minipass-flush-1.0.5.tgz} + name: minipass-flush + version: 1.0.5 + engines: {node: '>= 8'} + dependencies: + minipass: registry.nlark.com/minipass/3.1.5 + dev: true + + registry.npmmirror.com/minipass-pipeline/1.2.4: + resolution: {integrity: sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minipass-pipeline/download/minipass-pipeline-1.2.4.tgz} + name: minipass-pipeline + version: 1.2.4 + engines: {node: '>=8'} + dependencies: + minipass: registry.nlark.com/minipass/3.1.5 + dev: true + + registry.npmmirror.com/mitt/1.1.2: + resolution: {integrity: sha1-OA5hSA1qYVtmDwertg1R4KTkvtY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mitt/download/mitt-1.1.2.tgz} + name: mitt + version: 1.1.2 + dev: true + + registry.npmmirror.com/mkdirp/0.5.5: + resolution: {integrity: sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mkdirp/download/mkdirp-0.5.5.tgz} + name: mkdirp + version: 0.5.5 + hasBin: true + dependencies: + minimist: registry.nlark.com/minimist/1.2.5 + + registry.npmmirror.com/ms/2.0.0: + resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz} + name: ms + version: 2.0.0 + dev: true + + registry.npmmirror.com/ms/2.1.1: + resolution: {integrity: sha1-MKWGTrPrsKZvLr5tcnrwagnYbgo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.1.1.tgz} + name: ms + version: 2.1.1 + dev: true + + registry.npmmirror.com/ms/2.1.2: + resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz} + name: ms + version: 2.1.2 + dev: true + + registry.npmmirror.com/ms/2.1.3: + resolution: {integrity: sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.1.3.tgz} + name: ms + version: 2.1.3 + + registry.npmmirror.com/multicast-dns/6.2.3: + resolution: {integrity: sha1-oOx72QVcQoL3kMPIL04o2zsxsik=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/multicast-dns/download/multicast-dns-6.2.3.tgz} + name: multicast-dns + version: 6.2.3 + hasBin: true + dependencies: + dns-packet: registry.nlark.com/dns-packet/1.3.4 + thunky: registry.nlark.com/thunky/1.1.0 + dev: true + + registry.npmmirror.com/mz/2.7.0: + resolution: {integrity: sha1-lQCAV6Vsr63CvGPd5/n/aVWUjjI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mz/download/mz-2.7.0.tgz} + name: mz + version: 2.7.0 + dependencies: + any-promise: registry.nlark.com/any-promise/1.3.0 + object-assign: registry.nlark.com/object-assign/4.1.1 + thenify-all: registry.npmmirror.com/thenify-all/1.6.0 + dev: true + + registry.npmmirror.com/nanoid/3.1.30: + resolution: {integrity: sha1-Y/k8xUjSoRPcXfvGO/oJ4rm2Q2I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/download/nanoid-3.1.30.tgz} + name: nanoid + version: 3.1.30 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + + registry.npmmirror.com/negotiator/0.6.2: + resolution: {integrity: sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/negotiator/download/negotiator-0.6.2.tgz} + name: negotiator + version: 0.6.2 + engines: {node: '>= 0.6'} + dev: true + + registry.npmmirror.com/node-addon-api/1.7.2: + resolution: {integrity: sha1-PfMLlXILU8JOWZSLSVMrZiRE9U0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-addon-api/download/node-addon-api-1.7.2.tgz} + name: node-addon-api + version: 1.7.2 + dev: true + + registry.npmmirror.com/node-cache/4.2.1: + resolution: {integrity: sha1-79hHTe5O3sQTjN3tWA9VFlAPczQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-cache/download/node-cache-4.2.1.tgz} + name: node-cache + version: 4.2.1 + engines: {node: '>= 0.4.6'} + dependencies: + clone: registry.nlark.com/clone/2.1.2 + lodash: registry.nlark.com/lodash/4.17.21 + dev: true + + registry.npmmirror.com/node-releases/2.0.1: + resolution: {integrity: sha1-PR05XyBPHy8ppUNYuftnh2WtL8U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/download/node-releases-2.0.1.tgz} + name: node-releases + version: 2.0.1 + dev: true + + registry.npmmirror.com/npm-run-path/2.0.2: + resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/download/npm-run-path-2.0.2.tgz} + name: npm-run-path + version: 2.0.2 + engines: {node: '>=4'} + dependencies: + path-key: registry.nlark.com/path-key/2.0.1 + dev: true + + registry.npmmirror.com/npm-run-path/4.0.1: + resolution: {integrity: sha1-t+zR5e1T2o43pV4cImnguX7XSOo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/download/npm-run-path-4.0.1.tgz} + name: npm-run-path + version: 4.0.1 + engines: {node: '>=8'} + dependencies: + path-key: registry.nlark.com/path-key/3.1.1 + dev: true + + registry.npmmirror.com/nprogress/0.2.0: + resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nprogress/download/nprogress-0.2.0.tgz} + name: nprogress + version: 0.2.0 + dev: false + + registry.npmmirror.com/object.getownpropertydescriptors/2.1.3: + resolution: {integrity: sha1-siPPOOF/77l6Y8EMkd9yzLOG354=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.getownpropertydescriptors/download/object.getownpropertydescriptors-2.1.3.tgz} + name: object.getownpropertydescriptors + version: 2.1.3 + engines: {node: '>= 0.8'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + es-abstract: registry.npmmirror.com/es-abstract/1.19.1 + dev: true + + registry.npmmirror.com/object.values/1.1.5: + resolution: {integrity: sha1-lZ9j486e8QhyAzMIITHkpFm3Fqw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.values/download/object.values-1.1.5.tgz} + name: object.values + version: 1.1.5 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.nlark.com/call-bind/1.0.2 + define-properties: registry.nlark.com/define-properties/1.1.3 + es-abstract: registry.npmmirror.com/es-abstract/1.19.1 + dev: true + + registry.npmmirror.com/omelette/0.4.5: + resolution: {integrity: sha1-8WvEd7fiY7WXlqZWYZZOR2LprnQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/omelette/download/omelette-0.4.5.tgz} + name: omelette + version: 0.4.5 + engines: {node: '>=0.8.0'} + dev: true + + registry.npmmirror.com/open/6.4.0: + resolution: {integrity: sha1-XBPpbQ3IlGhhZPGJZez+iJ7PyKk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/open/download/open-6.4.0.tgz} + name: open + version: 6.4.0 + engines: {node: '>=8'} + dependencies: + is-wsl: registry.nlark.com/is-wsl/1.1.0 + dev: true + + registry.npmmirror.com/opn/5.5.0: + resolution: {integrity: sha1-/HFk+rVtI1kExRw7J9pnWMo7m/w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/opn/download/opn-5.5.0.tgz} + name: opn + version: 5.5.0 + engines: {node: '>=4'} + dependencies: + is-wsl: registry.nlark.com/is-wsl/1.1.0 + dev: true + + registry.npmmirror.com/p-map/2.1.0: + resolution: {integrity: sha1-MQko/u+cnsxltosXaTAYpmXOoXU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-map/download/p-map-2.1.0.tgz} + name: p-map + version: 2.1.0 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/p-map/3.0.0: + resolution: {integrity: sha1-1wTZr4orpoTiYA2aIVmD1BQal50=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-map/download/p-map-3.0.0.tgz} + name: p-map + version: 3.0.0 + engines: {node: '>=8'} + dependencies: + aggregate-error: registry.nlark.com/aggregate-error/3.1.0 + dev: true + + registry.npmmirror.com/p-retry/3.0.1: + resolution: {integrity: sha1-MWtMiJPiyNwc+okfQGxLQivr8yg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-retry/download/p-retry-3.0.1.tgz} + name: p-retry + version: 3.0.1 + engines: {node: '>=6'} + dependencies: + retry: registry.nlark.com/retry/0.12.0 + dev: true + + registry.npmmirror.com/p-try/1.0.0: + resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz} + name: p-try + version: 1.0.0 + engines: {node: '>=4'} + dev: true + + registry.npmmirror.com/p-try/2.2.0: + resolution: {integrity: sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/download/p-try-2.2.0.tgz} + name: p-try + version: 2.2.0 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/parent-module/1.0.1: + resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parent-module/download/parent-module-1.0.1.tgz} + name: parent-module + version: 1.0.1 + engines: {node: '>=6'} + dependencies: + callsites: registry.nlark.com/callsites/3.1.0 + dev: true + + registry.npmmirror.com/parse-json/2.2.0: + resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/download/parse-json-2.2.0.tgz} + name: parse-json + version: 2.2.0 + engines: {node: '>=0.10.0'} + dependencies: + error-ex: registry.nlark.com/error-ex/1.3.2 + dev: true + + registry.npmmirror.com/parse-json/4.0.0: + resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/download/parse-json-4.0.0.tgz} + name: parse-json + version: 4.0.0 + engines: {node: '>=4'} + dependencies: + error-ex: registry.nlark.com/error-ex/1.3.2 + json-parse-better-errors: registry.nlark.com/json-parse-better-errors/1.0.2 + dev: true + + registry.npmmirror.com/parse-json/5.2.0: + resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/download/parse-json-5.2.0.tgz} + name: parse-json + version: 5.2.0 + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 + error-ex: registry.nlark.com/error-ex/1.3.2 + json-parse-even-better-errors: registry.nlark.com/json-parse-even-better-errors/2.3.1 + lines-and-columns: registry.nlark.com/lines-and-columns/1.1.6 + dev: true + + registry.npmmirror.com/path-is-inside/1.0.2: + resolution: {integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-is-inside/download/path-is-inside-1.0.2.tgz} + name: path-is-inside + version: 1.0.2 + dev: true + + registry.npmmirror.com/picocolors/0.2.1: + resolution: {integrity: sha1-VwZw95NkaFHRuhNZlpYqutWHhZ8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/download/picocolors-0.2.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-0.2.1.tgz} + name: picocolors + version: 0.2.1 + dev: true + + registry.npmmirror.com/picocolors/1.0.0: + resolution: {integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/download/picocolors-1.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpicocolors%2Fdownload%2Fpicocolors-1.0.0.tgz} + name: picocolors + version: 1.0.0 + dev: true + + registry.npmmirror.com/pkg-dir/1.0.0: + resolution: {integrity: sha1-ektQio1bstYp1EcFb/TpyTFM89Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-dir/download/pkg-dir-1.0.0.tgz} + name: pkg-dir + version: 1.0.0 + engines: {node: '>=0.10.0'} + dependencies: + find-up: registry.npmmirror.com/find-up/1.1.2 + dev: true + + registry.npmmirror.com/pkg-dir/3.0.0: + resolution: {integrity: sha1-J0kCDyOe2ZCIGx9xIQ1R62UjvqM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-dir/download/pkg-dir-3.0.0.tgz} + name: pkg-dir + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + find-up: registry.npmmirror.com/find-up/3.0.0 + dev: true + + registry.npmmirror.com/pkg-dir/4.2.0: + resolution: {integrity: sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-dir/download/pkg-dir-4.2.0.tgz} + name: pkg-dir + version: 4.2.0 + engines: {node: '>=8'} + dependencies: + find-up: registry.npmmirror.com/find-up/4.1.0 + dev: true + + registry.npmmirror.com/pnp-webpack-plugin/1.7.0: + resolution: {integrity: sha1-ZXQThPbYBW824iVajWf/wghm9ck=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pnp-webpack-plugin/download/pnp-webpack-plugin-1.7.0.tgz} + name: pnp-webpack-plugin + version: 1.7.0 + engines: {node: '>=6'} + dependencies: + ts-pnp: registry.npmmirror.com/ts-pnp/1.2.0 + transitivePeerDependencies: + - typescript + dev: true + + registry.npmmirror.com/postcss-colormin/4.0.3: + resolution: {integrity: sha1-rgYLzpPteUrHEmTwgTLVUJVr04E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-colormin/download/postcss-colormin-4.0.3.tgz} + name: postcss-colormin + version: 4.0.3 + engines: {node: '>=6.9.0'} + dependencies: + browserslist: registry.npmmirror.com/browserslist/4.17.6 + color: registry.nlark.com/color/3.2.1 + has: registry.nlark.com/has/1.0.3 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.npmmirror.com/postcss-convert-values/4.0.1: + resolution: {integrity: sha1-yjgT7U2g+BL51DcDWE5Enr4Ymn8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-convert-values/download/postcss-convert-values-4.0.1.tgz} + name: postcss-convert-values + version: 4.0.1 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.npmmirror.com/postcss-load-config/2.1.2: + resolution: {integrity: sha1-xepQTyxK7zPHNZo03jVzdyrXUCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-load-config/download/postcss-load-config-2.1.2.tgz} + name: postcss-load-config + version: 2.1.2 + engines: {node: '>= 4'} + dependencies: + cosmiconfig: registry.nlark.com/cosmiconfig/5.2.1 + import-cwd: registry.nlark.com/import-cwd/2.1.0 + dev: true + + registry.npmmirror.com/postcss-loader/3.0.0: + resolution: {integrity: sha1-a5eUPkfHLYRfqeA/Jzdz1OjdbC0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-loader/download/postcss-loader-3.0.0.tgz?cache=0&sync_timestamp=1634209341378&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fpostcss-loader%2Fdownload%2Fpostcss-loader-3.0.0.tgz} + name: postcss-loader + version: 3.0.0 + engines: {node: '>= 6'} + dependencies: + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-load-config: registry.npmmirror.com/postcss-load-config/2.1.2 + schema-utils: registry.nlark.com/schema-utils/1.0.0 + dev: true + + registry.npmmirror.com/postcss-merge-longhand/4.0.11: + resolution: {integrity: sha1-YvSaE+Sg7gTnuY9CuxYGLKJUniQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-merge-longhand/download/postcss-merge-longhand-4.0.11.tgz} + name: postcss-merge-longhand + version: 4.0.11 + engines: {node: '>=6.9.0'} + dependencies: + css-color-names: registry.nlark.com/css-color-names/0.0.4 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + stylehacks: registry.nlark.com/stylehacks/4.0.3 + dev: true + + registry.npmmirror.com/postcss-minify-gradients/4.0.2: + resolution: {integrity: sha1-k7KcL/UJnFNe7NpWxKpuZlpmNHE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-minify-gradients/download/postcss-minify-gradients-4.0.2.tgz} + name: postcss-minify-gradients + version: 4.0.2 + engines: {node: '>=6.9.0'} + dependencies: + cssnano-util-get-arguments: registry.nlark.com/cssnano-util-get-arguments/4.0.0 + is-color-stop: registry.nlark.com/is-color-stop/1.1.0 + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + dev: true + + registry.npmmirror.com/postcss-prefix-selector/1.13.0: + resolution: {integrity: sha1-E2w+uEjtrO2QQXuxA4PeVsB1V/Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-prefix-selector/download/postcss-prefix-selector-1.13.0.tgz} + name: postcss-prefix-selector + version: 1.13.0 + dependencies: + postcss: registry.npmmirror.com/postcss/8.3.11 + dev: true + + registry.npmmirror.com/postcss-svgo/4.0.3: + resolution: {integrity: sha1-NDos26yVBdQWJD1Jb3JPOIlMlB4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-svgo/download/postcss-svgo-4.0.3.tgz} + name: postcss-svgo + version: 4.0.3 + engines: {node: '>=6.9.0'} + dependencies: + postcss: registry.npmmirror.com/postcss/7.0.39 + postcss-value-parser: registry.nlark.com/postcss-value-parser/3.3.1 + svgo: registry.npmmirror.com/svgo/1.2.2 + dev: true + + registry.npmmirror.com/postcss/5.2.18: + resolution: {integrity: sha1-ut+hSX1GJE9jkPWLMZgw2RB4U8U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/download/postcss-5.2.18.tgz} + name: postcss + version: 5.2.18 + engines: {node: '>=0.12'} + dependencies: + chalk: registry.nlark.com/chalk/1.1.3 + js-base64: registry.npmmirror.com/js-base64/2.6.4 + source-map: registry.nlark.com/source-map/0.5.7 + supports-color: registry.nlark.com/supports-color/3.2.3 + dev: true + + registry.npmmirror.com/postcss/7.0.39: + resolution: {integrity: sha1-liQ3XZZWMOLh8sAqk1yCpZy0gwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/download/postcss-7.0.39.tgz} + name: postcss + version: 7.0.39 + engines: {node: '>=6.0.0'} + dependencies: + picocolors: registry.npmmirror.com/picocolors/0.2.1 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.npmmirror.com/postcss/8.3.11: + resolution: {integrity: sha1-w77KfqgRzV4cSj7G0udZnvH4+Fg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/download/postcss-8.3.11.tgz} + name: postcss + version: 8.3.11 + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: registry.npmmirror.com/nanoid/3.1.30 + picocolors: registry.npmmirror.com/picocolors/1.0.0 + source-map-js: registry.npmmirror.com/source-map-js/0.6.2 + dev: true + + registry.npmmirror.com/posthtml-parser/0.2.1: + resolution: {integrity: sha1-NdUw3jhnQMK6JP8usvrznM3ycd0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-parser/download/posthtml-parser-0.2.1.tgz} + name: posthtml-parser + version: 0.2.1 + dependencies: + htmlparser2: registry.npmmirror.com/htmlparser2/3.10.1 + isobject: registry.nlark.com/isobject/2.1.0 + dev: true + + registry.npmmirror.com/posthtml-rename-id/1.0.12: + resolution: {integrity: sha1-z39us3FGvxr6wx5o8YxswZrmFDM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-rename-id/download/posthtml-rename-id-1.0.12.tgz} + name: posthtml-rename-id + version: 1.0.12 + dependencies: + escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 + dev: true + + registry.npmmirror.com/posthtml-render/1.4.0: + resolution: {integrity: sha1-QBFAcMRYgcrLkzR9rj7/U6+8/xM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-render/download/posthtml-render-1.4.0.tgz} + name: posthtml-render + version: 1.4.0 + engines: {node: '>=10'} + dev: true + + registry.npmmirror.com/posthtml-svg-mode/1.0.3: + resolution: {integrity: sha1-q9VU+s6BIjyrDLNn4Y5O/SpOdLA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/posthtml-svg-mode/download/posthtml-svg-mode-1.0.3.tgz} + name: posthtml-svg-mode + version: 1.0.3 + dependencies: + merge-options: registry.nlark.com/merge-options/1.0.1 + posthtml: registry.nlark.com/posthtml/0.9.2 + posthtml-parser: registry.npmmirror.com/posthtml-parser/0.2.1 + posthtml-render: registry.npmmirror.com/posthtml-render/1.4.0 + dev: true + + registry.npmmirror.com/pretty-error/2.1.2: + resolution: {integrity: sha1-von4LYGxyG7I/fvDhQRYgnJ/k7Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty-error/download/pretty-error-2.1.2.tgz} + name: pretty-error + version: 2.1.2 + dependencies: + lodash: registry.nlark.com/lodash/4.17.21 + renderkid: registry.npmmirror.com/renderkid/2.0.7 + dev: true + + registry.npmmirror.com/pretty-format/24.9.0: + resolution: {integrity: sha1-EvrDGzcBmk7qPBGqmpWet2KKp8k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty-format/download/pretty-format-24.9.0.tgz} + name: pretty-format + version: 24.9.0 + engines: {node: '>= 6'} + dependencies: + '@jest/types': registry.npmmirror.com/@jest/types/24.9.0 + ansi-regex: registry.nlark.com/ansi-regex/4.1.0 + ansi-styles: registry.nlark.com/ansi-styles/3.2.1 + react-is: registry.npmmirror.com/react-is/16.13.1 + dev: true + + registry.npmmirror.com/pretty/2.0.0: + resolution: {integrity: sha1-rbx5YLe7/iiaVX3F9zdhmiINBqU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty/download/pretty-2.0.0.tgz} + name: pretty + version: 2.0.0 + engines: {node: '>=0.10.0'} + dependencies: + condense-newlines: registry.npmmirror.com/condense-newlines/0.2.1 + extend-shallow: registry.nlark.com/extend-shallow/2.0.1 + js-beautify: registry.npmmirror.com/js-beautify/1.14.0 + dev: true + + registry.npmmirror.com/prompts/2.4.2: + resolution: {integrity: sha1-e1fnOzpIAprRDr1E90sBcipMsGk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prompts/download/prompts-2.4.2.tgz} + name: prompts + version: 2.4.2 + engines: {node: '>= 6'} + dependencies: + kleur: registry.nlark.com/kleur/3.0.3 + sisteransi: registry.nlark.com/sisteransi/1.0.5 + dev: true + + registry.npmmirror.com/querystring/0.2.0: + resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/querystring/download/querystring-0.2.0.tgz} + name: querystring + version: 0.2.0 + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true + + registry.npmmirror.com/raw-body/2.4.0: + resolution: {integrity: sha1-oc5vucm8NWylLoklarWQWeE9AzI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/raw-body/download/raw-body-2.4.0.tgz} + name: raw-body + version: 2.4.0 + engines: {node: '>= 0.8'} + dependencies: + bytes: registry.nlark.com/bytes/3.1.0 + http-errors: registry.nlark.com/http-errors/1.7.2 + iconv-lite: registry.nlark.com/iconv-lite/0.4.24 + unpipe: registry.nlark.com/unpipe/1.0.0 + dev: true + + registry.npmmirror.com/react-is/16.13.1: + resolution: {integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz} + name: react-is + version: 16.13.1 + dev: true + + registry.npmmirror.com/read-pkg-up/1.0.1: + resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/read-pkg-up/download/read-pkg-up-1.0.1.tgz} + name: read-pkg-up + version: 1.0.1 + engines: {node: '>=0.10.0'} + dependencies: + find-up: registry.npmmirror.com/find-up/1.1.2 + read-pkg: registry.nlark.com/read-pkg/1.1.0 + dev: true + + registry.npmmirror.com/read-pkg-up/4.0.0: + resolution: {integrity: sha1-GyIcYIi6d5lgHICPkRYcZuWPiXg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/read-pkg-up/download/read-pkg-up-4.0.0.tgz} + name: read-pkg-up + version: 4.0.0 + engines: {node: '>=6'} + dependencies: + find-up: registry.npmmirror.com/find-up/3.0.0 + read-pkg: registry.nlark.com/read-pkg/3.0.0 + dev: true + + registry.npmmirror.com/realpath-native/1.1.0: + resolution: {integrity: sha1-IAMpT+oj+wZy8kduviL89Jii1lw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/realpath-native/download/realpath-native-1.1.0.tgz} + name: realpath-native + version: 1.1.0 + engines: {node: '>=4'} + dependencies: + util.promisify: registry.nlark.com/util.promisify/1.1.1 + dev: true + + registry.npmmirror.com/regjsgen/0.5.2: + resolution: {integrity: sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regjsgen/download/regjsgen-0.5.2.tgz} + name: regjsgen + version: 0.5.2 + dev: true + + registry.npmmirror.com/renderkid/2.0.7: + resolution: {integrity: sha1-Rk8namvc7mBvShWZP5sp/HTKhgk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/renderkid/download/renderkid-2.0.7.tgz} + name: renderkid + version: 2.0.7 + dependencies: + css-select: registry.nlark.com/css-select/4.1.3 + dom-converter: registry.nlark.com/dom-converter/0.2.0 + htmlparser2: registry.npmmirror.com/htmlparser2/6.1.0 + lodash: registry.nlark.com/lodash/4.17.21 + strip-ansi: registry.npmmirror.com/strip-ansi/3.0.1 + dev: true + + registry.npmmirror.com/request-promise-core/1.1.4_request@2.88.2: + resolution: {integrity: sha1-Pu3UIjII1BmGe3jOgVFn0QWToi8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request-promise-core/download/request-promise-core-1.1.4.tgz} + id: registry.npmmirror.com/request-promise-core/1.1.4 + name: request-promise-core + version: 1.1.4 + engines: {node: '>=0.10.0'} + peerDependencies: + request: ^2.34 + dependencies: + lodash: registry.nlark.com/lodash/4.17.21 + request: registry.npmmirror.com/request/2.88.2 + dev: true + + registry.npmmirror.com/request-promise-native/1.0.9_request@2.88.2: + resolution: {integrity: sha1-5AcSBSal79yaObKKVnm/R7nZ3Cg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request-promise-native/download/request-promise-native-1.0.9.tgz} + id: registry.npmmirror.com/request-promise-native/1.0.9 + name: request-promise-native + version: 1.0.9 + engines: {node: '>=0.12.0'} + deprecated: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142 + peerDependencies: + request: ^2.34 + dependencies: + request: registry.npmmirror.com/request/2.88.2 + request-promise-core: registry.npmmirror.com/request-promise-core/1.1.4_request@2.88.2 + stealthy-require: registry.nlark.com/stealthy-require/1.1.1 + tough-cookie: registry.nlark.com/tough-cookie/2.5.0 + dev: true + + registry.npmmirror.com/request/2.88.2: + resolution: {integrity: sha1-1zyRhzHLWofaBH4gcjQUb2ZNErM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request/download/request-2.88.2.tgz} + name: request + version: 2.88.2 + engines: {node: '>= 6'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + dependencies: + aws-sign2: registry.nlark.com/aws-sign2/0.7.0 + aws4: registry.nlark.com/aws4/1.11.0 + caseless: registry.nlark.com/caseless/0.12.0 + combined-stream: registry.nlark.com/combined-stream/1.0.8 + extend: registry.nlark.com/extend/3.0.2 + forever-agent: registry.nlark.com/forever-agent/0.6.1 + form-data: registry.nlark.com/form-data/2.3.3 + har-validator: registry.npmmirror.com/har-validator/5.1.5 + http-signature: registry.nlark.com/http-signature/1.2.0 + is-typedarray: registry.nlark.com/is-typedarray/1.0.0 + isstream: registry.nlark.com/isstream/0.1.2 + json-stringify-safe: registry.nlark.com/json-stringify-safe/5.0.1 + mime-types: registry.npmmirror.com/mime-types/2.1.34 + oauth-sign: registry.nlark.com/oauth-sign/0.9.0 + performance-now: registry.nlark.com/performance-now/2.1.0 + qs: registry.nlark.com/qs/6.5.2 + safe-buffer: registry.nlark.com/safe-buffer/5.2.1 + tough-cookie: registry.nlark.com/tough-cookie/2.5.0 + tunnel-agent: registry.nlark.com/tunnel-agent/0.6.0 + uuid: registry.npmmirror.com/uuid/3.4.0 + dev: true + + registry.npmmirror.com/resolve-url/0.2.1: + resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-url/download/resolve-url-0.2.1.tgz} + name: resolve-url + version: 0.2.1 + deprecated: https://github.com/lydell/resolve-url#deprecated + dev: true + + registry.npmmirror.com/rimraf/2.6.3: + resolution: {integrity: sha1-stEE/g2Psnz54KHNqCYt04M8bKs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rimraf/download/rimraf-2.6.3.tgz} + name: rimraf + version: 2.6.3 + hasBin: true + dependencies: + glob: registry.npmmirror.com/glob/7.2.0 + dev: true + + registry.npmmirror.com/rimraf/2.7.1: + resolution: {integrity: sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rimraf/download/rimraf-2.7.1.tgz} + name: rimraf + version: 2.7.1 + hasBin: true + dependencies: + glob: registry.npmmirror.com/glob/7.2.0 + dev: true + + registry.npmmirror.com/runjs/4.3.2: + resolution: {integrity: sha1-/KN2covAHNZsznNPO0FkDeKfUq0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/runjs/download/runjs-4.3.2.tgz} + name: runjs + version: 4.3.2 + engines: {node: '>=6.11.1'} + hasBin: true + dependencies: + chalk: registry.nlark.com/chalk/2.3.0 + lodash.padend: registry.npmmirror.com/lodash.padend/4.6.1 + microcli: registry.npmmirror.com/microcli/1.3.1 + omelette: registry.npmmirror.com/omelette/0.4.5 + dev: true + + registry.npmmirror.com/rxjs/6.6.7: + resolution: {integrity: sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/download/rxjs-6.6.7.tgz} + name: rxjs + version: 6.6.7 + engines: {npm: '>=2.0.0'} + dependencies: + tslib: registry.nlark.com/tslib/1.14.1 + dev: true + + registry.npmmirror.com/sane/4.1.0: + resolution: {integrity: sha1-7Ygf2SJzOmxGG8GJ3CtsAG8//e0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sane/download/sane-4.1.0.tgz} + name: sane + version: 4.1.0 + engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true + dependencies: + '@cnakazawa/watch': registry.nlark.com/@cnakazawa/watch/1.0.4 + anymatch: registry.nlark.com/anymatch/2.0.0 + capture-exit: registry.nlark.com/capture-exit/2.0.0 + exec-sh: registry.nlark.com/exec-sh/0.3.6 + execa: registry.nlark.com/execa/1.0.0 + fb-watchman: registry.nlark.com/fb-watchman/2.0.1 + micromatch: registry.nlark.com/micromatch/3.1.10 + minimist: registry.nlark.com/minimist/1.2.5 + walker: registry.npmmirror.com/walker/1.0.8 + dev: true + + registry.npmmirror.com/sass-loader/8.0.2_sass@1.26.8: + resolution: {integrity: sha1-3r7NjDziQ8dkVPLoKQSCFQOACQ0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass-loader/download/sass-loader-8.0.2.tgz} + id: registry.npmmirror.com/sass-loader/8.0.2 + name: sass-loader + version: 8.0.2 + engines: {node: '>= 8.9.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 + sass: ^1.3.0 + webpack: ^4.36.0 || ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + clone-deep: registry.nlark.com/clone-deep/4.0.1 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + neo-async: registry.nlark.com/neo-async/2.6.2 + sass: registry.npmmirror.com/sass/1.26.8 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + semver: registry.nlark.com/semver/6.3.0 + dev: true + + registry.npmmirror.com/sass-resources-loader/2.2.4: + resolution: {integrity: sha1-Gob7pJnnSojLfOlfDJhEnzSNNg4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass-resources-loader/download/sass-resources-loader-2.2.4.tgz} + name: sass-resources-loader + version: 2.2.4 + dependencies: + async: registry.npmmirror.com/async/3.2.2 + chalk: registry.nlark.com/chalk/4.1.2 + glob: registry.npmmirror.com/glob/7.2.0 + loader-utils: registry.npmmirror.com/loader-utils/2.0.2 + dev: false + + registry.npmmirror.com/sass/1.26.8: + resolution: {integrity: sha1-MSZSUwch+VaNTEAAsNsH7G6yMyU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/download/sass-1.26.8.tgz} + name: sass + version: 1.26.8 + engines: {node: '>=8.9.0'} + hasBin: true + dependencies: + chokidar: registry.npmmirror.com/chokidar/3.5.2 + dev: true + + registry.npmmirror.com/saxes/3.1.11: + resolution: {integrity: sha1-1Z0f0zLskq2YouCy7mRHAjhLHFs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/saxes/download/saxes-3.1.11.tgz} + name: saxes + version: 3.1.11 + engines: {node: '>=8'} + dependencies: + xmlchars: registry.nlark.com/xmlchars/2.2.0 + dev: true + + registry.npmmirror.com/script-ext-html-webpack-plugin/2.1.3_html-webpack-plugin@3.2.0: + resolution: {integrity: sha1-tL9wPN2+PeLm9IPhnf66K17Eq/4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/script-ext-html-webpack-plugin/download/script-ext-html-webpack-plugin-2.1.3.tgz} + id: registry.npmmirror.com/script-ext-html-webpack-plugin/2.1.3 + name: script-ext-html-webpack-plugin + version: 2.1.3 + engines: {node: '>=6.11.5'} + peerDependencies: + html-webpack-plugin: ^3.0.0 || ^4.0.0 + webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + dependencies: + debug: registry.npmmirror.com/debug/4.3.2 + html-webpack-plugin: registry.npmmirror.com/html-webpack-plugin/3.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/send/0.16.2: + resolution: {integrity: sha1-bsyh4PjBVtFBWXVZhI32RzCmu8E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/send/download/send-0.16.2.tgz} + name: send + version: 0.16.2 + engines: {node: '>= 0.8.0'} + dependencies: + debug: registry.npmmirror.com/debug/2.6.9 + depd: registry.nlark.com/depd/1.1.2 + destroy: registry.nlark.com/destroy/1.0.4 + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + etag: registry.nlark.com/etag/1.8.1 + fresh: registry.npmmirror.com/fresh/0.5.2 + http-errors: registry.nlark.com/http-errors/1.6.3 + mime: registry.npmmirror.com/mime/1.4.1 + ms: registry.npmmirror.com/ms/2.0.0 + on-finished: registry.nlark.com/on-finished/2.3.0 + range-parser: registry.nlark.com/range-parser/1.2.1 + statuses: registry.nlark.com/statuses/1.4.0 + dev: true + + registry.npmmirror.com/send/0.17.1: + resolution: {integrity: sha1-wdiwWfeQD3Rm3Uk4vcROEd2zdsg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/send/download/send-0.17.1.tgz} + name: send + version: 0.17.1 + engines: {node: '>= 0.8.0'} + dependencies: + debug: registry.npmmirror.com/debug/2.6.9 + depd: registry.nlark.com/depd/1.1.2 + destroy: registry.nlark.com/destroy/1.0.4 + encodeurl: registry.nlark.com/encodeurl/1.0.2 + escape-html: registry.nlark.com/escape-html/1.0.3 + etag: registry.nlark.com/etag/1.8.1 + fresh: registry.npmmirror.com/fresh/0.5.2 + http-errors: registry.nlark.com/http-errors/1.7.3 + mime: registry.npmmirror.com/mime/1.6.0 + ms: registry.npmmirror.com/ms/2.1.1 + on-finished: registry.nlark.com/on-finished/2.3.0 + range-parser: registry.nlark.com/range-parser/1.2.1 + statuses: registry.nlark.com/statuses/1.5.0 + dev: true + + registry.npmmirror.com/shell-quote/1.7.3: + resolution: {integrity: sha1-qkDtrBcERbmkMeF7tiwLiBucQSM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shell-quote/download/shell-quote-1.7.3.tgz} + name: shell-quote + version: 1.7.3 + dev: true + + registry.npmmirror.com/shvl/2.0.3: + resolution: {integrity: sha1-60vTdkT1aEu6H8UsMBDJb7Xmr9E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shvl/download/shvl-2.0.3.tgz} + name: shvl + version: 2.0.3 + dev: false + + registry.npmmirror.com/signal-exit/3.0.5: + resolution: {integrity: sha1-nj6MwMdamUcrRDIQM6dwLnc4JS8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/download/signal-exit-3.0.5.tgz} + name: signal-exit + version: 3.0.5 + dev: true + + registry.npmmirror.com/simple-swizzle/0.2.2: + resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz} + name: simple-swizzle + version: 0.2.2 + dependencies: + is-arrayish: registry.nlark.com/is-arrayish/0.3.2 + dev: true + + registry.npmmirror.com/source-map-js/0.6.2: + resolution: {integrity: sha1-C7XeYxtBz72mz7qL0FqA79/SOF4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-js/download/source-map-js-0.6.2.tgz} + name: source-map-js + version: 0.6.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/stable/0.1.8: + resolution: {integrity: sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stable/download/stable-0.1.8.tgz} + name: stable + version: 0.1.8 + dev: true + + registry.npmmirror.com/string-width/2.1.1: + resolution: {integrity: sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-2.1.1.tgz} + name: string-width + version: 2.1.1 + engines: {node: '>=4'} + dependencies: + is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/2.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/4.0.0 + dev: true + + registry.npmmirror.com/string-width/3.1.0: + resolution: {integrity: sha1-InZ74htirxCBV0MG9prFG2IgOWE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-3.1.0.tgz} + name: string-width + version: 3.1.0 + engines: {node: '>=6'} + dependencies: + emoji-regex: registry.npmmirror.com/emoji-regex/7.0.3 + is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/2.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0 + dev: true + + registry.npmmirror.com/string-width/4.2.3: + resolution: {integrity: sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-4.2.3.tgz} + name: string-width + version: 4.2.3 + engines: {node: '>=8'} + dependencies: + emoji-regex: registry.npmmirror.com/emoji-regex/8.0.0 + is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/3.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.npmmirror.com/strip-ansi/3.0.1: + resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-3.0.1.tgz} + name: strip-ansi + version: 3.0.1 + engines: {node: '>=0.10.0'} + dependencies: + ansi-regex: registry.nlark.com/ansi-regex/2.1.1 + dev: true + + registry.npmmirror.com/strip-ansi/4.0.0: + resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-4.0.0.tgz} + name: strip-ansi + version: 4.0.0 + engines: {node: '>=4'} + dependencies: + ansi-regex: registry.nlark.com/ansi-regex/3.0.0 + dev: true + + registry.npmmirror.com/strip-ansi/5.2.0: + resolution: {integrity: sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-5.2.0.tgz} + name: strip-ansi + version: 5.2.0 + engines: {node: '>=6'} + dependencies: + ansi-regex: registry.nlark.com/ansi-regex/4.1.0 + dev: true + + registry.npmmirror.com/strip-ansi/6.0.1: + resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-6.0.1.tgz} + name: strip-ansi + version: 6.0.1 + engines: {node: '>=8'} + dependencies: + ansi-regex: registry.nlark.com/ansi-regex/5.0.1 + dev: true + + registry.npmmirror.com/strip-eof/1.0.0: + resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-eof/download/strip-eof-1.0.0.tgz} + name: strip-eof + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/svg-baker-runtime/1.4.7: + resolution: {integrity: sha1-9HIGN/W2IC7vY3jYHx/q0IFfik4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/svg-baker-runtime/download/svg-baker-runtime-1.4.7.tgz} + name: svg-baker-runtime + version: 1.4.7 + dependencies: + deepmerge: registry.nlark.com/deepmerge/1.3.2 + mitt: registry.npmmirror.com/mitt/1.1.2 + svg-baker: registry.nlark.com/svg-baker/1.7.0 + dev: true + + registry.npmmirror.com/svg-sprite-loader/4.1.3: + resolution: {integrity: sha1-0lz6daXE5Jn3tSgigdtus72hP+A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/svg-sprite-loader/download/svg-sprite-loader-4.1.3.tgz} + name: svg-sprite-loader + version: 4.1.3 + engines: {node: '>=6'} + dependencies: + bluebird: registry.nlark.com/bluebird/3.7.2 + deepmerge: registry.nlark.com/deepmerge/1.3.2 + domready: registry.npmmirror.com/domready/1.0.8 + escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 + html-webpack-plugin: registry.npmmirror.com/html-webpack-plugin/3.2.0 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + svg-baker: registry.nlark.com/svg-baker/1.7.0 + svg-baker-runtime: registry.npmmirror.com/svg-baker-runtime/1.4.7 + url-slug: registry.npmmirror.com/url-slug/2.0.0 + transitivePeerDependencies: + - webpack + dev: true + + registry.npmmirror.com/svgo/1.2.2: + resolution: {integrity: sha1-AlPTTszyrtStTyg+Ee51GY+dcxY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/svgo/download/svgo-1.2.2.tgz} + name: svgo + version: 1.2.2 + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true + dependencies: + chalk: registry.nlark.com/chalk/2.4.2 + coa: registry.npmmirror.com/coa/2.0.2 + css-select: registry.nlark.com/css-select/2.1.0 + css-select-base-adapter: registry.nlark.com/css-select-base-adapter/0.1.1 + css-tree: registry.nlark.com/css-tree/1.0.0-alpha.28 + css-url-regex: registry.npmmirror.com/css-url-regex/1.1.0 + csso: registry.nlark.com/csso/3.5.1 + js-yaml: registry.nlark.com/js-yaml/3.14.1 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + object.values: registry.npmmirror.com/object.values/1.1.5 + sax: registry.nlark.com/sax/1.2.4 + stable: registry.npmmirror.com/stable/0.1.8 + unquote: registry.nlark.com/unquote/1.1.1 + util.promisify: registry.nlark.com/util.promisify/1.0.1 + dev: true + + registry.npmmirror.com/table/5.4.6: + resolution: {integrity: sha1-EpLRlQDOP4YFOwXw6Ofko7shB54=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/table/download/table-5.4.6.tgz} + name: table + version: 5.4.6 + engines: {node: '>=6.0.0'} + dependencies: + ajv: registry.npmmirror.com/ajv/6.12.6 + lodash: registry.nlark.com/lodash/4.17.21 + slice-ansi: registry.nlark.com/slice-ansi/2.1.0 + string-width: registry.npmmirror.com/string-width/3.1.0 + dev: true + + registry.npmmirror.com/terser-webpack-plugin/1.4.5_webpack@4.46.0: + resolution: {integrity: sha1-oheu+uozDnNP+sthIOwfoxLWBAs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser-webpack-plugin/download/terser-webpack-plugin-1.4.5.tgz} + id: registry.npmmirror.com/terser-webpack-plugin/1.4.5 + name: terser-webpack-plugin + version: 1.4.5 + engines: {node: '>= 6.9.0'} + peerDependencies: + webpack: ^4.0.0 + dependencies: + cacache: registry.nlark.com/cacache/12.0.4 + find-cache-dir: registry.nlark.com/find-cache-dir/2.1.0 + is-wsl: registry.nlark.com/is-wsl/1.1.0 + schema-utils: registry.nlark.com/schema-utils/1.0.0 + serialize-javascript: registry.nlark.com/serialize-javascript/4.0.0 + source-map: registry.nlark.com/source-map/0.6.1 + terser: registry.npmmirror.com/terser/4.8.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-sources: registry.nlark.com/webpack-sources/1.4.3 + worker-farm: registry.nlark.com/worker-farm/1.7.0 + dev: true + + registry.npmmirror.com/terser-webpack-plugin/2.3.8_webpack@4.46.0: + resolution: {integrity: sha1-iUdkoZsHQ/L3BOfCqEjFKDppZyQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser-webpack-plugin/download/terser-webpack-plugin-2.3.8.tgz} + id: registry.npmmirror.com/terser-webpack-plugin/2.3.8 + name: terser-webpack-plugin + version: 2.3.8 + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + cacache: registry.nlark.com/cacache/13.0.1 + find-cache-dir: registry.nlark.com/find-cache-dir/3.3.2 + jest-worker: registry.npmmirror.com/jest-worker/25.5.0 + p-limit: registry.nlark.com/p-limit/2.3.0 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + serialize-javascript: registry.nlark.com/serialize-javascript/4.0.0 + source-map: registry.nlark.com/source-map/0.6.1 + terser: registry.npmmirror.com/terser/4.8.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-sources: registry.nlark.com/webpack-sources/1.4.3 + dev: true + + registry.npmmirror.com/terser/4.8.0: + resolution: {integrity: sha1-YwVjQ9fHC7KfOvZlhlpG/gOg3xc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser/download/terser-4.8.0.tgz} + name: terser + version: 4.8.0 + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + commander: registry.npmmirror.com/commander/2.20.3 + source-map: registry.nlark.com/source-map/0.6.1 + source-map-support: registry.nlark.com/source-map-support/0.5.20 + dev: true + + registry.npmmirror.com/thenify-all/1.6.0: + resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/thenify-all/download/thenify-all-1.6.0.tgz} + name: thenify-all + version: 1.6.0 + engines: {node: '>=0.8'} + dependencies: + thenify: registry.npmmirror.com/thenify/3.3.1 + dev: true + + registry.npmmirror.com/thenify/3.3.1: + resolution: {integrity: sha1-iTLmhqQGYDigFt2eLKRq3Zg4qV8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/thenify/download/thenify-3.3.1.tgz} + name: thenify + version: 3.3.1 + dependencies: + any-promise: registry.nlark.com/any-promise/1.3.0 + dev: true + + registry.npmmirror.com/throttle-debounce/1.1.0: + resolution: {integrity: sha1-UYU9o3vmihVctugns1FKPEIuic0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/throttle-debounce/download/throttle-debounce-1.1.0.tgz} + name: throttle-debounce + version: 1.1.0 + engines: {node: '>=4'} + dev: false + + registry.npmmirror.com/toidentifier/1.0.0: + resolution: {integrity: sha1-fhvjRw8ed5SLxD2Uo8j013UrpVM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/toidentifier/download/toidentifier-1.0.0.tgz} + name: toidentifier + version: 1.0.0 + engines: {node: '>=0.6'} + dev: true + + registry.npmmirror.com/tr46/1.0.1: + resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tr46/download/tr46-1.0.1.tgz} + name: tr46 + version: 1.0.1 + dependencies: + punycode: registry.nlark.com/punycode/2.1.1 + dev: true + + registry.npmmirror.com/traverse/0.6.6: + resolution: {integrity: sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/traverse/download/traverse-0.6.6.tgz} + name: traverse + version: 0.6.6 + dev: true + + registry.npmmirror.com/trim-right/1.0.1: + resolution: {integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/trim-right/download/trim-right-1.0.1.tgz} + name: trim-right + version: 1.0.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/ts-jest/24.3.0_jest@24.9.0: + resolution: {integrity: sha1-uXgU4+qzWeqEChrBEt6uaKpECGk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-jest/download/ts-jest-24.3.0.tgz} + id: registry.npmmirror.com/ts-jest/24.3.0 + name: ts-jest + version: 24.3.0 + engines: {node: '>= 6'} + hasBin: true + peerDependencies: + jest: '>=24 <25' + dependencies: + bs-logger: registry.npmmirror.com/bs-logger/0.2.6 + buffer-from: registry.nlark.com/buffer-from/1.1.2 + fast-json-stable-stringify: registry.nlark.com/fast-json-stable-stringify/2.1.0 + jest: registry.npmmirror.com/jest/24.9.0 + json5: registry.nlark.com/json5/2.2.0 + lodash.memoize: registry.nlark.com/lodash.memoize/4.1.2 + make-error: registry.npmmirror.com/make-error/1.3.6 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + resolve: registry.nlark.com/resolve/1.20.0 + semver: registry.nlark.com/semver/5.7.1 + yargs-parser: registry.nlark.com/yargs-parser/10.1.0 + dev: true + + registry.npmmirror.com/ts-pnp/1.2.0: + resolution: {integrity: sha1-pQCtCEsHmPHDBxrzkeZZEshrypI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-pnp/download/ts-pnp-1.2.0.tgz} + name: ts-pnp + version: 1.2.0 + engines: {node: '>=6'} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dev: true + + registry.npmmirror.com/tsconfig/7.0.0: + resolution: {integrity: sha1-hFOIdaTcIW5cSlQys6Tew9VOkbc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsconfig/download/tsconfig-7.0.0.tgz} + name: tsconfig + version: 7.0.0 + dependencies: + '@types/strip-bom': registry.npmmirror.com/@types/strip-bom/3.0.0 + '@types/strip-json-comments': registry.npmmirror.com/@types/strip-json-comments/0.0.30 + strip-bom: registry.nlark.com/strip-bom/3.0.0 + strip-json-comments: registry.nlark.com/strip-json-comments/2.0.1 + dev: true + + registry.npmmirror.com/tty-browserify/0.0.0: + resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tty-browserify/download/tty-browserify-0.0.0.tgz} + name: tty-browserify + version: 0.0.0 + dev: true + + registry.npmmirror.com/type-fest/0.21.3: + resolution: {integrity: sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.21.3.tgz} + name: type-fest + version: 0.21.3 + engines: {node: '>=10'} + dev: true + + registry.npmmirror.com/type-fest/0.6.0: + resolution: {integrity: sha1-jSojcNPfiG61yQraHFv2GIrPg4s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.6.0.tgz} + name: type-fest + version: 0.6.0 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/type-fest/0.8.1: + resolution: {integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.8.1.tgz} + name: type-fest + version: 0.8.1 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/uglify-js/3.4.10: + resolution: {integrity: sha1-mtlWPY6zrN+404WX0q8dgV9qdV8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uglify-js/download/uglify-js-3.4.10.tgz} + name: uglify-js + version: 3.4.10 + engines: {node: '>=0.8.0'} + hasBin: true + dependencies: + commander: registry.npmmirror.com/commander/2.19.0 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + + registry.npmmirror.com/unidecode/0.1.8: + resolution: {integrity: sha1-77swFTi8RSRqmsjFWdcvAVMFBT4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unidecode/download/unidecode-0.1.8.tgz} + name: unidecode + version: 0.1.8 + engines: {node: '>= 0.4.12'} + dev: true + + registry.npmmirror.com/urix/0.1.0: + resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/urix/download/urix-0.1.0.tgz} + name: urix + version: 0.1.0 + deprecated: Please see https://github.com/lydell/urix#deprecated + dev: true + + registry.npmmirror.com/url-loader/2.3.0_file-loader@4.3.0+webpack@4.46.0: + resolution: {integrity: sha1-4OLvZY8APvuMpBsPP/v3a6uIZYs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/url-loader/download/url-loader-2.3.0.tgz} + id: registry.npmmirror.com/url-loader/2.3.0 + name: url-loader + version: 2.3.0 + engines: {node: '>= 8.9.0'} + peerDependencies: + file-loader: '*' + webpack: ^4.0.0 + peerDependenciesMeta: + file-loader: + optional: true + dependencies: + file-loader: registry.nlark.com/file-loader/4.3.0_webpack@4.46.0 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + mime: registry.npmmirror.com/mime/2.6.0 + schema-utils: registry.nlark.com/schema-utils/2.7.1 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.npmmirror.com/url-slug/2.0.0: + resolution: {integrity: sha1-p4nVrtSZXA2VrzM3etHVxo1NcCc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/url-slug/download/url-slug-2.0.0.tgz} + name: url-slug + version: 2.0.0 + dependencies: + unidecode: registry.npmmirror.com/unidecode/0.1.8 + dev: true + + registry.npmmirror.com/use/3.1.1: + resolution: {integrity: sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/use/download/use-3.1.1.tgz} + name: use + version: 3.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/uuid/3.4.0: + resolution: {integrity: sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uuid/download/uuid-3.4.0.tgz?cache=0&sync_timestamp=1636422997202&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fuuid%2Fdownload%2Fuuid-3.4.0.tgz} + name: uuid + version: 3.4.0 + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + dev: true + + registry.npmmirror.com/verror/1.10.0: + resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/verror/download/verror-1.10.0.tgz} + name: verror + version: 1.10.0 + engines: {'0': node >=0.6.0} + dependencies: + assert-plus: registry.nlark.com/assert-plus/1.0.0 + core-util-is: registry.nlark.com/core-util-is/1.0.2 + extsprintf: registry.npmmirror.com/extsprintf/1.3.0 + dev: true + + registry.npmmirror.com/viewerjs/1.10.2: + resolution: {integrity: sha1-3hb6EGaOTaYyWWmDajJkoEbj75o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/viewerjs/download/viewerjs-1.10.2.tgz} + name: viewerjs + version: 1.10.2 + dev: false + + registry.npmmirror.com/vue-amap/0.5.10: + resolution: {integrity: sha1-RkUWIDrwwIXUBL2Kyr8kAeSjb/Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-amap/download/vue-amap-0.5.10.tgz} + name: vue-amap + version: 0.5.10 + engines: {core-js: ^2.5.0, node: '>= 4.0.0', npm: '>= 3.0.0'} + dependencies: + uppercamelcase: registry.nlark.com/uppercamelcase/1.1.0 + dev: false + + registry.npmmirror.com/vue-eslint-parser/7.11.0_eslint@6.7.2: + resolution: {integrity: sha1-IUtd6pYQB/z/su5luJEjB2KNDa8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-eslint-parser/download/vue-eslint-parser-7.11.0.tgz} + id: registry.npmmirror.com/vue-eslint-parser/7.11.0 + name: vue-eslint-parser + version: 7.11.0 + engines: {node: '>=8.10'} + peerDependencies: + eslint: '>=5.0.0' + dependencies: + debug: registry.npmmirror.com/debug/4.3.2 + eslint: registry.npmmirror.com/eslint/6.7.2 + eslint-scope: registry.nlark.com/eslint-scope/5.1.1 + eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0 + espree: registry.nlark.com/espree/6.2.1 + esquery: registry.nlark.com/esquery/1.4.0 + lodash: registry.nlark.com/lodash/4.17.21 + semver: registry.nlark.com/semver/6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + registry.npmmirror.com/vue-jest/3.0.7_9235beb11cb2cd2c17b886f42402aca4: + resolution: {integrity: sha1-ptKXWKXLTXUPXRJCISvjm+QpajM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-jest/download/vue-jest-3.0.7.tgz} + id: registry.npmmirror.com/vue-jest/3.0.7 + name: vue-jest + version: 3.0.7 + peerDependencies: + babel-core: ^6.25.0 || ^7.0.0-0 + vue: ^2.x + vue-template-compiler: ^2.x + dependencies: + babel-core: registry.npmmirror.com/babel-core/7.0.0-bridge.0_@babel+core@7.16.0 + babel-plugin-transform-es2015-modules-commonjs: registry.npmmirror.com/babel-plugin-transform-es2015-modules-commonjs/6.26.2 + chalk: registry.nlark.com/chalk/2.4.2 + deasync: registry.npmmirror.com/deasync/0.1.24 + extract-from-css: registry.npmmirror.com/extract-from-css/0.4.4 + find-babel-config: registry.npmmirror.com/find-babel-config/1.2.0 + js-beautify: registry.npmmirror.com/js-beautify/1.14.0 + node-cache: registry.npmmirror.com/node-cache/4.2.1 + object-assign: registry.nlark.com/object-assign/4.1.1 + source-map: registry.nlark.com/source-map/0.5.7 + tsconfig: registry.npmmirror.com/tsconfig/7.0.0 + vue: registry.npmmirror.com/vue/2.6.10 + vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.6.10 + vue-template-es2015-compiler: registry.nlark.com/vue-template-es2015-compiler/1.9.1 + dev: true + + registry.npmmirror.com/vue-loader/15.9.8_b8d247df3b20733387738da3a99b0112: + resolution: {integrity: sha1-Sw9gKvr2aplr4eU0+5YJ3EqxDmE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-loader/download/vue-loader-15.9.8.tgz} + id: registry.npmmirror.com/vue-loader/15.9.8 + name: vue-loader + version: 15.9.8 + peerDependencies: + cache-loader: '*' + css-loader: '*' + vue-template-compiler: '*' + webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 + peerDependenciesMeta: + cache-loader: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@vue/component-compiler-utils': registry.npmmirror.com/@vue/component-compiler-utils/3.3.0 + cache-loader: registry.nlark.com/cache-loader/4.1.0_webpack@4.46.0 + css-loader: registry.npmmirror.com/css-loader/3.6.0_webpack@4.46.0 + hash-sum: registry.nlark.com/hash-sum/1.0.2 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + vue-hot-reload-api: registry.nlark.com/vue-hot-reload-api/2.3.4 + vue-style-loader: registry.nlark.com/vue-style-loader/4.1.3 + vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.6.10 + webpack: registry.npmmirror.com/webpack/4.46.0 + dev: true + + registry.npmmirror.com/vue-router/3.0.6: + resolution: {integrity: sha1-Lk8PnLsLltAgWrJpDP5YiTUTasM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/download/vue-router-3.0.6.tgz} + name: vue-router + version: 3.0.6 + dev: false + + registry.npmmirror.com/vue-template-compiler/2.6.10: + resolution: {integrity: sha1-MjtPNJXwT6o1AzN6gvXWUHeZycw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-template-compiler/download/vue-template-compiler-2.6.10.tgz} + name: vue-template-compiler + version: 2.6.10 + dependencies: + de-indent: registry.nlark.com/de-indent/1.0.2 + he: registry.nlark.com/he/1.2.0 + dev: true + + registry.npmmirror.com/vue/2.6.10: + resolution: {integrity: sha1-pysaQqTYKnIepDjRtr9V5mGVxjc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/download/vue-2.6.10.tgz} + name: vue + version: 2.6.10 + dev: false + + registry.npmmirror.com/vuex-persistedstate/4.1.0_vuex@3.1.0: + resolution: {integrity: sha1-EnFl+F9bRTT7MXCl06i+mBG9KlM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuex-persistedstate/download/vuex-persistedstate-4.1.0.tgz} + id: registry.npmmirror.com/vuex-persistedstate/4.1.0 + name: vuex-persistedstate + version: 4.1.0 + peerDependencies: + vuex: ^3.0 || ^4.0.0-rc + dependencies: + deepmerge: registry.nlark.com/deepmerge/4.2.2 + shvl: registry.npmmirror.com/shvl/2.0.3 + vuex: registry.nlark.com/vuex/3.1.0 + dev: false + + registry.npmmirror.com/walker/1.0.8: + resolution: {integrity: sha1-vUmNtHev5XPcBBhfAR06uKjXZT8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/walker/download/walker-1.0.8.tgz} + name: walker + version: 1.0.8 + dependencies: + makeerror: registry.npmmirror.com/makeerror/1.0.12 + dev: true + + registry.npmmirror.com/webpack-bundle-analyzer/3.9.0: + resolution: {integrity: sha1-9vlNsQj7V05BWtMT3kGicH0z7zw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-bundle-analyzer/download/webpack-bundle-analyzer-3.9.0.tgz} + name: webpack-bundle-analyzer + version: 3.9.0 + engines: {node: '>= 6.14.4'} + hasBin: true + dependencies: + acorn: registry.nlark.com/acorn/7.4.1 + acorn-walk: registry.nlark.com/acorn-walk/7.2.0 + bfj: registry.nlark.com/bfj/6.1.2 + chalk: registry.nlark.com/chalk/2.4.2 + commander: registry.npmmirror.com/commander/2.20.3 + ejs: registry.npmmirror.com/ejs/2.7.4 + express: registry.nlark.com/express/4.17.1 + filesize: registry.npmmirror.com/filesize/3.6.1 + gzip-size: registry.nlark.com/gzip-size/5.1.1 + lodash: registry.nlark.com/lodash/4.17.21 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + opener: registry.nlark.com/opener/1.5.2 + ws: registry.npmmirror.com/ws/6.2.2 + dev: true + + registry.npmmirror.com/webpack-dev-middleware/3.7.3_webpack@4.46.0: + resolution: {integrity: sha1-Bjk3KxQyYuK4SrldO5GnWXBhwsU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz} + id: registry.npmmirror.com/webpack-dev-middleware/3.7.3 + name: webpack-dev-middleware + version: 3.7.3 + engines: {node: '>= 6'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + memory-fs: registry.nlark.com/memory-fs/0.4.1 + mime: registry.npmmirror.com/mime/2.6.0 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + range-parser: registry.nlark.com/range-parser/1.2.1 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-log: registry.nlark.com/webpack-log/2.0.0 + dev: true + + registry.npmmirror.com/webpack-dev-server/3.11.3_webpack@4.46.0: + resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-dev-server/download/webpack-dev-server-3.11.3.tgz} + id: registry.npmmirror.com/webpack-dev-server/3.11.3 + name: webpack-dev-server + version: 3.11.3 + engines: {node: '>= 6.11.5'} + hasBin: true + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + ansi-html-community: registry.npmmirror.com/ansi-html-community/0.0.8 + bonjour: registry.nlark.com/bonjour/3.5.0 + chokidar: registry.npmmirror.com/chokidar/2.1.8 + compression: registry.nlark.com/compression/1.7.4 + connect-history-api-fallback: registry.nlark.com/connect-history-api-fallback/1.6.0 + debug: registry.npmmirror.com/debug/4.3.2_supports-color@6.1.0 + del: registry.nlark.com/del/4.1.1 + express: registry.nlark.com/express/4.17.1 + html-entities: registry.nlark.com/html-entities/1.4.0 + http-proxy-middleware: registry.nlark.com/http-proxy-middleware/0.19.1_debug@4.3.2 + import-local: registry.npmmirror.com/import-local/2.0.0 + internal-ip: registry.npmmirror.com/internal-ip/4.3.0 + ip: registry.nlark.com/ip/1.1.5 + is-absolute-url: registry.nlark.com/is-absolute-url/3.0.3 + killable: registry.nlark.com/killable/1.0.1 + loglevel: registry.nlark.com/loglevel/1.7.1 + opn: registry.npmmirror.com/opn/5.5.0 + p-retry: registry.npmmirror.com/p-retry/3.0.1 + portfinder: registry.nlark.com/portfinder/1.0.28 + schema-utils: registry.nlark.com/schema-utils/1.0.0 + selfsigned: registry.nlark.com/selfsigned/1.10.11 + semver: registry.nlark.com/semver/6.3.0 + serve-index: registry.nlark.com/serve-index/1.9.1 + sockjs: registry.nlark.com/sockjs/0.3.21 + sockjs-client: registry.nlark.com/sockjs-client/1.5.2 + spdy: registry.nlark.com/spdy/4.0.2_supports-color@6.1.0 + strip-ansi: registry.npmmirror.com/strip-ansi/3.0.1 + supports-color: registry.nlark.com/supports-color/6.1.0 + url: registry.nlark.com/url/0.11.0 + webpack: registry.npmmirror.com/webpack/4.46.0 + webpack-dev-middleware: registry.npmmirror.com/webpack-dev-middleware/3.7.3_webpack@4.46.0 + webpack-log: registry.nlark.com/webpack-log/2.0.0 + ws: registry.npmmirror.com/ws/6.2.2 + yargs: registry.npmmirror.com/yargs/13.3.2 + dev: true + + registry.npmmirror.com/webpack/4.46.0: + resolution: {integrity: sha1-v5tEBOogoHNgXgoBHRiNd8tq1UI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack/download/webpack-4.46.0.tgz} + name: webpack + version: 4.46.0 + engines: {node: '>=6.11.5'} + hasBin: true + peerDependencies: + webpack-cli: '*' + webpack-command: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + webpack-command: + optional: true + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast/1.9.0 + '@webassemblyjs/helper-module-context': registry.nlark.com/@webassemblyjs/helper-module-context/1.9.0 + '@webassemblyjs/wasm-edit': registry.nlark.com/@webassemblyjs/wasm-edit/1.9.0 + '@webassemblyjs/wasm-parser': registry.nlark.com/@webassemblyjs/wasm-parser/1.9.0 + acorn: registry.nlark.com/acorn/6.4.2 + ajv: registry.npmmirror.com/ajv/6.12.6 + ajv-keywords: registry.nlark.com/ajv-keywords/3.5.2_ajv@6.12.6 + chrome-trace-event: registry.nlark.com/chrome-trace-event/1.0.3 + enhanced-resolve: registry.nlark.com/enhanced-resolve/4.5.0 + eslint-scope: registry.nlark.com/eslint-scope/4.0.3 + json-parse-better-errors: registry.nlark.com/json-parse-better-errors/1.0.2 + loader-runner: registry.nlark.com/loader-runner/2.4.0 + loader-utils: registry.npmmirror.com/loader-utils/1.4.0 + memory-fs: registry.nlark.com/memory-fs/0.4.1 + micromatch: registry.nlark.com/micromatch/3.1.10 + mkdirp: registry.npmmirror.com/mkdirp/0.5.5 + neo-async: registry.nlark.com/neo-async/2.6.2 + node-libs-browser: registry.nlark.com/node-libs-browser/2.2.1 + schema-utils: registry.nlark.com/schema-utils/1.0.0 + tapable: registry.nlark.com/tapable/1.1.3 + terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin/1.4.5_webpack@4.46.0 + watchpack: registry.nlark.com/watchpack/1.7.5 + webpack-sources: registry.nlark.com/webpack-sources/1.4.3 + dev: true + + registry.npmmirror.com/whatwg-url/6.5.0: + resolution: {integrity: sha1-8t8Cv/F2/WUHDfdK1cy7WhmZZag=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-url/download/whatwg-url-6.5.0.tgz} + name: whatwg-url + version: 6.5.0 + dependencies: + lodash.sortby: registry.nlark.com/lodash.sortby/4.7.0 + tr46: registry.npmmirror.com/tr46/1.0.1 + webidl-conversions: registry.nlark.com/webidl-conversions/4.0.2 + dev: true + + registry.npmmirror.com/whatwg-url/7.1.0: + resolution: {integrity: sha1-wsSS8eymEpiO/T0iZr4bn8YXDQY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-url/download/whatwg-url-7.1.0.tgz} + name: whatwg-url + version: 7.1.0 + dependencies: + lodash.sortby: registry.nlark.com/lodash.sortby/4.7.0 + tr46: registry.npmmirror.com/tr46/1.0.1 + webidl-conversions: registry.nlark.com/webidl-conversions/4.0.2 + dev: true + + registry.npmmirror.com/ws/5.2.3: + resolution: {integrity: sha1-BVQQU0FJIbwpxjvuFLiw3VCwez0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ws/download/ws-5.2.3.tgz} + name: ws + version: 5.2.3 + dependencies: + async-limiter: registry.nlark.com/async-limiter/1.0.1 + dev: true + + registry.npmmirror.com/ws/6.2.2: + resolution: {integrity: sha1-3Vzb1XqZeZFgl2UtePHMX66gwy4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ws/download/ws-6.2.2.tgz} + name: ws + version: 6.2.2 + dependencies: + async-limiter: registry.nlark.com/async-limiter/1.0.1 + dev: true + + registry.npmmirror.com/ws/7.5.5: + resolution: {integrity: sha1-i0vEr1GM+r0Ec65PmRRCh7M+uIE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ws/download/ws-7.5.5.tgz} + name: ws + version: 7.5.5 + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + registry.npmmirror.com/yargs/13.3.2: + resolution: {integrity: sha1-rX/+/sGqWVZayRX4Lcyzipwxot0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/download/yargs-13.3.2.tgz} + name: yargs + version: 13.3.2 + dependencies: + cliui: registry.nlark.com/cliui/5.0.0 + find-up: registry.npmmirror.com/find-up/3.0.0 + get-caller-file: registry.nlark.com/get-caller-file/2.0.5 + require-directory: registry.nlark.com/require-directory/2.1.1 + require-main-filename: registry.nlark.com/require-main-filename/2.0.0 + set-blocking: registry.nlark.com/set-blocking/2.0.0 + string-width: registry.npmmirror.com/string-width/3.1.0 + which-module: registry.nlark.com/which-module/2.0.0 + y18n: registry.nlark.com/y18n/4.0.3 + yargs-parser: registry.nlark.com/yargs-parser/13.1.2 + dev: true + + registry.npmmirror.com/yargs/16.2.0: + resolution: {integrity: sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/download/yargs-16.2.0.tgz} + name: yargs + version: 16.2.0 + engines: {node: '>=10'} + dependencies: + cliui: registry.nlark.com/cliui/7.0.4 + escalade: registry.nlark.com/escalade/3.1.1 + get-caller-file: registry.nlark.com/get-caller-file/2.0.5 + require-directory: registry.nlark.com/require-directory/2.1.1 + string-width: registry.npmmirror.com/string-width/4.2.3 + y18n: registry.nlark.com/y18n/5.0.8 + yargs-parser: registry.nlark.com/yargs-parser/20.2.9 + dev: true + + registry.npmmirror.com/yorkie/2.0.0: + resolution: {integrity: sha1-kkEZEtQ1IU4SxRwq4Qk+VLa7g9k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yorkie/download/yorkie-2.0.0.tgz} + name: yorkie + version: 2.0.0 + engines: {node: '>=4'} + requiresBuild: true + dependencies: + execa: registry.nlark.com/execa/0.8.0 + is-ci: registry.npmmirror.com/is-ci/1.2.1 + normalize-path: registry.nlark.com/normalize-path/1.0.0 + strip-indent: registry.nlark.com/strip-indent/2.0.0 + dev: true diff --git a/supervise-crm-ui/postcss.config.js b/supervise-crm-ui/postcss.config.js new file mode 100644 index 00000000..10473efc --- /dev/null +++ b/supervise-crm-ui/postcss.config.js @@ -0,0 +1,8 @@ +// https://github.com/michael-ciniawsky/postcss-load-config + +module.exports = { + 'plugins': { + // to edit target browsers: use "browserslist" field in package.json + 'autoprefixer': {} + } +} diff --git a/supervise-crm-ui/public/favicon.ico b/supervise-crm-ui/public/favicon.ico new file mode 100644 index 00000000..34b63ac6 Binary files /dev/null and b/supervise-crm-ui/public/favicon.ico differ diff --git a/supervise-crm-ui/public/image/liuchengtu.jpg b/supervise-crm-ui/public/image/liuchengtu.jpg new file mode 100644 index 00000000..8d891be4 Binary files /dev/null and b/supervise-crm-ui/public/image/liuchengtu.jpg differ diff --git a/supervise-crm-ui/public/index.html b/supervise-crm-ui/public/index.html new file mode 100644 index 00000000..fa2be916 --- /dev/null +++ b/supervise-crm-ui/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= webpackConfig.name %> + + + +
+ + + diff --git a/supervise-crm-ui/src/App.vue b/supervise-crm-ui/src/App.vue new file mode 100644 index 00000000..c65a59ab --- /dev/null +++ b/supervise-crm-ui/src/App.vue @@ -0,0 +1,14 @@ + + + diff --git a/supervise-crm-ui/src/api/Common/Upload.js b/supervise-crm-ui/src/api/Common/Upload.js new file mode 100644 index 00000000..c3be1711 --- /dev/null +++ b/supervise-crm-ui/src/api/Common/Upload.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' +// 上传图片 +export function imageUpload(data){ + return request({ + url: '/jlcyry/file/upload', + method: 'post', + data, + headers:{'Content-Type':'multipart/form-data'} + }) +} +export const uploadFile = '/api/base/v1/basemanufactorsubscription/pictureUpload' + +export const uploadimg_tuiku = '/api/base/v1/basemanufacturerretwareveh/pictureUpload' diff --git a/supervise-crm-ui/src/api/Common/areaPicker.js b/supervise-crm-ui/src/api/Common/areaPicker.js new file mode 100644 index 00000000..f43d0a3a --- /dev/null +++ b/supervise-crm-ui/src/api/Common/areaPicker.js @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +//区域获取省 +export function getProvince(data) { + return request({ + url: '/system/region/getProvince', + method: 'get' + }) +} +//根据省sid获取该省的所有市 +export function getCity(data) { + return request({ + url: '/system/region/getCity', + method: 'get', + params: data + }) +} +//根据市sid获取该市的所有县区 +export function getCounty(data) { + return request({ + url: '/system/region/getCounty', + method: 'get', + params: data + }) +} diff --git a/supervise-crm-ui/src/api/Common/permission.js b/supervise-crm-ui/src/api/Common/permission.js new file mode 100644 index 00000000..5c3b5622 --- /dev/null +++ b/supervise-crm-ui/src/api/Common/permission.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' +// 请求按钮权限 +export default { + + // 查询分页列表,输入当前路径和userSid,返回 + buttonPermission: function(params) { + return request({ + url: '/demopackage/v1/demo/buttonPermission', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/User/login.js b/supervise-crm-ui/src/api/User/login.js new file mode 100644 index 00000000..399fda6f --- /dev/null +++ b/supervise-crm-ui/src/api/User/login.js @@ -0,0 +1,35 @@ +import request from '@/utils/request' +import qs from 'qs' + +class User { + login(data) { // 登录 + return request({ + url: '/system/user/login', + method: 'post', + data + }) + } + logout(data) { // 退出 + return request({ + url: '/portal/v1/sysuser/signOut', + method: 'post', + data: qs.stringify(data) + }) + } + updatePassword(data) { // 退出修改密码 + return request({ + url: '/portal/v1/sysuser/updatePassword', + method: 'post', + data: qs.stringify(data) + }) + } + reGetPwd(data) { + return request({ + url: `/system/user/reGetPwd/${data.userName}/${data.userPhone}`, + method: 'post', + data: qs.stringify(data) + }) + } +} + +export default new User() diff --git a/supervise-crm-ui/src/api/flow/cunfangdidianbiangeng.js b/supervise-crm-ui/src/api/flow/cunfangdidianbiangeng.js new file mode 100644 index 00000000..3be6324f --- /dev/null +++ b/supervise-crm-ui/src/api/flow/cunfangdidianbiangeng.js @@ -0,0 +1,66 @@ +import request from '@/utils/request' + +export default { + // 流程审批(同意) + agreeTask: function(params) { + return request({ + url: 'scm/v1/scmvehiclegression/complete', + method: 'post', + data: params + }) + }, + // 流程审批(驳回) + rejectTask: function(params) { + return request({ + url: 'scm/v1/scmvehiclegression/reject', + method: 'post', + data: params + }) + }, + // 流程审批(终止) + breakTask: function(params) { + return request({ + url: 'scm/v1/scmvehiclegression/breakProcess', + method: 'post', + data: params + }) + }, + // 流程审批(撤回) + revokeTask: function(params) { + return request({ + url: 'scm/v1/scmvehiclegression/revokeProcess', + method: 'post', + data: params + }) + }, + // 审批流程(同意)获取下一环节 + getNextNodesForSubmit: function(data) { + return request({ + url: 'scm/v1/scmvehiclegression/getNextNodesForSubmit', + method: 'post', + data: data + }) + }, + // 审批流程(驳回、终止)获取下一环节 + getPreviousNodesForReject: function(data) { + return request({ + url: 'scm/v1/scmvehiclegression/getPreviousNodesForReject', + method: 'post', + data: data + }) + }, + // 读取xml文件 + readXml: function(deployId) { + return request({ + url: '/flowable/v1/flowable/task/readXml/' + deployId, + method: 'get' + }) + }, + // 读取image文件 + getFlowViewer: function(procInsId) { + return request({ + url: '/flowable/v1/flowable/task/flowViewer/' + procInsId, + method: 'get' + }) + } +} diff --git a/supervise-crm-ui/src/api/flow/flowable.js b/supervise-crm-ui/src/api/flow/flowable.js new file mode 100644 index 00000000..2978268c --- /dev/null +++ b/supervise-crm-ui/src/api/flow/flowable.js @@ -0,0 +1,33 @@ +import request from '@/utils/request' +// 外采申请表 +export default { + getNextNodes: function(taskid) { + return request({ + url: '/base/baseoutsourcingapplication/getNextTasks/' + taskid, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) + }, + getNextNodesForSubmit: function(data) { + return request({ + url: '/base/baseoutsourcingapplication/getNextNodesForSubmit', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + getPreviousNodesForReject(formobj) { + return request({ + url: '/base/baseoutsourcingapplication/getPreviousNodesForReject', + method: 'post', + data: formobj, + headers: { + 'Content-Type': 'application/json' + } + }) + } +} diff --git a/supervise-crm-ui/src/api/flow/tiaochekaipiaoshenqing.js b/supervise-crm-ui/src/api/flow/tiaochekaipiaoshenqing.js new file mode 100644 index 00000000..074d689c --- /dev/null +++ b/supervise-crm-ui/src/api/flow/tiaochekaipiaoshenqing.js @@ -0,0 +1,80 @@ +import request from '@/utils/request' + +export default { + // 流程审批(同意) + agreeTask: function(params) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/complete', + method: 'post', + data: params + }) + }, + agreeTaskCallInToCallOut: function(params) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/callInOrgToCallOutOrg', + method: 'post', + data: params + }) + }, + callOutSaleManageExa: function(params) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/callOutSaleManageExa', + method: 'post', + data: params + }) + }, + // 流程审批(驳回) + rejectTask: function(params) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/reject', + method: 'post', + data: params + }) + }, + // 流程审批(终止) + breakTask: function(params) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/breakProcess', + method: 'post', + data: params + }) + }, + // 流程审批(撤回) + revokeTask: function(params) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/revokeProcess', + method: 'post', + data: params + }) + }, + // 审批流程(同意)获取下一环节 + getNextNodesForSubmit: function(data) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/getNextNodesForSubmit', + method: 'get', + params: data + }) + }, + // 审批流程(驳回、终止)获取上一环节 + getPreviousNodesForReject: function(data) { + return request({ + url: '/base/v1/baseshuntinginvoicingapply/getPreviousNodesForReject', + method: 'get', + params: data + }) + }, + // 读取xml文件 + readXml: function(deployId) { + return request({ + url: '/flowable/v1/flowable/task/readXml/' + deployId, + method: 'get' + }) + }, + // 读取image文件 + getFlowViewer: function(procInsId) { + return request({ + url: '/flowable/v1/flowable/task/flowViewer/' + procInsId, + method: 'get' + }) + } +} diff --git a/supervise-crm-ui/src/api/flow/tiaozhangshenqing.js b/supervise-crm-ui/src/api/flow/tiaozhangshenqing.js new file mode 100644 index 00000000..1b4be362 --- /dev/null +++ b/supervise-crm-ui/src/api/flow/tiaozhangshenqing.js @@ -0,0 +1,80 @@ +import request from '@/utils/request' + +export default { + // 流程审批(同意) + agreeTask: function(params) { + return request({ + url: '/base/v1/baseaccadjapply/complete', + method: 'post', + data: params + }) + }, + agreeTaskCallInOrCallOut: function(params) { + return request({ + url: '/base/v1/baseaccadjapply/InitiatorToAnswer', + method: 'post', + data: params + }) + }, + agreeTaskOrgChange: function(params) { + return request({ + url: '/base/v1/baseaccadjapply/companyToFinancialCenter', + method: 'post', + data: params + }) + }, + // 流程审批(驳回) + rejectTask: function(params) { + return request({ + url: '/base/v1/baseaccadjapply/reject', + method: 'post', + data: params + }) + }, + // 流程审批(终止) + breakTask: function(params) { + return request({ + url: '/base/v1/baseaccadjapply/breakProcess', + method: 'post', + data: params + }) + }, + // 流程审批(撤回) + revokeTask: function(params) { + return request({ + url: '/base/v1/baseaccadjapply/revokeProcess', + method: 'post', + data: params + }) + }, + // 审批流程(同意)获取下一环节 + getNextNodesForSubmit: function(data) { + return request({ + url: '/base/v1/baseaccadjapply/getNextNodesForSubmit', + method: 'post', + data: data + }) + }, + // 审批流程(驳回、终止)获取上一环节 + getPreviousNodesForReject: function(data) { + return request({ + url: '/base/v1/baseaccadjapply/getPreviousNodesForReject', + method: 'get', + params: data + }) + }, + // 读取xml文件 + readXml: function(deployId) { + return request({ + url: '/flowable/v1/flowable/task/readXml/' + deployId, + method: 'get' + }) + }, + // 读取image文件 + getFlowViewer: function(procInsId) { + return request({ + url: '/flowable/v1/flowable/task/flowViewer/' + procInsId, + method: 'get' + }) + } +} diff --git a/supervise-crm-ui/src/api/flow/todo.js b/supervise-crm-ui/src/api/flow/todo.js new file mode 100644 index 00000000..8f193deb --- /dev/null +++ b/supervise-crm-ui/src/api/flow/todo.js @@ -0,0 +1,50 @@ +import request from '@/utils/request' + +// 代办任务同意办理 +export function businessAgree(params) { + return request({ + url: '/portal/v1/flow/complete', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 代办任务驳回任务 +export function rejectTask(params) { + return request({ + url: '/portal/v1/flow/reject/' + params.businessSid, + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 代办任务终止任务 +export function breakTask(params) { + return request({ + url: '/portal/v1/flow/breakProcess/' + params.businessSid, + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 代办任务撤回任务 +export function revokeTask(params) { + return request({ + url: '/portal/v1/flow/revokeProcess/' + params.userSid + '/' + params.businessSid, + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) +} + diff --git a/supervise-crm-ui/src/api/flow/vehicleReturn.js b/supervise-crm-ui/src/api/flow/vehicleReturn.js new file mode 100644 index 00000000..b234ccdd --- /dev/null +++ b/supervise-crm-ui/src/api/flow/vehicleReturn.js @@ -0,0 +1,70 @@ +import request from '@/utils/request' + + +///scm/v1/scmvehiclereturn/listPage' +export default { + getPreviousNodesForReject: function(formobj) { + return request({ + url: '/scm/v1/scmvehiclereturn/getPreviousNodesForReject', + method: 'post', + data: formobj, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + getNextNodesForSubmit: function(data) { + return request({ + url: '/scm/v1/scmvehiclereturn/getNextNodesForSubmit', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + // 同意任务 + agreeTask: function(params) { + return request({ + url: '/scm/v1/scmvehiclereturn/complete', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + // 驳回任务 + rejectTask: function(params) { + return request({ + url: '/scm/v1/scmvehiclereturn/reject', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + // 终止任务 + breakTask: function(params) { + return request({ + url: '/scm/v1/scmvehiclereturn/breakProcess', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + }, + // 撤回任务 + revokeTask: function(params) { + return request({ + url: '/scm/v1/scmvehiclereturn/revokeProcess', + method: 'post', + data: params, + headers: { + 'Content-Type': 'application/json' + } + }) + } +} diff --git a/supervise-crm-ui/src/api/kucun/hzsjxz.js b/supervise-crm-ui/src/api/kucun/hzsjxz.js new file mode 100644 index 00000000..e69de29b diff --git a/supervise-crm-ui/src/api/kucun/kucun.js b/supervise-crm-ui/src/api/kucun/kucun.js new file mode 100644 index 00000000..b9a2ef0b --- /dev/null +++ b/supervise-crm-ui/src/api/kucun/kucun.js @@ -0,0 +1,34 @@ +import request from '@/utils/request' + +// 条件查询 +export function kchz(data) { + return request({ + url: '/kucun/kchz', + method: 'get', + data: data + }) +} +// 条件查询 +export function kchzyc(data) { + return request({ + url: '/kucun/kchzyc', + method: 'get', + data: data + }) +} +// 重置缓存 +export function resetAllCache() { + return request({ + url: '/kucun/resetAllCache', + method: 'get' + }) +} +// 条件查询 +export function downloadhz(parm) { + return request({ + url: '/kucun/downloadhz', + method: 'get', + responseType: 'blob', + params: parm + }) +} diff --git a/supervise-crm-ui/src/api/kucun/ruku.js b/supervise-crm-ui/src/api/kucun/ruku.js new file mode 100644 index 00000000..3908b9a5 --- /dev/null +++ b/supervise-crm-ui/src/api/kucun/ruku.js @@ -0,0 +1,88 @@ +import request from '@/utils/request' + +// 重新汇总入库商品 +export function recount() { + return request({ + url: '/ruku/recount', + method: 'get' + }) +} +// 入库汇总信息 +export function countinfo() { + return request({ + url: '/ruku/countinfo', + method: 'get' + }) +} + +// 112仓入库信息分页查询 +export function in112PagerList(data) { + return request({ + url: '/ruku/in112PagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 所有入库信息分页查询 +export function inallPagerList(data) { + return request({ + url: '/ruku/inallPagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 入库单导入日志分页查询 +export function logPagerList(data) { + return request({ + url: '/ruku/logPagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 加盟店入库明细表按天查询 +export function jmdRkmxList(data) { + return request({ + url: '/ruku/jmdRkmxList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 下载 加盟店入库明细表 +export function jmdRkmxListDownload(data) { + return request({ + url: '/ruku/jmdRkmxListDownload', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 下采购订单、入库的数据 +export function ztsjZhengli() { + return request({ + url: '/v1/purchaserequisition/supplierAnalysis', + method: 'post' + }) +} + +export function buildExcelZaiTu() { + return request({ url: '/ruku/buildExcelZaiTu' }) +} diff --git a/supervise-crm-ui/src/api/kucun/sales.js b/supervise-crm-ui/src/api/kucun/sales.js new file mode 100644 index 00000000..4cca8bbb --- /dev/null +++ b/supervise-crm-ui/src/api/kucun/sales.js @@ -0,0 +1,20 @@ +import request from '@/utils/request' + +// 条件查询 +export function buildExcel(logId) { + return request({ + url: '/sales/buildExcel/' + logId + }) +} + +// 加盟店入库明细表按天查询 +export function logsPagerList(data) { + return request({ + url: '/sales/logsPagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} diff --git a/supervise-crm-ui/src/api/kucun/wholesale.js b/supervise-crm-ui/src/api/kucun/wholesale.js new file mode 100644 index 00000000..45645aff --- /dev/null +++ b/supervise-crm-ui/src/api/kucun/wholesale.js @@ -0,0 +1,20 @@ +import request from '@/utils/request' + +// 条件查询 +export function buildExcel(logId) { + return request({ + url: '/wholesale/buildExcel/' + logId + }) +} + +// 加盟店入库明细表按天查询 +export function logsPagerList(data) { + return request({ + url: '/wholesale/logsPagerList', + data, + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }) +} diff --git a/supervise-crm-ui/src/api/portal/Upload.js b/supervise-crm-ui/src/api/portal/Upload.js new file mode 100644 index 00000000..ea3c2ccf --- /dev/null +++ b/supervise-crm-ui/src/api/portal/Upload.js @@ -0,0 +1,27 @@ +import request from '@/utils/request' +import qs from 'qs' +// 统一请求路径前缀 +const base = process.env.VUE_APP_URL + +// 文件上传接口 +export const uploadFile = '/api/file/upload' + +// 上传图片 +// export function imageUpload(data) { +// return request({ +// url: '/portal/file/upload', +// method: 'post', +// data, +// headers: { 'Content-Type': 'multipart/form-data' } +// }) +// } + +// 移除图片 +export function deleteFilesOss(data) { + return request({ + url: '/base/v1/baseVehicleAppendixs/deleteFilesOss', + method: 'post', + data: qs.stringify(data), + // headers: { 'Content-Type': 'multipart/form-data' } + }) +} diff --git a/supervise-crm-ui/src/api/portal/areaPicker.js b/supervise-crm-ui/src/api/portal/areaPicker.js new file mode 100644 index 00000000..8a2eee36 --- /dev/null +++ b/supervise-crm-ui/src/api/portal/areaPicker.js @@ -0,0 +1,34 @@ +import request from '@/utils/request' + +// 获取省/portal/v1/regions/getProvince +export function getProvince(data) { + return request({ + url: '/portal/v1/regions/getProvince',data, + method: 'get', + params:data, + }) +} +// 根据省sid获取该省的所有市 +export function getCity(data) { + return request({ + url: '/portal/v1/regions/getCity', + params:data, + method: 'get', + }) +} +// 根据市sid获取该市的所有县区 +export function getCounty(data) { + return request({ + url: '/portal/v1/regions/getCounty', + method: 'get', + params:data, + }) +} +// // 区域列表(省市县均可用) +// export function selectsList(data) { +// return request({ +// url: '/portal/v1/regions/selectsList', data, +// method: 'post', +// headers: { 'Content-Type': 'application/json' } +// }) +// } diff --git a/supervise-crm-ui/src/api/supervise/brandinfo.js b/supervise-crm-ui/src/api/supervise/brandinfo.js new file mode 100644 index 00000000..bceb30ae --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/brandinfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 品牌信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/brandinfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/brandinfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/brandinfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/brandinfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/brandinfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/brandinfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/brandinfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/dictcommon.js b/supervise-crm-ui/src/api/supervise/dictcommon.js new file mode 100644 index 00000000..63940db8 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/dictcommon.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 数据字典——数据项 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/dictcommon/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/dictcommon/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/dictcommon/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/dictcommon/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/dictcommon/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/dictcommon/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/dictcommon/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/dicttype.js b/supervise-crm-ui/src/api/supervise/dicttype.js new file mode 100644 index 00000000..ef0180ca --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/dicttype.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 数据字典——数据类型 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/dicttype/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/dicttype/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/dicttype/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/dicttype/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/dicttype/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/dicttype/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/dicttype/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinstorage.js b/supervise-crm-ui/src/api/supervise/gdinstorage.js new file mode 100644 index 00000000..90f848b0 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinstorage.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库明细表(监管) +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinstorage/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinstorage/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinstorage/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinstorage/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinstorage/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstorage/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstorage/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinstoragecount.js b/supervise-crm-ui/src/api/supervise/gdinstoragecount.js new file mode 100644 index 00000000..b93d4f7d --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinstoragecount.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库明细按商品编号汇总 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecount/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecount/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecount/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinstoragecount/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecount/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecount/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecount/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinstoragecountlog.js b/supervise-crm-ui/src/api/supervise/gdinstoragecountlog.js new file mode 100644 index 00000000..6ba6bbbb --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinstoragecountlog.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库统计日志 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragecountlog/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinstoragegd.js b/supervise-crm-ui/src/api/supervise/gdinstoragegd.js new file mode 100644 index 00000000..acd3dda5 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinstoragegd.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库明细表(原始导入) +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinstoragegd/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinstoragegd/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinstoragegd/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinstoragegd/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinstoragegd/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragegd/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragegd/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinstoragelog.js b/supervise-crm-ui/src/api/supervise/gdinstoragelog.js new file mode 100644 index 00000000..3a61aa14 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinstoragelog.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库导入的记录 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelog/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelog/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelog/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinstoragelog/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelog/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelog/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelog/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinstoragelogerr.js b/supervise-crm-ui/src/api/supervise/gdinstoragelogerr.js new file mode 100644 index 00000000..fad5e2a8 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinstoragelogerr.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库导入时错误数据 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinstoragelogerr/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinventory.js b/supervise-crm-ui/src/api/supervise/gdinventory.js new file mode 100644 index 00000000..cccb7f4a --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinventory.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 国大库存数据 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinventory/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinventory/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinventory/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinventory/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinventory/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventory/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventory/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinventorylog.js b/supervise-crm-ui/src/api/supervise/gdinventorylog.js new file mode 100644 index 00000000..7d8eb848 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinventorylog.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 库存导入的记录 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinventorylog/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinventorylog/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinventorylog/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinventorylog/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinventorylog/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventorylog/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventorylog/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinventorylogerr.js b/supervise-crm-ui/src/api/supervise/gdinventorylogerr.js new file mode 100644 index 00000000..09fc3b6d --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinventorylogerr.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 库存导入时错误数据 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinventorylogerr/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinventorylogerr/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinventorylogerr/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinventorylogerr/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinventorylogerr/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventorylogerr/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventorylogerr/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdinventoryok.js b/supervise-crm-ui/src/api/supervise/gdinventoryok.js new file mode 100644 index 00000000..cf121eee --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdinventoryok.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 国大库存数据(监管) +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdinventoryok/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdinventoryok/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdinventoryok/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdinventoryok/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdinventoryok/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventoryok/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdinventoryok/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/gdrescategoryprod.js b/supervise-crm-ui/src/api/supervise/gdrescategoryprod.js new file mode 100644 index 00000000..d370242e --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/gdrescategoryprod.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 监管品类的商品编码 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/gdrescategoryprod/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/gdrescategoryprod/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/gdrescategoryprod/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/gdrescategoryprod/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/gdrescategoryprod/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/gdrescategoryprod/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/gdrescategoryprod/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/goodsonway.js b/supervise-crm-ui/src/api/supervise/goodsonway.js new file mode 100644 index 00000000..4f65e841 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/goodsonway.js @@ -0,0 +1,15 @@ +import request from '@/utils/request' +// 销售报表 + +// 初始化 +export default { + + initData(data) { + return request({ + url: '/reportCenter/getGoodsOnWay', + method: 'get', + params: data + }) + }, + +} diff --git a/supervise-crm-ui/src/api/supervise/importdatainfo.js b/supervise-crm-ui/src/api/supervise/importdatainfo.js new file mode 100644 index 00000000..b57078cd --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/importdatainfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// import_data_info +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/importdatainfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/importdatainfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/importdatainfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/importdatainfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/importdatainfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/importdatainfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/importdatainfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/inventoryinformation.js b/supervise-crm-ui/src/api/supervise/inventoryinformation.js new file mode 100644 index 00000000..460f3f3d --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/inventoryinformation.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 台账信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/inventoryinformation/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/inventoryinformation/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/inventoryinformation/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/inventoryinformation/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/inventoryinformation/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/inventoryinformation/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/inventoryinformation/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/kfpurchaserequisition.js b/supervise-crm-ui/src/api/supervise/kfpurchaserequisition.js new file mode 100644 index 00000000..acf0d99b --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/kfpurchaserequisition.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 库房提供的采购订单表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/kfpurchaserequisitionpro.js b/supervise-crm-ui/src/api/supervise/kfpurchaserequisitionpro.js new file mode 100644 index 00000000..19fecccf --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/kfpurchaserequisitionpro.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 库房采购订单商品信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisitionpro/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/logisticscompany.js b/supervise-crm-ui/src/api/supervise/logisticscompany.js new file mode 100644 index 00000000..06b169c6 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/logisticscompany.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 物流公司信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/logisticscompany/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/logisticscompany/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/logisticscompany/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/logisticscompany/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/logisticscompany/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/logisticscompany/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/logisticscompany/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/manufacturerinfo.js b/supervise-crm-ui/src/api/supervise/manufacturerinfo.js new file mode 100644 index 00000000..18195037 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/manufacturerinfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 厂商信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/manufacturerinfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/manufacturerinfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/manufacturerinfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/manufacturerinfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/manufacturerinfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/manufacturerinfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/manufacturerinfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/productinformation.js b/supervise-crm-ui/src/api/supervise/productinformation.js new file mode 100644 index 00000000..328bb38b --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/productinformation.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 商品档案信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/productinformation/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/productinformation/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/productinformation/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/productinformation/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/productinformation/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/productinformation/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/productinformation/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/productnum.js b/supervise-crm-ui/src/api/supervise/productnum.js new file mode 100644 index 00000000..8b5498c6 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/productnum.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 商品名称、商品代码表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/productnum/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/productnum/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/productnum/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/productnum/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/productnum/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/productnum/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/productnum/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/purchaseapplicationmanagement.js b/supervise-crm-ui/src/api/supervise/purchaseapplicationmanagement.js new file mode 100644 index 00000000..d2f02c3b --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/purchaseapplicationmanagement.js @@ -0,0 +1,46 @@ +import request from '@/utils/request' +// 库房提供的采购订单表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/v1/purchaserequisition/listPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/v1/purchaserequisition/save', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(data) { + return request({ + url: '/v1/purchaserequisition/delBySids', + method: 'delete', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/v1/purchaserequisition/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/kfpurchaserequisition/doSubmit', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/purchaserequisition.js b/supervise-crm-ui/src/api/supervise/purchaserequisition.js new file mode 100644 index 00000000..130dad8d --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/purchaserequisition.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 采购订单表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/purchaserequisition/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/purchaserequisition/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/purchaserequisition/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/purchaserequisition/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/purchaserequisition/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/purchaserequisition/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/purchaserequisition/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/purchaserequisitionpro.js b/supervise-crm-ui/src/api/supervise/purchaserequisitionpro.js new file mode 100644 index 00000000..0107d253 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/purchaserequisitionpro.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 采购订单商品信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/purchaserequisitionpro/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/purchasetransit.js b/supervise-crm-ui/src/api/supervise/purchasetransit.js new file mode 100644 index 00000000..bf3d48be --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/purchasetransit.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// purchase_transit +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/purchasetransit/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/purchasetransit/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/purchasetransit/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/purchasetransit/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/purchasetransit/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/purchasetransit/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/purchasetransit/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/registrationinfo.js b/supervise-crm-ui/src/api/supervise/registrationinfo.js new file mode 100644 index 00000000..9701f47c --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/registrationinfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 营业执照信息信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/registrationinfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/registrationinfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/registrationinfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/registrationinfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/registrationinfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/registrationinfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/registrationinfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/restrictedbrand.js b/supervise-crm-ui/src/api/supervise/restrictedbrand.js new file mode 100644 index 00000000..3fbb0f1b --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/restrictedbrand.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 限定品牌 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/restrictedbrand/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/restrictedbrand/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/restrictedbrand/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/restrictedbrand/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/restrictedbrand/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/restrictedbrand/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/restrictedbrand/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/restrictedcategory.js b/supervise-crm-ui/src/api/supervise/restrictedcategory.js new file mode 100644 index 00000000..15baf226 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/restrictedcategory.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 限定品类 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/restrictedcategory/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/restrictedcategory/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/restrictedcategory/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/restrictedcategory/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/restrictedcategory/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/restrictedcategory/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/restrictedcategory/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/restrictedcategorycopy.js b/supervise-crm-ui/src/api/supervise/restrictedcategorycopy.js new file mode 100644 index 00000000..70a5198c --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/restrictedcategorycopy.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 限定品类 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/restrictedcategorycopy/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/salesdata.js b/supervise-crm-ui/src/api/supervise/salesdata.js new file mode 100644 index 00000000..347cfc79 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/salesdata.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 销售数据 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/salesdata/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/salesdata/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/salesdata/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/salesdata/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/salesdata/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/salesdata/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/salesdata/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/salesreport.js b/supervise-crm-ui/src/api/supervise/salesreport.js new file mode 100644 index 00000000..c73d0004 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/salesreport.js @@ -0,0 +1,15 @@ +import request from '@/utils/request' +// 销售报表 + +// 初始化 +export default { + + initData(data) { + return request({ + url: '/reportCenter/getSalesReport', + method: 'get', + params: data + }) + }, + +} diff --git a/supervise-crm-ui/src/api/supervise/salestest.js b/supervise-crm-ui/src/api/supervise/salestest.js new file mode 100644 index 00000000..43b91946 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/salestest.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// salestest +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/salestest/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/salestest/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/salestest/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/salestest/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/salestest/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/salestest/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/salestest/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/storein.js b/supervise-crm-ui/src/api/supervise/storein.js new file mode 100644 index 00000000..c149af80 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/storein.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库单 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/storein/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/storein/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/storein/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/storein/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/storein/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/storein/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/storein/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/storeindex.js b/supervise-crm-ui/src/api/supervise/storeindex.js new file mode 100644 index 00000000..4f04d17c --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/storeindex.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 监管门店 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/storeindex/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/storeindex/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/storeindex/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/storeindex/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/storeindex/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/storeindex/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/storeindex/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/storeinfo.js b/supervise-crm-ui/src/api/supervise/storeinfo.js new file mode 100644 index 00000000..5b065784 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/storeinfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 门店信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/storeinfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/storeinfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/storeinfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/storeinfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/storeinfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/storeinfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/storeinfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/storeinitem.js b/supervise-crm-ui/src/api/supervise/storeinitem.js new file mode 100644 index 00000000..ea181364 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/storeinitem.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 入库单明细 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/storeinitem/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/storeinitem/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/storeinitem/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/storeinitem/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/storeinitem/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/storeinitem/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/storeinitem/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/storeout.js b/supervise-crm-ui/src/api/supervise/storeout.js new file mode 100644 index 00000000..2d0c68a7 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/storeout.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 出库单 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/storeout/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/storeout/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/storeout/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/storeout/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/storeout/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/storeout/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/storeout/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/storeoutitem.js b/supervise-crm-ui/src/api/supervise/storeoutitem.js new file mode 100644 index 00000000..dea09e20 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/storeoutitem.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 出库单明细 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/storeoutitem/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/storeoutitem/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/storeoutitem/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/storeoutitem/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/storeoutitem/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/storeoutitem/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/storeoutitem/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/supplierbankinfo.js b/supervise-crm-ui/src/api/supervise/supplierbankinfo.js new file mode 100644 index 00000000..873cc940 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/supplierbankinfo.js @@ -0,0 +1,64 @@ +import request from '@/utils/request' +// 供应商信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/v1/supplierbankinfo/listPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/v1/supplierbankinfo/save', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/v1/supplierbankinfo/delBySids', + method: 'delete', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/v1/supplierbankinfo/fetchDetailsBySid/' + sid + }) + }, + // 关联供应商--验证 + verification: function(params) { + return request({ + url: '/v1/supplierindex/verification', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 关联供应商--查看详情 + fetchDetailsBySid: function(data) { + return request({ + url: '/v1/supplierindex/fetchDetailsBySid/' + data, + method: 'get' + }) + }, + // 关联供应商--查看详情--保存 + save: function(data) { + return request({ + url: '/v1/supplierindex/save', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + +} diff --git a/supervise-crm-ui/src/api/supervise/supplierbrand.js b/supervise-crm-ui/src/api/supervise/supplierbrand.js new file mode 100644 index 00000000..dbbacc4d --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/supplierbrand.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 供应商与品牌表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/supplierbrand/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/supplierbrand/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/supplierbrand/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/supplierbrand/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/supplierbrand/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/supplierbrand/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/supplierbrand/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/supplierfinance.js b/supervise-crm-ui/src/api/supervise/supplierfinance.js new file mode 100644 index 00000000..a8a13d10 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/supplierfinance.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 供应商财务信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/supplierfinance/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/supplierfinance/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/supplierfinance/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/supplierfinance/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/supplierfinance/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/supplierfinance/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/supplierfinance/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/supplierindex.js b/supervise-crm-ui/src/api/supervise/supplierindex.js new file mode 100644 index 00000000..1fdfbc01 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/supplierindex.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 供货商编码对应表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/supplierindex/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/supplierindex/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/supplierindex/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/supplierindex/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/supplierindex/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/supplierindex/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/supplierindex/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/supplierinfo.js b/supervise-crm-ui/src/api/supervise/supplierinfo.js new file mode 100644 index 00000000..cbb46d2c --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/supplierinfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 供应商信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/supplierinfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/supplierinfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/supplierinfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/supplierinfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/supplierinfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/supplierinfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/supplierinfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/sysorganization.js b/supervise-crm-ui/src/api/supervise/sysorganization.js new file mode 100644 index 00000000..3e6d6d2e --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/sysorganization.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 组织机构表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/sysorganization/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/sysorganization/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/sysorganization/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/sysorganization/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/sysorganization/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/sysorganization/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/sysorganization/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/thresholdanalysis.js b/supervise-crm-ui/src/api/supervise/thresholdanalysis.js new file mode 100644 index 00000000..f4d3e174 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/thresholdanalysis.js @@ -0,0 +1,16 @@ +import request from '@/utils/request' +// 库房提供的采购订单表 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/risk/getThresholdAnalysis', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + } + + +} diff --git a/supervise-crm-ui/src/api/supervise/warehouseinfo.js b/supervise-crm-ui/src/api/supervise/warehouseinfo.js new file mode 100644 index 00000000..9cfb7cca --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/warehouseinfo.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 仓库信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/warehouseinfo/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/warehouseinfo/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/warehouseinfo/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/warehouseinfo/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/warehouseinfo/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/warehouseinfo/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/warehouseinfo/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/warehouseposition.js b/supervise-crm-ui/src/api/supervise/warehouseposition.js new file mode 100644 index 00000000..9de6aed0 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/warehouseposition.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 货架信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/warehouseposition/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/warehouseposition/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/warehouseposition/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/warehouseposition/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/warehouseposition/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/warehouseposition/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/warehouseposition/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/supervise/warehouseshelves.js b/supervise-crm-ui/src/api/supervise/warehouseshelves.js new file mode 100644 index 00000000..f02d7f88 --- /dev/null +++ b/supervise-crm-ui/src/api/supervise/warehouseshelves.js @@ -0,0 +1,59 @@ +import request from '@/utils/request' +// 仓位信息 +export default { + + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/supervise/v1/warehouseshelves/listPage', + method: 'post', + data: params + }) + }, + // 保存新增记录 + saveOrUpdate: function(params) { + return request({ + url: '/supervise/v1/warehouseshelves/save', + method: 'post', + data: params + }) + }, + // 通过sid删除一条或多条记录 + delBySids: function(params) { + return request({ + url: '/supervise/v1/warehouseshelves/delBySids', + method: 'delete', + data: params + }) + }, + // 通过sid查询一条记录 + fetchBySid: function(sid) { + return request({ + url: '/supervise/v1/warehouseshelves/fetchDetailsBySid/' + sid + }) + }, + // 提交 + doSubmit: function(params) { + return request({ + url: '/supervise/v1/warehouseshelves/doSubmit', + method: 'post', + data: params + }) + }, + // 导入 + importExcel: function(params) { + return request({ + url: '/supervise/v1/warehouseshelves/importExcel', + method: 'post', + data: params + }) + }, + // 导出 + exportExcel: function(params) { + return request({ + url: '/supervise/v1/warehouseshelves/exportExcel', + method: 'post', + data: params + }) + } +} diff --git a/supervise-crm-ui/src/api/system/Role/role.js b/supervise-crm-ui/src/api/system/Role/role.js new file mode 100644 index 00000000..7eb16f31 --- /dev/null +++ b/supervise-crm-ui/src/api/system/Role/role.js @@ -0,0 +1,47 @@ +import request from '@/utils/request' +import qs from 'qs' +const tokens = window.sessionStorage.getItem('token') +// +export function rolemenus(data) { + return request({ + url: '/system/v1/rolemenus/' + data.roleSid, + method: 'get', + params: data + }) +} + +// 获取左侧菜单 +export function getrolemenus(data) { + return request({ + baseURL: '/api', + url: '/portal/v1/sysmenu/sourcemenutree', + method: 'POST', + async: false, +// data: {userSid: data.userSid, sourceSid: '000011'}, + data: data, + headers: { 'Content-Type': 'application/json', + 'token': tokens } + }) +} + +// 获取角色的主页菜单 +export function sourcesofrole(data) { + return request({ + url: '/system/v1/rolemenus/sourcesofrole', + method: 'POST', + data: data, + headers: { 'Content-Type': 'application/json' } + }) +} +// 根据token值获取登录后的用户信息 +export function loginDetails(data) { + return request({ + baseURL: '/api', + url: '/portal/v1/sysuser/loginDetails', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) +} diff --git a/supervise-crm-ui/src/api/system/Role/roleManage.js b/supervise-crm-ui/src/api/system/Role/roleManage.js new file mode 100644 index 00000000..e3de51cf --- /dev/null +++ b/supervise-crm-ui/src/api/system/Role/roleManage.js @@ -0,0 +1,69 @@ +import request from '@/utils/request' +import qs from 'qs' + +// 获取角色 不分页列表 +export function roleList(data) { + return request({ + url: '/system/v1/roles/list/', + method: 'post', + data: qs.stringify(data) + }) +} + + +//获取角色 分页列表 +export function rolePageList(data) { + return request({ + url: '/system/v1/roles/pagelist', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +//保存 角色信息 +export function saveRoleInfo(data) { + return request({ + url: '/system/v1/roles', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +//根据sid 获取单个角色 信息 +export function getRoleInfo(data) { + return request({ + url: '/system/v1/roles/' + data.sid, + method: 'GET', + data: qs.stringify(data) + }) +} + +//根据sid 修改单个角色 信息 +export function putRoleInfo(data) { + return request({ + url: '/system/v1/roles/' + data.sid, + method: 'PUT', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +//根据sid 删除单个角色 信息 +export function delRole(data) { + return request({ + url: '/system/v1/roles/' + data.sid, + method: 'DELETE', + data: qs.stringify(data) + }) +} + +//根据sid 设置单个角色 的状态 +export function setRoleEnable(data) { + return request({ + url: `/system/v1/roles/setIsEnable/${data.sid}/${data.isEnable}`, + method: 'POST', + data: qs.stringify(data) + }) +} diff --git a/supervise-crm-ui/src/api/system/basefkManage/index.js b/supervise-crm-ui/src/api/system/basefkManage/index.js new file mode 100644 index 00000000..4a5e204b --- /dev/null +++ b/supervise-crm-ui/src/api/system/basefkManage/index.js @@ -0,0 +1,138 @@ +import request from '@/utils/request' +import qs from 'qs' +// 用户列表 +let tokens = window.sessionStorage.getItem('token'); +export function userList(data){ + return request({ + url: '/base/v1/basefinbank/listPage', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 根据sid查询一条信息 +export function userSingle(data){ + return request({ + url: '/base/v1/basefinbank/fetchSid/' +data.sid, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 新增 +export function userAdd(data){ + return request({ + url: '/portal/v1/sysuser/save', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 更新 +export function userUpdata(data){ + return request({ + url: '/portal/v1/sysuser/update/' +data.sid, + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 删除 +export function delUser(data){ + return request({ + url: '/portal/v1/sysuser/delBySid/' +data.sid, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 初始化密码 +export function initPwd(data){ + return request({ + url: '/portal/v1/sysuser/initPwd/' +data.sid, + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 单条用户的角色列表 +export function setRole(data){ + return request({ + url: '/portal/v1/sysrole/listAllByUserSid/' +data.sid, + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 角色列表 +export function saveOrgRole(data){ + return request({ + url: '/portal/v1/sysuserrole/update', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 查询角色列表 +export function roleList(data){ + return request({ + url: '/base/v1/basefinpolicy/listAll', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 查询部门列表 +export function orgList(data){ + return request({ + url: '/portal/v1/sysorganization/list', + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 查询岗位列表 +export function postList(data){ + return request({ + url: '/portal/v1/syspost/fetchByOrgSid/'+data.sid, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 获取验证码 +export function getCode(data){ + return request({ + url: '/portal/v1/sysuser/sendMessageCode/'+data.phone, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} diff --git a/supervise-crm-ui/src/api/system/dataDict/dataDict.js b/supervise-crm-ui/src/api/system/dataDict/dataDict.js new file mode 100644 index 00000000..15df0509 --- /dev/null +++ b/supervise-crm-ui/src/api/system/dataDict/dataDict.js @@ -0,0 +1,32 @@ +import request from '@/utils/request' +import qs from 'qs' +//获取单位级别 +export function getDwJb(data) { + return request({ + url: '/system/dictCommon/getDwJb', + method: 'GET', + }) +} +// 获取机构单位类别 +export function getDwType(data) { + return request({ + url: '/system/dictCommon/getDwType', + method: 'get', + params: data + }) +} +//获取机构人员类别 +export function getRylb(data) { + return request({ + url: '/system/dictCommon/getRylb', + method: 'get' + }) +} + +// 根据Type值获取数据对象 +export function getDicts(typeCode) { + return request({ + url: '/system/dictCommon/dicts/'+typeCode, + method: 'get' + }) +} diff --git a/supervise-crm-ui/src/api/system/departments/departments.js b/supervise-crm-ui/src/api/system/departments/departments.js new file mode 100644 index 00000000..6594952b --- /dev/null +++ b/supervise-crm-ui/src/api/system/departments/departments.js @@ -0,0 +1,120 @@ +import request from '@/utils/request' +import qs from 'qs'; + +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY' +let tokens = window.sessionStorage.getItem('token'); +//获取菜单 分页列表 +export function pageList(data) { + return request({ + url: '/portal/v1/sysorganization/listPage', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 查询左侧部门列表 +export function orgList(data){ + return request({ + url: '/portal/v1/sysorganization/list', + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 编辑部门信息 +export function postOrgtree(data){ + return request({ + url: '/portal/v1/sysorganization/update/' +data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 获取 机构分页列表 +export function putOrgtree(data) { + return request({ + url: '/portal/v1/sysorganization/update/' +data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens} + }) +} +// 新增部门信息 +export function addOrgTree(data){ + return request({ + url: '/portal/v1/sysorganization/save', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 树 节点名称 删除 +export function delOrgtree(data) { + return request({ + url: `/portal/v1/sysorganization/delBySid/`+data.sid, + method: 'get', + data: qs.stringify(data), + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + + + + + + + + +// 获取 机构树形 +export function getOrgTree(data) { + return request({ + url: `/system/v1/departments/departmentTreeList/`+ data.organizationSid, + method: 'GET', + params: data + }) +} +//// 添加 机构树形节点 +//export function addOrgTree(data) { +//return request({ +// url: `/system/v1/departments`, +// method: 'post', +// data: data, +// headers: {'Content-Type': 'application/json'} +//}) +//} + +// 获取 机构分页列表 +export function getPagelist(data) { + return request({ + url: `/system/v1/departments/pagelist`, + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + + + + + + + +// 查看二维码 +export function getQrCode(data) { + return request({ + url: `/system/v1/departments/getQrCode/`+data.sid, + method: 'POST', + data: qs.stringify(data) + }) +} diff --git a/supervise-crm-ui/src/api/system/dictType/dictCommon.js b/supervise-crm-ui/src/api/system/dictType/dictCommon.js new file mode 100644 index 00000000..efca4adc --- /dev/null +++ b/supervise-crm-ui/src/api/system/dictType/dictCommon.js @@ -0,0 +1,52 @@ +import request from '@/utils/request' +import qs from 'qs' +let tokens = window.sessionStorage.getItem('token'); + +//获取字典子集 分页列表 +export function dictCommonList(data) { + return request({ + url: '/portal/v1/dictcommons/pageList', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +//保存 字典子级 +export function savedictCommon(data) { + return request({ + url: '/portal/v1/dictcommons/save', + method: 'POST', + data: qs.stringify(data), + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +//根据sid 获取单个菜单 信息 +export function getRoleInfo(data) { + return request({ + url: '/system/v1/menus/' + data.sid, + method: 'GET', + data: qs.stringify(data) + }) +} + +//根据sid 修改 数据字典 +export function putdictCommon(data) { + return request({ + url: '/portal/v1/dictcommons/update/' + data.sid, + method: 'POST', + data: qs.stringify(data) + }) +} + +//根据sid 删除菜单 信息 +export function deldictCommon(data) { + return request({ + url: '/portal/v1/dictcommons/delete/' + data.sid, + method: 'DELETE', + data: qs.stringify(data) + }) +} diff --git a/supervise-crm-ui/src/api/system/dictType/index.js b/supervise-crm-ui/src/api/system/dictType/index.js new file mode 100644 index 00000000..b2d8a1d7 --- /dev/null +++ b/supervise-crm-ui/src/api/system/dictType/index.js @@ -0,0 +1,72 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY' +let tokens = window.sessionStorage.getItem('token'); + +//获取菜单 分页列表 +export function pageList(data) { + return request({ + url: '/portal/v1/dicttypes/pageList', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +//根据sid 修改 +export function putDictType(data) { + return request({ + url: '/portal/v1/dicttypes/update/' + data.sid, + method: 'POST', + data: qs.stringify(data) + }) +} + + + + + + + + + + +////获取菜单 分页列表 +//export function dictTypeList(data) { +//return request({ +// url: '/system/dicttype/pageList', +// method: 'post', +// data: data, +// headers: {'Content-Type': 'application/json'} +//}) +//} + +//保存 角色信息 +export function saveDictType(data) { + return request({ + url: '/system/dicttype/save', + method: 'POST', + data: qs.stringify(data) + }) +} + +//根据sid 获取单个菜单 信息 +export function getRoleInfo(data) { + return request({ + url: '/system/v1/menus/' + data.sid, + method: 'GET', + data: qs.stringify(data) + }) +} + + + +//根据sid 删除菜单 信息 +export function delDictType(data) { + return request({ + url: '/system/dicttype/delete/' + data.sid, + method: 'DELETE', + data: qs.stringify(data) + }) +} diff --git a/supervise-crm-ui/src/api/system/functional/functional.js b/supervise-crm-ui/src/api/system/functional/functional.js new file mode 100644 index 00000000..ed3b0661 --- /dev/null +++ b/supervise-crm-ui/src/api/system/functional/functional.js @@ -0,0 +1,84 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY' +let tokens = window.sessionStorage.getItem('token'); +//获取菜单 分页列表 +export function pageList(data) { + return request({ + url: '/portal/v1/sysfunction/listAllVoForSource', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +//新增 +export function savePost(data) { + return request({ + url: '/portal/v1/sysfunction/save', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +//模块名称 +export function sourceList(data) { + return request({ + url: '/portal/v1/syssource/listAll', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 删除 +export function delOrgroles(data) { + return request({ + url: '/portal/v1/sysfunction/delBySids/'+ data.sid, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 修改 +export function getSingleData(data){ + return request({ + url: '/portal/v1/sysfunction/fetchBySid/'+data.id, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +export function putOrgroles(data){ + return request({ + url: '/portal/v1/sysfunction/update/' +data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 功能是否可用状态 +export function IsEnable(data){ + return request({ + url: '/portal/v1/sysfunction/updateIsEnable/' +data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} \ No newline at end of file diff --git a/supervise-crm-ui/src/api/system/log/index.js b/supervise-crm-ui/src/api/system/log/index.js new file mode 100644 index 00000000..a4dfd397 --- /dev/null +++ b/supervise-crm-ui/src/api/system/log/index.js @@ -0,0 +1,16 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY' +let tokens = window.sessionStorage.getItem('token'); +//获取菜单 分页列表 +export function logPageList(data) { + return request({ + url: '/portal/v1/systemlog/listPage', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + diff --git a/supervise-crm-ui/src/api/system/menu/index.js b/supervise-crm-ui/src/api/system/menu/index.js new file mode 100644 index 00000000..08a617c3 --- /dev/null +++ b/supervise-crm-ui/src/api/system/menu/index.js @@ -0,0 +1,115 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY' + +let tokens = window.sessionStorage.getItem('token'); +//获取菜单 分页列表 +export function pageList(data) { + return request({ + url: '/portal/v1/sysmenu/listAllVoForSource', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 新增保存 菜单信息 +export function saveMenusInfo(data) { + return request({ + url: '/portal/v1/sysmenu/save', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} +// 修改保存 菜单信息 +export function putMenusInfo(data) { + return request({ + url: '/portal/v1/sysmenu/update/'+ data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} +//根据sid 删除单个 资源信息 +export function delMenus(data) { + return request({ + url: '/portal/v1/sysmenu/delBySids/' + data.sid, + method: 'get', + data: qs.stringify(data), + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 修改状态 +export function IsEnable(data) { + return request({ + url: '/portal/v1/sysmenu/updateIsEnable/' + data.sid, + method: 'POST', + data: qs.stringify(data), + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + + + + + + + + + + + + + + +// 获取菜单 不分页列表 +export function roleList(data) { + return request({ + url: '/system/v1/menus/list', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +//获取菜单 分页列表 +export function menusPageList(data) { + return request({ + url: '/system/v1/menus/pagelist', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +//获取菜单 树形分页列表 +export function menusTreelist(data) { + return request({ + url: '/system/v1/menus/treelist', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + + + +//根据sid 获取单个菜单 信息 +export function getRoleInfo(data) { + return request({ + url: '/system/v1/menus/' + data.sid, + method: 'GET', + data: qs.stringify(data) + }) +} + + + + diff --git a/supervise-crm-ui/src/api/system/organization/organization.js b/supervise-crm-ui/src/api/system/organization/organization.js new file mode 100644 index 00000000..1cf938e4 --- /dev/null +++ b/supervise-crm-ui/src/api/system/organization/organization.js @@ -0,0 +1,36 @@ +import request from '@/utils/request' +import qs from 'qs' +let tokens = window.sessionStorage.getItem('token'); +class user{ + verifyList(data){ // 获取列表 + return request({ + url: '/system/organization/verifyList', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) + } + orgRegisterDetails(data){ // 单位注册信息详情 + return request({ + url: '/system/organization/organizationRegisterDetails/'+data.organizationSid, + method: 'get', + params: data + }) + } + verify(data){ // 审核 + return request({ + url: '/system/organization/verify', + method: 'post', + data: qs.stringify(data) + }) + } + // 删除机构信息 + del(data) { + return request({ + url: '/system/organization/delete/'+data.sid, + method: 'DELETE', + data + }) + } +} +export default new user() diff --git a/supervise-crm-ui/src/api/system/postManage/index.js b/supervise-crm-ui/src/api/system/postManage/index.js new file mode 100644 index 00000000..5d110f52 --- /dev/null +++ b/supervise-crm-ui/src/api/system/postManage/index.js @@ -0,0 +1,61 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMTE1MjUwfQ.gtn_mVsbwH6ztl835rWmIY4DxeNmRe_TOt-Q0TdldIE' +let tokens = window.sessionStorage.getItem('token'); +//获取菜单 分页列表 +export function pageList(data) { + return request({ + url: '/portal/v1/syspost/listPage', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 查询部门列表 +export function orgList(data){ + return request({ + url: '/portal/v1/sysorganization/list', + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 新增 +export function savePost(data){ + return request({ + url: '/portal/v1/syspost/save', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 修改 +export function putOrgroles(data){ + return request({ + url: '/portal/v1/syspost/update/' +data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 删除 +export function delOrgroles(data){ + return request({ + url: '/portal/v1/syspost/delBySids/' + data.sids, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} \ No newline at end of file diff --git a/supervise-crm-ui/src/api/system/roleAdminister/index.js b/supervise-crm-ui/src/api/system/roleAdminister/index.js new file mode 100644 index 00000000..da00965f --- /dev/null +++ b/supervise-crm-ui/src/api/system/roleAdminister/index.js @@ -0,0 +1,139 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjI5OTQxNjI1fQ.aOFOz0h7c8YQs-ti2GLpqeWu4AE9mifx_043hLJQf8g' +let tokens = window.sessionStorage.getItem('token'); +// 业务角色 列表 +export function roleOrgList(data){ + return request({ + url: '/portal/v1/sysrole/listPage', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 设置是否可用:isEnable:1可用,0不可用 +export function setRoleEnable(data) { + return request({ + url: `/system/v1/orgroles/setIsEnable/${data.sid}/${data.isEnable}`, + method: 'POST', + data: qs.stringify(data) + }) +} + +/** + * <新增 保存角色> + * @orgSid 机构SID + * @remarks 备注 + * @roleName 角色名称 + * */ +export function saveOrgroles(data) { + return request({ + url: '/portal/v1/sysrole/save', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +/** + * <根据SID 修改角色> + * @sid 角色SID + * @orgSid 机构SID + * @remarks 备注 + * @roleName 角色名称 + * */ +export function putOrgroles(data) { + return request({ + url: `/portal/v1/sysrole/update/${data.sid}`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +/** + * <根据SID 删除角色> + * @sid 角色SID + * */ +export function delOrgroles(data) { + return request({ + url: `/portal/v1/sysrole/delBySids/${data.sid}`, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 菜单授权 +export function roleMenuTree(data) { + return request({ + url: `/portal/v1/sysmenu/listAllByRoleSid`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 菜单授权保存 +export function saveorgrolemenus(data) { + return request({ + url: `/portal/v1/sysmenurole/updateRoleAndMenu`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 资源授权 +export function sourceMenuTree(data) { + return request({ + url: `/portal/v1/syssource/listAllByRoleSid`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 资源授权保存 +export function saveSource(data) { + return request({ + url: `/portal/v1/syssourcerole/updateRoleAndSource`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 功能授权 +export function funMenuTree(data) { + return request({ + url: `/portal/v1/sysfunction/listAllByRoleSid`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 功能授权保存 +export function savefunMenu(data) { + return request({ + url: `/portal/v1/sysrolefunction/updateRoleAndFunction`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} \ No newline at end of file diff --git a/supervise-crm-ui/src/api/system/roleAdminister/rolemenus.js b/supervise-crm-ui/src/api/system/roleAdminister/rolemenus.js new file mode 100644 index 00000000..b3342ebd --- /dev/null +++ b/supervise-crm-ui/src/api/system/roleAdminister/rolemenus.js @@ -0,0 +1,31 @@ +import request from '@/utils/request' +import qs from 'qs' + +/** + * < 业务角色授权时菜单列表(拥有的菜单选中)> + * @orgTypeKeys 单位性质(类别 + * @roleSid 业务角色sid + * @userType 用户类型只能为1或2 + * */ +export function roleMenuTree(data){ + return request({ + url: '/system/v1/orgrolemenus/menutree', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +/** + * < 保存角色授权的菜单项 > + * @roleMenus[] 角色权限列表 {menuSid 菜单sid} {orgSid 单位sid} {roleSid 角色sid} + * @roleSid 业务角色sid + * */ +export function saveorgrolemenus(data){ + return request({ + url: '/system/v1/orgrolemenus', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} diff --git a/supervise-crm-ui/src/api/system/roleMenus/index.js b/supervise-crm-ui/src/api/system/roleMenus/index.js new file mode 100644 index 00000000..9d4e8775 --- /dev/null +++ b/supervise-crm-ui/src/api/system/roleMenus/index.js @@ -0,0 +1,21 @@ +import request from '@/utils/request' +import qs from 'qs' + +//角色授权时菜单列表(拥有的菜单选中) +export function getrolemenus(data) { + return request({ + url: `/system/v1/rolemenus/${data.roleSid}`, + method: 'GET', + params: data + }) +} + +//保存 角色授权时菜单列表 +export function saverolemenus(data) { + return request({ + url: `/system/v1/rolemenus`, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} diff --git a/supervise-crm-ui/src/api/system/sources/index.js b/supervise-crm-ui/src/api/system/sources/index.js new file mode 100644 index 00000000..f94cac0c --- /dev/null +++ b/supervise-crm-ui/src/api/system/sources/index.js @@ -0,0 +1,111 @@ +import request from '@/utils/request' +import qs from 'qs' +//let tokens = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI2IiwiaXNzIjoiV0JLIiwiZXhwIjoxNjMwMDI3MDA3fQ.9bEgBzFW2g1CUT7s5VXxhNCa10cyU_WTCFeqpQje0iY' +let tokens = window.sessionStorage.getItem('token'); +//获取菜单 分页列表 +export function pageList(data) { + return request({ + url: '/portal/v1/syssource/listPage', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +//保存 资源信息 +export function saveSourcesInfo(data) { + return request({ + url: '/portal/v1/syssource/save', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 修改 保存 资源信息 +export function putSourcesInfo(data) { + return request({ + url: '/portal/v1/syssource/update/' + data.sid, + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +//根据sid 删除单个 资源信息 +export function delSources(data) { + return request({ + url: '/portal/v1/syssource/delBySids/' + data.sid, + method: 'get', + data: qs.stringify(data), + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 获取获取资源类别 +export function getZzylb(data) { +return request({ + url: '/portal/v1/syssource/listAll', + method: 'post', + headers: {'Content-Type': 'application/json'} +}) +} + + + + + + + + + + + + + + + +// 获取资源 不分页列表 +export function sourcesList(data) { + return request({ + url: '/system/v1/sources/list', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +// 获取资源列表 不分页下拉 +export function getsourceList(data) { + return request({ + url: '/system/v1/sources/sourceList', + method: 'post' + }) +} + + +////获取资源 分页列表 +//export function sourcesPageList(data) { +//return request({ +// url: '/system/v1/sources/pagelist', +// method: 'POST', +// data: data, +// headers: {'Content-Type': 'application/json'} +//}) +//} + + + +//根据sid 获取单个 资源信息 +export function getSourcesInfo(data) { + return request({ + url: '/system/v1/sources/' + data.sid, + method: 'GET', + data: qs.stringify(data) + }) +} + diff --git a/supervise-crm-ui/src/api/system/user/Auser.js b/supervise-crm-ui/src/api/system/user/Auser.js new file mode 100644 index 00000000..b2318a83 --- /dev/null +++ b/supervise-crm-ui/src/api/system/user/Auser.js @@ -0,0 +1,84 @@ +import request from '@/utils/request' +import qs from 'qs' + +export function verifyList(data){ // 用户列表 + return request({ + url: '/system/user/verifyList', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} +// admin用户列表 +export function userListByAdmin(data){ + return request({ + url: '/system/user/userListByAdmin', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +// 设置角色 +export function psotUserRole(data){ + return request({ + url: '/system/v1/userrole', + method: 'post', + data: qs.stringify(data) + }) +} + +// 用户初始化密码 +export function initPwd(data){ + return request({ + url: 'system/user/initPwd/'+data.sid, + method: 'POST', + data: qs.stringify(data) + }) +} + +// 用户删除接口 +export function delUser(data){ + return request({ + url: '/system/user/delete/'+data.sid, + method: 'DELETE', + params: data + }) +} + +// 初始化设置角色 +export function initUserRole(data){ + return request({ + url: '/system/v1/userroles/initUserRole/'+ data.userSid, + method: 'get', + params: data + }) +} + +// 保存角色 +export function saveUserRole(data){ + return request({ + url: '/system/v1/userroles', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +// 用户信息 +export function getUserINfo(data){ + return request({ + url: '/system/user/userRegisterDetails', + method: 'get', + params: data + }) +} + +// 单位信息 +export function getOrgINfo(data){ + return request({ + url: '/system/organization/organizationRegisterDetails/'+ data.organizationSid, + method: 'get', + params: data + }) +} diff --git a/supervise-crm-ui/src/api/system/user/login.js b/supervise-crm-ui/src/api/system/user/login.js new file mode 100644 index 00000000..5f3aa3b9 --- /dev/null +++ b/supervise-crm-ui/src/api/system/user/login.js @@ -0,0 +1,38 @@ +import request from '@/utils/request' +import qs from 'qs' + + +//获取菜单 分页列表 +export function login1(data) { + return request({ + url: '/portal/v1/sysuser/login', + method: 'POST', + data: data, + headers: {'Content-Type': 'application/json', +// 'token':tokens + } + }) +} + +class user { + login(data) { // 登录 + return request({ + url: '/portal/v1/sysuser/login', + method: 'post', + data + }) + } + logout() { // 退出 + return request({ + url: '/vue-admin-template/user/logout', + method: 'post' + }) + } + updatePassword(data) { // 退出修改密码 + return request({ + url: '/system/user/updatePassword', + method: 'post', + data: qs.stringify(data) + }) + } +} diff --git a/supervise-crm-ui/src/api/system/user/user.js b/supervise-crm-ui/src/api/system/user/user.js new file mode 100644 index 00000000..6ff564f6 --- /dev/null +++ b/supervise-crm-ui/src/api/system/user/user.js @@ -0,0 +1,43 @@ +import request from '@/utils/request' +import qs from 'qs' +class user{ + verifyList(data){ // 请求审核列表 + return request({ + url: '/system/user/verifyList', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) + } + userRegisterDetails(data){ // 获取审核内容 + console.log(data) + return request({ + url: '/system/user/userRegisterDetails', + method: 'get', + params: data + }) + } + verify(data){ // 审核通过不通过 + return request({ + url: '/system/user/verify', + method: 'post', + data: qs.stringify(data) + }) + } + userDelete(data){ // 删除 + return request({ + url: '/system/user/delete/{sid}', + method: 'delete', + data: qs.stringify(data) + }) + } + userNameDelete(data){ // 删除个人注册审核 + return request({ + url: '/system/staffApply/deleteByUserName', + method: 'delete', + data: qs.stringify(data) + }) + } + +} +export default new user() diff --git a/supervise-crm-ui/src/api/system/userAdminister/client.js b/supervise-crm-ui/src/api/system/userAdminister/client.js new file mode 100644 index 00000000..ffb3861f --- /dev/null +++ b/supervise-crm-ui/src/api/system/userAdminister/client.js @@ -0,0 +1,32 @@ +import request from '@/utils/request' +import qs from 'qs' + +// 委托人分页列表 +export function clientList(data){ + return request({ + url: '/jlcyry/v1/clientalterrecords/pagerList', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +// 变更选择委托人列表 +export function setclientList(data){ + return request({ + url: '/jlcyry/v1/clientalterrecords/staffClientList', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + +// 变更为被委托人 +export function doClientAlter(data){ + return request({ + url: '/jlcyry/v1/clientalterrecords/doClientAlter', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} diff --git a/supervise-crm-ui/src/api/system/userAdminister/index.js b/supervise-crm-ui/src/api/system/userAdminister/index.js new file mode 100644 index 00000000..08d3d500 --- /dev/null +++ b/supervise-crm-ui/src/api/system/userAdminister/index.js @@ -0,0 +1,69 @@ +import request from '@/utils/request' +import qs from 'qs' +let tokens = window.sessionStorage.getItem('token'); +// 单位用户列表 +export function orgUserList(data){ + return request({ + url: '/system/user/userListByOrg', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json'} + }) +} + + +// 设置角色 +export function psotUserRole(data){ + return request({ + url: '/system/v1/userrole', + method: 'post', + data: qs.stringify(data) + }) +} + +/** + * 获取角色列表 + * orgSid 用户SID + * roleName 角色名称 + * */ +export function orgrolesList(data){ + return request({ + url: '/system/v1/orgroles/list', + method: 'post', + headers: {'Content-Type': 'application/json'}, + data + }) +} +/** + * 保存 设置角色 /system/v1/orguserroles + * */ + export function saveOrgRole(data){ + return request({ + url: '/system/v1/orguserroles', + method: 'post', + headers: {'Content-Type': 'application/json'}, + data + }) + } + +/** + * 部门机构列表 /system/v1/departments/departmentOrgList/{organizationSid} + * */ + export function getOrgList(organizationSid){ + return request({ + url: '/system/v1/departments/departmentOrgList/' + organizationSid, + method: 'get' + }) + } +/** + * 保存 设置部门 /system/v1/orguserroles + * */ + export function saveDepartment(data){ + return request({ + url: '/system/v1/departmentStaffs/setUpDepartment', + method: 'post', + headers: {'Content-Type': 'application/json'}, + data + }) + } + diff --git a/supervise-crm-ui/src/api/system/userManage/index.js b/supervise-crm-ui/src/api/system/userManage/index.js new file mode 100644 index 00000000..753a8fb1 --- /dev/null +++ b/supervise-crm-ui/src/api/system/userManage/index.js @@ -0,0 +1,60 @@ +import request from '@/utils/request' +import qs from 'qs' +// 用户列表 + +let tokens = window.sessionStorage.getItem('token'); +export function userList(data){ + return request({ + url: '/base/v1/basefinbank/listPage', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 根据sid查询一条信息 +export function userSingle(data){ + return request({ + url: '/base/v1/basefinpolicy/fetchSid/' +data.sid, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 新增 +export function userListAdd(data){ + return request({ + url: '/base/v1/basefinbank/save/', + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} +// 更新 +export function userUpdata(data){ + return request({ + url: '/base/v1/basefinbank/update/' +data.sid, + method: 'post', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} + +// 删除 +export function delbank(data){ + return request({ + url: '/base/v1/basefinbank/deleteBySids/' +data.sid, + method: 'get', + data: data, + headers: {'Content-Type': 'application/json', + 'token':tokens + } + }) +} diff --git a/supervise-crm-ui/src/api/user.js b/supervise-crm-ui/src/api/user.js new file mode 100644 index 00000000..dba15f70 --- /dev/null +++ b/supervise-crm-ui/src/api/user.js @@ -0,0 +1,56 @@ +import request from '@/utils/request' +// eslint-disable-next-line no-unused-vars +import qs from 'qs' + +// 登录 +export function login(data) { + return request({ + url: '/portal/v1/sysuser/login', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) +} + +// 用户注册 +export function registUser(data) { + return request({ + url: '/system/user/save', + method: 'post', + data, + headers: { 'Content-Type': 'application/x-www-form-urlencoded;' } + }) +} + +// 获取手机验证码 +export function getVerificationCode(data) { + return request({ + url: '/system/user/getVerificationCode', + method: 'get', + params: data + }) +} + +// 获取登录验证码 +export function imgCode() { + return request({ + url: '/system/api/defaultBlendCode?temm=' + new Date().getTime(), + method: 'get' + }) +} + +// 获取用信息 +export function getInfo(token) { + return request({ + url: '/system/user/loginDetails', + method: 'post' + }) +} + +export function logout(data) { // 退出 + return request({ + url: '/portal/v1/sysuser/signOut', + method: 'post', + data: qs.stringify(data) + }) +} diff --git a/supervise-crm-ui/src/assets/404_images/404.png b/supervise-crm-ui/src/assets/404_images/404.png new file mode 100644 index 00000000..3d8e2305 Binary files /dev/null and b/supervise-crm-ui/src/assets/404_images/404.png differ diff --git a/supervise-crm-ui/src/assets/404_images/404_cloud.png b/supervise-crm-ui/src/assets/404_images/404_cloud.png new file mode 100644 index 00000000..c6281d09 Binary files /dev/null and b/supervise-crm-ui/src/assets/404_images/404_cloud.png differ diff --git a/supervise-crm-ui/src/assets/home/anrui.png b/supervise-crm-ui/src/assets/home/anrui.png new file mode 100644 index 00000000..31de90ae Binary files /dev/null and b/supervise-crm-ui/src/assets/home/anrui.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon1.png b/supervise-crm-ui/src/assets/home/bIcon1.png new file mode 100644 index 00000000..f2c1381a Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon1.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon2.png b/supervise-crm-ui/src/assets/home/bIcon2.png new file mode 100644 index 00000000..4076e7e9 Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon2.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon3.png b/supervise-crm-ui/src/assets/home/bIcon3.png new file mode 100644 index 00000000..bbc6c51b Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon3.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon4.png b/supervise-crm-ui/src/assets/home/bIcon4.png new file mode 100644 index 00000000..a7ef26fe Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon4.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon5.png b/supervise-crm-ui/src/assets/home/bIcon5.png new file mode 100644 index 00000000..68401288 Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon5.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon6.png b/supervise-crm-ui/src/assets/home/bIcon6.png new file mode 100644 index 00000000..61c88a86 Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon6.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon7.png b/supervise-crm-ui/src/assets/home/bIcon7.png new file mode 100644 index 00000000..209f1a5d Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon7.png differ diff --git a/supervise-crm-ui/src/assets/home/bIcon8.png b/supervise-crm-ui/src/assets/home/bIcon8.png new file mode 100644 index 00000000..f2c2e331 Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bIcon8.png differ diff --git a/supervise-crm-ui/src/assets/home/bottomBg.png b/supervise-crm-ui/src/assets/home/bottomBg.png new file mode 100644 index 00000000..334f6146 Binary files /dev/null and b/supervise-crm-ui/src/assets/home/bottomBg.png differ diff --git a/supervise-crm-ui/src/assets/home/line.png b/supervise-crm-ui/src/assets/home/line.png new file mode 100644 index 00000000..b828cc3c Binary files /dev/null and b/supervise-crm-ui/src/assets/home/line.png differ diff --git a/supervise-crm-ui/src/assets/home/ltBg.png b/supervise-crm-ui/src/assets/home/ltBg.png new file mode 100644 index 00000000..7c487f7f Binary files /dev/null and b/supervise-crm-ui/src/assets/home/ltBg.png differ diff --git a/supervise-crm-ui/src/assets/home/ltIcon1.png b/supervise-crm-ui/src/assets/home/ltIcon1.png new file mode 100644 index 00000000..0c17623e Binary files /dev/null and b/supervise-crm-ui/src/assets/home/ltIcon1.png differ diff --git a/supervise-crm-ui/src/assets/home/ltIcon2.png b/supervise-crm-ui/src/assets/home/ltIcon2.png new file mode 100644 index 00000000..f4f25315 Binary files /dev/null and b/supervise-crm-ui/src/assets/home/ltIcon2.png differ diff --git a/supervise-crm-ui/src/assets/home/ltIcon3.png b/supervise-crm-ui/src/assets/home/ltIcon3.png new file mode 100644 index 00000000..a69ef7ce Binary files /dev/null and b/supervise-crm-ui/src/assets/home/ltIcon3.png differ diff --git a/supervise-crm-ui/src/assets/home/ltIcon4.png b/supervise-crm-ui/src/assets/home/ltIcon4.png new file mode 100644 index 00000000..740cfb3e Binary files /dev/null and b/supervise-crm-ui/src/assets/home/ltIcon4.png differ diff --git a/supervise-crm-ui/src/assets/home/notice.png b/supervise-crm-ui/src/assets/home/notice.png new file mode 100644 index 00000000..f964245d Binary files /dev/null and b/supervise-crm-ui/src/assets/home/notice.png differ diff --git a/supervise-crm-ui/src/assets/home/rtBg.png b/supervise-crm-ui/src/assets/home/rtBg.png new file mode 100644 index 00000000..987b9cbe Binary files /dev/null and b/supervise-crm-ui/src/assets/home/rtBg.png differ diff --git a/supervise-crm-ui/src/assets/images/arrow.png b/supervise-crm-ui/src/assets/images/arrow.png new file mode 100644 index 00000000..9e4c33b9 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/arrow.png differ diff --git a/supervise-crm-ui/src/assets/images/bdrysh.png b/supervise-crm-ui/src/assets/images/bdrysh.png new file mode 100644 index 00000000..c0acee9a Binary files /dev/null and b/supervise-crm-ui/src/assets/images/bdrysh.png differ diff --git a/supervise-crm-ui/src/assets/images/btn.png b/supervise-crm-ui/src/assets/images/btn.png new file mode 100644 index 00000000..4aaf9f01 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/btn.png differ diff --git a/supervise-crm-ui/src/assets/images/cdgl.png b/supervise-crm-ui/src/assets/images/cdgl.png new file mode 100644 index 00000000..d3e20f9f Binary files /dev/null and b/supervise-crm-ui/src/assets/images/cdgl.png differ diff --git a/supervise-crm-ui/src/assets/images/cxjl.png b/supervise-crm-ui/src/assets/images/cxjl.png new file mode 100644 index 00000000..99285003 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/cxjl.png differ diff --git a/supervise-crm-ui/src/assets/images/czsc.png b/supervise-crm-ui/src/assets/images/czsc.png new file mode 100644 index 00000000..00a8f4f3 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/czsc.png differ diff --git a/supervise-crm-ui/src/assets/images/dwrysh.png b/supervise-crm-ui/src/assets/images/dwrysh.png new file mode 100644 index 00000000..f9804b7d Binary files /dev/null and b/supervise-crm-ui/src/assets/images/dwrysh.png differ diff --git a/supervise-crm-ui/src/assets/images/dwxxgl.png b/supervise-crm-ui/src/assets/images/dwxxgl.png new file mode 100644 index 00000000..c1d9769c Binary files /dev/null and b/supervise-crm-ui/src/assets/images/dwxxgl.png differ diff --git a/supervise-crm-ui/src/assets/images/dy.png b/supervise-crm-ui/src/assets/images/dy.png new file mode 100644 index 00000000..de8157ed Binary files /dev/null and b/supervise-crm-ui/src/assets/images/dy.png differ diff --git a/supervise-crm-ui/src/assets/images/head.png b/supervise-crm-ui/src/assets/images/head.png new file mode 100644 index 00000000..abd71010 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/head.png differ diff --git a/supervise-crm-ui/src/assets/images/info.png b/supervise-crm-ui/src/assets/images/info.png new file mode 100644 index 00000000..b681da30 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/info.png differ diff --git a/supervise-crm-ui/src/assets/images/jcxx.png b/supervise-crm-ui/src/assets/images/jcxx.png new file mode 100644 index 00000000..d9c40674 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/jcxx.png differ diff --git a/supervise-crm-ui/src/assets/images/jggl.png b/supervise-crm-ui/src/assets/images/jggl.png new file mode 100644 index 00000000..ab4c742f Binary files /dev/null and b/supervise-crm-ui/src/assets/images/jggl.png differ diff --git a/supervise-crm-ui/src/assets/images/jlsc.png b/supervise-crm-ui/src/assets/images/jlsc.png new file mode 100644 index 00000000..6061b81a Binary files /dev/null and b/supervise-crm-ui/src/assets/images/jlsc.png differ diff --git a/supervise-crm-ui/src/assets/images/jsgl.png b/supervise-crm-ui/src/assets/images/jsgl.png new file mode 100644 index 00000000..2da71f4e Binary files /dev/null and b/supervise-crm-ui/src/assets/images/jsgl.png differ diff --git a/supervise-crm-ui/src/assets/images/jsxd.png b/supervise-crm-ui/src/assets/images/jsxd.png new file mode 100644 index 00000000..e5b3ed04 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/jsxd.png differ diff --git a/supervise-crm-ui/src/assets/images/login/OAKQ.png b/supervise-crm-ui/src/assets/images/login/OAKQ.png new file mode 100644 index 00000000..d237cfb0 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/login/OAKQ.png differ diff --git a/supervise-crm-ui/src/assets/images/login/bg2-img.png b/supervise-crm-ui/src/assets/images/login/bg2-img.png new file mode 100644 index 00000000..b53bf40c Binary files /dev/null and b/supervise-crm-ui/src/assets/images/login/bg2-img.png differ diff --git a/supervise-crm-ui/src/assets/images/login/bgimg.jpg b/supervise-crm-ui/src/assets/images/login/bgimg.jpg new file mode 100644 index 00000000..1bd964a8 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/login/bgimg.jpg differ diff --git a/supervise-crm-ui/src/assets/images/login/nose.png b/supervise-crm-ui/src/assets/images/login/nose.png new file mode 100644 index 00000000..b6c8086a Binary files /dev/null and b/supervise-crm-ui/src/assets/images/login/nose.png differ diff --git a/supervise-crm-ui/src/assets/images/login/pasw.png b/supervise-crm-ui/src/assets/images/login/pasw.png new file mode 100644 index 00000000..5244bc45 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/login/pasw.png differ diff --git a/supervise-crm-ui/src/assets/images/login/user.png b/supervise-crm-ui/src/assets/images/login/user.png new file mode 100644 index 00000000..e3702145 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/login/user.png differ diff --git a/supervise-crm-ui/src/assets/images/lzrysh.png b/supervise-crm-ui/src/assets/images/lzrysh.png new file mode 100644 index 00000000..03125a11 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/lzrysh.png differ diff --git a/supervise-crm-ui/src/assets/images/org/headerimg.png b/supervise-crm-ui/src/assets/images/org/headerimg.png new file mode 100644 index 00000000..661f06b7 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/org/headerimg.png differ diff --git a/supervise-crm-ui/src/assets/images/org/jian.png b/supervise-crm-ui/src/assets/images/org/jian.png new file mode 100644 index 00000000..1e528b09 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/org/jian.png differ diff --git a/supervise-crm-ui/src/assets/images/org/sfz.png b/supervise-crm-ui/src/assets/images/org/sfz.png new file mode 100644 index 00000000..7f79b479 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/org/sfz.png differ diff --git a/supervise-crm-ui/src/assets/images/org/sqs.png b/supervise-crm-ui/src/assets/images/org/sqs.png new file mode 100644 index 00000000..8071e210 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/org/sqs.png differ diff --git a/supervise-crm-ui/src/assets/images/org/success.png b/supervise-crm-ui/src/assets/images/org/success.png new file mode 100644 index 00000000..6a54c319 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/org/success.png differ diff --git a/supervise-crm-ui/src/assets/images/org/yyzz.png b/supervise-crm-ui/src/assets/images/org/yyzz.png new file mode 100644 index 00000000..2a110199 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/org/yyzz.png differ diff --git a/supervise-crm-ui/src/assets/images/place.png b/supervise-crm-ui/src/assets/images/place.png new file mode 100644 index 00000000..5e36be9d Binary files /dev/null and b/supervise-crm-ui/src/assets/images/place.png differ diff --git a/supervise-crm-ui/src/assets/images/qjsh.png b/supervise-crm-ui/src/assets/images/qjsh.png new file mode 100644 index 00000000..85c2ce89 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/qjsh.png differ diff --git a/supervise-crm-ui/src/assets/images/ryda.png b/supervise-crm-ui/src/assets/images/ryda.png new file mode 100644 index 00000000..4cddf396 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/ryda.png differ diff --git a/supervise-crm-ui/src/assets/images/rzgl.png b/supervise-crm-ui/src/assets/images/rzgl.png new file mode 100644 index 00000000..068ae3bb Binary files /dev/null and b/supervise-crm-ui/src/assets/images/rzgl.png differ diff --git a/supervise-crm-ui/src/assets/images/select.png b/supervise-crm-ui/src/assets/images/select.png new file mode 100644 index 00000000..0a70ffa2 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/select.png differ diff --git a/supervise-crm-ui/src/assets/images/sjcc.png b/supervise-crm-ui/src/assets/images/sjcc.png new file mode 100644 index 00000000..6f01ae08 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/sjcc.png differ diff --git a/supervise-crm-ui/src/assets/images/sjzd.png b/supervise-crm-ui/src/assets/images/sjzd.png new file mode 100644 index 00000000..06af6b98 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/sjzd.png differ diff --git a/supervise-crm-ui/src/assets/images/tjfx.png b/supervise-crm-ui/src/assets/images/tjfx.png new file mode 100644 index 00000000..e097e3d1 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/tjfx.png differ diff --git a/supervise-crm-ui/src/assets/images/tjfx2.png b/supervise-crm-ui/src/assets/images/tjfx2.png new file mode 100644 index 00000000..681993c9 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/tjfx2.png differ diff --git a/supervise-crm-ui/src/assets/images/wenjian.png b/supervise-crm-ui/src/assets/images/wenjian.png new file mode 100644 index 00000000..163e441d Binary files /dev/null and b/supervise-crm-ui/src/assets/images/wenjian.png differ diff --git a/supervise-crm-ui/src/assets/images/xgmm.png b/supervise-crm-ui/src/assets/images/xgmm.png new file mode 100644 index 00000000..46b8d5c7 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/xgmm.png differ diff --git a/supervise-crm-ui/src/assets/images/xtbg.png b/supervise-crm-ui/src/assets/images/xtbg.png new file mode 100644 index 00000000..8ac2bfc3 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/xtbg.png differ diff --git a/supervise-crm-ui/src/assets/images/xtgl.png b/supervise-crm-ui/src/assets/images/xtgl.png new file mode 100644 index 00000000..2eeed54e Binary files /dev/null and b/supervise-crm-ui/src/assets/images/xtgl.png differ diff --git a/supervise-crm-ui/src/assets/images/xxzx.png b/supervise-crm-ui/src/assets/images/xxzx.png new file mode 100644 index 00000000..0e3c1501 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/xxzx.png differ diff --git a/supervise-crm-ui/src/assets/images/zwsm.png b/supervise-crm-ui/src/assets/images/zwsm.png new file mode 100644 index 00000000..94891693 Binary files /dev/null and b/supervise-crm-ui/src/assets/images/zwsm.png differ diff --git a/supervise-crm-ui/src/assets/loginImg/account.png b/supervise-crm-ui/src/assets/loginImg/account.png new file mode 100644 index 00000000..0531b4a1 Binary files /dev/null and b/supervise-crm-ui/src/assets/loginImg/account.png differ diff --git a/supervise-crm-ui/src/assets/loginImg/bgImg.png b/supervise-crm-ui/src/assets/loginImg/bgImg.png new file mode 100644 index 00000000..94dba71d Binary files /dev/null and b/supervise-crm-ui/src/assets/loginImg/bgImg.png differ diff --git a/supervise-crm-ui/src/assets/loginImg/logo.png b/supervise-crm-ui/src/assets/loginImg/logo.png new file mode 100644 index 00000000..a56f153d Binary files /dev/null and b/supervise-crm-ui/src/assets/loginImg/logo.png differ diff --git a/supervise-crm-ui/src/assets/loginImg/password.png b/supervise-crm-ui/src/assets/loginImg/password.png new file mode 100644 index 00000000..9426a011 Binary files /dev/null and b/supervise-crm-ui/src/assets/loginImg/password.png differ diff --git a/supervise-crm-ui/src/components/AreaPicker/index.vue b/supervise-crm-ui/src/components/AreaPicker/index.vue new file mode 100644 index 00000000..105c6475 --- /dev/null +++ b/supervise-crm-ui/src/components/AreaPicker/index.vue @@ -0,0 +1,151 @@ + + + + + + diff --git a/supervise-crm-ui/src/components/Breadcrumb/index.vue b/supervise-crm-ui/src/components/Breadcrumb/index.vue new file mode 100644 index 00000000..29f9a04c --- /dev/null +++ b/supervise-crm-ui/src/components/Breadcrumb/index.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/supervise-crm-ui/src/components/ButtonBar/index.vue b/supervise-crm-ui/src/components/ButtonBar/index.vue new file mode 100644 index 00000000..2024ee73 --- /dev/null +++ b/supervise-crm-ui/src/components/ButtonBar/index.vue @@ -0,0 +1,122 @@ + + + + + diff --git a/supervise-crm-ui/src/components/E-image/index.vue b/supervise-crm-ui/src/components/E-image/index.vue new file mode 100644 index 00000000..9401ce45 --- /dev/null +++ b/supervise-crm-ui/src/components/E-image/index.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/supervise-crm-ui/src/components/ErrorLog/index.vue b/supervise-crm-ui/src/components/ErrorLog/index.vue new file mode 100644 index 00000000..6119c037 --- /dev/null +++ b/supervise-crm-ui/src/components/ErrorLog/index.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/supervise-crm-ui/src/components/Hamburger/index.vue b/supervise-crm-ui/src/components/Hamburger/index.vue new file mode 100644 index 00000000..368b0021 --- /dev/null +++ b/supervise-crm-ui/src/components/Hamburger/index.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/supervise-crm-ui/src/components/Screenfull/index.vue b/supervise-crm-ui/src/components/Screenfull/index.vue new file mode 100644 index 00000000..47356045 --- /dev/null +++ b/supervise-crm-ui/src/components/Screenfull/index.vue @@ -0,0 +1,59 @@ + + + + + diff --git a/supervise-crm-ui/src/components/SizeSelect/index.vue b/supervise-crm-ui/src/components/SizeSelect/index.vue new file mode 100644 index 00000000..e88065b4 --- /dev/null +++ b/supervise-crm-ui/src/components/SizeSelect/index.vue @@ -0,0 +1,57 @@ + + + diff --git a/supervise-crm-ui/src/components/SvgIcon/index.vue b/supervise-crm-ui/src/components/SvgIcon/index.vue new file mode 100644 index 00000000..b07ded2a --- /dev/null +++ b/supervise-crm-ui/src/components/SvgIcon/index.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/supervise-crm-ui/src/components/ThemePicker/index.vue b/supervise-crm-ui/src/components/ThemePicker/index.vue new file mode 100644 index 00000000..3879c5ad --- /dev/null +++ b/supervise-crm-ui/src/components/ThemePicker/index.vue @@ -0,0 +1,175 @@ + + + + + diff --git a/supervise-crm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue b/supervise-crm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue new file mode 100644 index 00000000..c24ec4b4 --- /dev/null +++ b/supervise-crm-ui/src/components/VehicleConfigurationSub/vehicleconfiguration.vue @@ -0,0 +1,368 @@ + + + + diff --git a/supervise-crm-ui/src/components/amap/amap.vue b/supervise-crm-ui/src/components/amap/amap.vue new file mode 100644 index 00000000..c7d643c4 --- /dev/null +++ b/supervise-crm-ui/src/components/amap/amap.vue @@ -0,0 +1,224 @@ + + + + + diff --git a/supervise-crm-ui/src/components/imgCodeRole/index.vue b/supervise-crm-ui/src/components/imgCodeRole/index.vue new file mode 100644 index 00000000..852d9f32 --- /dev/null +++ b/supervise-crm-ui/src/components/imgCodeRole/index.vue @@ -0,0 +1,149 @@ + + + + + diff --git a/supervise-crm-ui/src/components/pagination/index.vue b/supervise-crm-ui/src/components/pagination/index.vue new file mode 100644 index 00000000..29d8bc8c --- /dev/null +++ b/supervise-crm-ui/src/components/pagination/index.vue @@ -0,0 +1,136 @@ + + + + + diff --git a/supervise-crm-ui/src/components/pagination/pageye.vue b/supervise-crm-ui/src/components/pagination/pageye.vue new file mode 100644 index 00000000..c69dca4b --- /dev/null +++ b/supervise-crm-ui/src/components/pagination/pageye.vue @@ -0,0 +1,142 @@ + + + + + diff --git a/supervise-crm-ui/src/components/passwordSafe/index.vue b/supervise-crm-ui/src/components/passwordSafe/index.vue new file mode 100644 index 00000000..847af1bc --- /dev/null +++ b/supervise-crm-ui/src/components/passwordSafe/index.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/supervise-crm-ui/src/components/tab-search/index.vue b/supervise-crm-ui/src/components/tab-search/index.vue new file mode 100644 index 00000000..d0f1bfea --- /dev/null +++ b/supervise-crm-ui/src/components/tab-search/index.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/FaImages.vue b/supervise-crm-ui/src/components/uploadFile/FaImages.vue new file mode 100644 index 00000000..492f4dd2 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/FaImages.vue @@ -0,0 +1,166 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/FileUpload.vue b/supervise-crm-ui/src/components/uploadFile/FileUpload.vue new file mode 100644 index 00000000..7f5fba3f --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/FileUpload.vue @@ -0,0 +1,165 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/ImageUpload.vue b/supervise-crm-ui/src/components/uploadFile/ImageUpload.vue new file mode 100644 index 00000000..cadd39d8 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/ImageUpload.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/ImageUploadChe.vue b/supervise-crm-ui/src/components/uploadFile/ImageUploadChe.vue new file mode 100644 index 00000000..7ef250bb --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/ImageUploadChe.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/ManyImageUpload.vue b/supervise-crm-ui/src/components/uploadFile/ManyImageUpload.vue new file mode 100644 index 00000000..db0daf1c --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/ManyImageUpload.vue @@ -0,0 +1,214 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/index.vue b/supervise-crm-ui/src/components/uploadFile/index.vue new file mode 100644 index 00000000..1b2b36b3 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/index.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload.vue b/supervise-crm-ui/src/components/uploadFile/upload.vue new file mode 100644 index 00000000..a554e94d --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload.vue @@ -0,0 +1,252 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/uploadImg.vue b/supervise-crm-ui/src/components/uploadFile/uploadImg.vue new file mode 100644 index 00000000..bbca8274 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/uploadImg.vue @@ -0,0 +1,244 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_changjiatuku.vue b/supervise-crm-ui/src/components/uploadFile/upload_changjiatuku.vue new file mode 100644 index 00000000..2c438bae --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_changjiatuku.vue @@ -0,0 +1,229 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_chexing.vue b/supervise-crm-ui/src/components/uploadFile/upload_chexing.vue new file mode 100644 index 00000000..30a8108e --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_chexing.vue @@ -0,0 +1,242 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_cunfang.vue b/supervise-crm-ui/src/components/uploadFile/upload_cunfang.vue new file mode 100644 index 00000000..dc7999d8 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_cunfang.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_diaoche.vue b/supervise-crm-ui/src/components/uploadFile/upload_diaoche.vue new file mode 100644 index 00000000..15794cd6 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_diaoche.vue @@ -0,0 +1,242 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_jianchabiao.vue b/supervise-crm-ui/src/components/uploadFile/upload_jianchabiao.vue new file mode 100644 index 00000000..3958a508 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_jianchabiao.vue @@ -0,0 +1,237 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_maiduan.vue b/supervise-crm-ui/src/components/uploadFile/upload_maiduan.vue new file mode 100644 index 00000000..f96cae33 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_maiduan.vue @@ -0,0 +1,243 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_morebypicture.vue b/supervise-crm-ui/src/components/uploadFile/upload_morebypicture.vue new file mode 100644 index 00000000..e62b85e4 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_morebypicture.vue @@ -0,0 +1,165 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_picture.vue b/supervise-crm-ui/src/components/uploadFile/upload_picture.vue new file mode 100644 index 00000000..fbdfe60f --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_picture.vue @@ -0,0 +1,245 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_yanchejiancha.vue b/supervise-crm-ui/src/components/uploadFile/upload_yanchejiancha.vue new file mode 100644 index 00000000..0e4c37ce --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_yanchejiancha.vue @@ -0,0 +1,230 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFile/upload_yanchejianchaTuBiao.vue b/supervise-crm-ui/src/components/uploadFile/upload_yanchejianchaTuBiao.vue new file mode 100644 index 00000000..b7c1089a --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFile/upload_yanchejianchaTuBiao.vue @@ -0,0 +1,222 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFileimg/index.vue b/supervise-crm-ui/src/components/uploadFileimg/index.vue new file mode 100644 index 00000000..25c53d72 --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFileimg/index.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/supervise-crm-ui/src/components/uploadFileimg/upload.vue b/supervise-crm-ui/src/components/uploadFileimg/upload.vue new file mode 100644 index 00000000..e65f30cf --- /dev/null +++ b/supervise-crm-ui/src/components/uploadFileimg/upload.vue @@ -0,0 +1,242 @@ + + + + + diff --git a/supervise-crm-ui/src/components/viewerjs/index.vue b/supervise-crm-ui/src/components/viewerjs/index.vue new file mode 100644 index 00000000..3d6f8415 --- /dev/null +++ b/supervise-crm-ui/src/components/viewerjs/index.vue @@ -0,0 +1,55 @@ + + + + + diff --git a/supervise-crm-ui/src/icons/index.js b/supervise-crm-ui/src/icons/index.js new file mode 100644 index 00000000..2c6b309c --- /dev/null +++ b/supervise-crm-ui/src/icons/index.js @@ -0,0 +1,9 @@ +import Vue from 'vue' +import SvgIcon from '@/components/SvgIcon'// svg component + +// register globally +Vue.component('svg-icon', SvgIcon) + +const req = require.context('./svg', false, /\.svg$/) +const requireAll = requireContext => requireContext.keys().map(requireContext) +requireAll(req) diff --git a/supervise-crm-ui/src/icons/svg/404.svg b/supervise-crm-ui/src/icons/svg/404.svg new file mode 100644 index 00000000..6df50190 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/Import.svg b/supervise-crm-ui/src/icons/svg/Import.svg new file mode 100644 index 00000000..184327c5 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/Import.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/RMB.svg b/supervise-crm-ui/src/icons/svg/RMB.svg new file mode 100644 index 00000000..d12196a8 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/RMB.svg @@ -0,0 +1,2 @@ + diff --git a/supervise-crm-ui/src/icons/svg/bug.svg b/supervise-crm-ui/src/icons/svg/bug.svg new file mode 100644 index 00000000..05a150dc --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/build.svg b/supervise-crm-ui/src/icons/svg/build.svg new file mode 100644 index 00000000..97c46886 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/button.svg b/supervise-crm-ui/src/icons/svg/button.svg new file mode 100644 index 00000000..904fddc8 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/cascader.svg b/supervise-crm-ui/src/icons/svg/cascader.svg new file mode 100644 index 00000000..e256024f --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/cascader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/chart.svg b/supervise-crm-ui/src/icons/svg/chart.svg new file mode 100644 index 00000000..27728fb0 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/checkbox.svg b/supervise-crm-ui/src/icons/svg/checkbox.svg new file mode 100644 index 00000000..013fd3a2 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/clipboard.svg b/supervise-crm-ui/src/icons/svg/clipboard.svg new file mode 100644 index 00000000..90923ff6 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/code.svg b/supervise-crm-ui/src/icons/svg/code.svg new file mode 100644 index 00000000..ed4d23cf --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/color.svg b/supervise-crm-ui/src/icons/svg/color.svg new file mode 100644 index 00000000..44a81aab --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/component.svg b/supervise-crm-ui/src/icons/svg/component.svg new file mode 100644 index 00000000..207ada34 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/component.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/cross.svg b/supervise-crm-ui/src/icons/svg/cross.svg new file mode 100644 index 00000000..277d8651 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/cross.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/dashboard.svg b/supervise-crm-ui/src/icons/svg/dashboard.svg new file mode 100644 index 00000000..5317d370 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/date-range.svg b/supervise-crm-ui/src/icons/svg/date-range.svg new file mode 100644 index 00000000..fda571e7 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/date-range.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/date.svg b/supervise-crm-ui/src/icons/svg/date.svg new file mode 100644 index 00000000..52dc73ee --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/date.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/del.svg b/supervise-crm-ui/src/icons/svg/del.svg new file mode 100644 index 00000000..7c5e8e21 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/del.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/dict.svg b/supervise-crm-ui/src/icons/svg/dict.svg new file mode 100644 index 00000000..48493773 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/dict.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/documentation.svg b/supervise-crm-ui/src/icons/svg/documentation.svg new file mode 100644 index 00000000..70431228 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/documentation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/download.svg b/supervise-crm-ui/src/icons/svg/download.svg new file mode 100644 index 00000000..c8969513 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/drag.svg b/supervise-crm-ui/src/icons/svg/drag.svg new file mode 100644 index 00000000..4185d3ce --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/drag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/druid.svg b/supervise-crm-ui/src/icons/svg/druid.svg new file mode 100644 index 00000000..a2b4b4ed --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/druid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/edit.svg b/supervise-crm-ui/src/icons/svg/edit.svg new file mode 100644 index 00000000..3a753f9e --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/edit.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/education.svg b/supervise-crm-ui/src/icons/svg/education.svg new file mode 100644 index 00000000..7bfb01d1 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/education.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/email.svg b/supervise-crm-ui/src/icons/svg/email.svg new file mode 100644 index 00000000..74d25e21 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/email.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/example.svg b/supervise-crm-ui/src/icons/svg/example.svg new file mode 100644 index 00000000..46f42b53 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/example.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/excel.svg b/supervise-crm-ui/src/icons/svg/excel.svg new file mode 100644 index 00000000..74d97b80 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/exit-fullscreen.svg b/supervise-crm-ui/src/icons/svg/exit-fullscreen.svg new file mode 100644 index 00000000..485c128b --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/exit-fullscreen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/export.svg b/supervise-crm-ui/src/icons/svg/export.svg new file mode 100644 index 00000000..5354b7de --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/export.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/exwarehouse.svg b/supervise-crm-ui/src/icons/svg/exwarehouse.svg new file mode 100644 index 00000000..2b6092c4 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/exwarehouse.svg @@ -0,0 +1,2 @@ + diff --git a/supervise-crm-ui/src/icons/svg/eye-open.svg b/supervise-crm-ui/src/icons/svg/eye-open.svg new file mode 100644 index 00000000..88dcc98e --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/eye-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/eye.svg b/supervise-crm-ui/src/icons/svg/eye.svg new file mode 100644 index 00000000..16ed2d87 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/form.svg b/supervise-crm-ui/src/icons/svg/form.svg new file mode 100644 index 00000000..dcbaa185 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/form.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/fullscreen.svg b/supervise-crm-ui/src/icons/svg/fullscreen.svg new file mode 100644 index 00000000..0e86b6fa --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/fullscreen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/github.svg b/supervise-crm-ui/src/icons/svg/github.svg new file mode 100644 index 00000000..db0a0d43 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/guide.svg b/supervise-crm-ui/src/icons/svg/guide.svg new file mode 100644 index 00000000..b2710017 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/guide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/icon.svg b/supervise-crm-ui/src/icons/svg/icon.svg new file mode 100644 index 00000000..82be8eee --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/input.svg b/supervise-crm-ui/src/icons/svg/input.svg new file mode 100644 index 00000000..ab91381e --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/input.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/international.svg b/supervise-crm-ui/src/icons/svg/international.svg new file mode 100644 index 00000000..e9b56eee --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/international.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/job.svg b/supervise-crm-ui/src/icons/svg/job.svg new file mode 100644 index 00000000..2a93a251 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/job.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/language.svg b/supervise-crm-ui/src/icons/svg/language.svg new file mode 100644 index 00000000..0082b577 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/link.svg b/supervise-crm-ui/src/icons/svg/link.svg new file mode 100644 index 00000000..48197ba4 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/list.svg b/supervise-crm-ui/src/icons/svg/list.svg new file mode 100644 index 00000000..20259edd --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/lock.svg b/supervise-crm-ui/src/icons/svg/lock.svg new file mode 100644 index 00000000..74fee543 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/log.svg b/supervise-crm-ui/src/icons/svg/log.svg new file mode 100644 index 00000000..d879d33b --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/log.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/logininfor.svg b/supervise-crm-ui/src/icons/svg/logininfor.svg new file mode 100644 index 00000000..267f8447 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/logininfor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/message.svg b/supervise-crm-ui/src/icons/svg/message.svg new file mode 100644 index 00000000..14ca8172 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/money.svg b/supervise-crm-ui/src/icons/svg/money.svg new file mode 100644 index 00000000..c1580de1 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/money.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/monitor.svg b/supervise-crm-ui/src/icons/svg/monitor.svg new file mode 100644 index 00000000..bc308cb0 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/monitor.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/nested.svg b/supervise-crm-ui/src/icons/svg/nested.svg new file mode 100644 index 00000000..06713a86 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/nested.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/number.svg b/supervise-crm-ui/src/icons/svg/number.svg new file mode 100644 index 00000000..ad5ce9af --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/number.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/online.svg b/supervise-crm-ui/src/icons/svg/online.svg new file mode 100644 index 00000000..330a2029 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/online.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/password.svg b/supervise-crm-ui/src/icons/svg/password.svg new file mode 100644 index 00000000..e291d85d --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/password.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/pdf.svg b/supervise-crm-ui/src/icons/svg/pdf.svg new file mode 100644 index 00000000..957aa0cc --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/people.svg b/supervise-crm-ui/src/icons/svg/people.svg new file mode 100644 index 00000000..2bd54aeb --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/peoples.svg b/supervise-crm-ui/src/icons/svg/peoples.svg new file mode 100644 index 00000000..aab852e5 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/peoples.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/phone.svg b/supervise-crm-ui/src/icons/svg/phone.svg new file mode 100644 index 00000000..ab8e8c4e --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/plus.svg b/supervise-crm-ui/src/icons/svg/plus.svg new file mode 100644 index 00000000..ab7b62f5 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/plus.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/post.svg b/supervise-crm-ui/src/icons/svg/post.svg new file mode 100644 index 00000000..2922c613 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/post.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/qq.svg b/supervise-crm-ui/src/icons/svg/qq.svg new file mode 100644 index 00000000..ee13d4ec --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/qq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/question.svg b/supervise-crm-ui/src/icons/svg/question.svg new file mode 100644 index 00000000..cf75bd4b --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/radio.svg b/supervise-crm-ui/src/icons/svg/radio.svg new file mode 100644 index 00000000..0cde3452 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/rate.svg b/supervise-crm-ui/src/icons/svg/rate.svg new file mode 100644 index 00000000..aa3b14d7 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/rate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/redis.svg b/supervise-crm-ui/src/icons/svg/redis.svg new file mode 100644 index 00000000..2f1d62df --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/redis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/row.svg b/supervise-crm-ui/src/icons/svg/row.svg new file mode 100644 index 00000000..07809922 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/row.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/search.svg b/supervise-crm-ui/src/icons/svg/search.svg new file mode 100644 index 00000000..84233dda --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/select.svg b/supervise-crm-ui/src/icons/svg/select.svg new file mode 100644 index 00000000..d6283828 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/select.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/server.svg b/supervise-crm-ui/src/icons/svg/server.svg new file mode 100644 index 00000000..ca37b001 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/shopping.svg b/supervise-crm-ui/src/icons/svg/shopping.svg new file mode 100644 index 00000000..87513e7c --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/shopping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/size.svg b/supervise-crm-ui/src/icons/svg/size.svg new file mode 100644 index 00000000..ddb25b8d --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/skill.svg b/supervise-crm-ui/src/icons/svg/skill.svg new file mode 100644 index 00000000..a3b73121 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/skill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/slider.svg b/supervise-crm-ui/src/icons/svg/slider.svg new file mode 100644 index 00000000..fbe4f39f --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/slider.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/star.svg b/supervise-crm-ui/src/icons/svg/star.svg new file mode 100644 index 00000000..6cf86e66 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/submit.svg b/supervise-crm-ui/src/icons/svg/submit.svg new file mode 100644 index 00000000..e2a29576 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/submit.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/swagger.svg b/supervise-crm-ui/src/icons/svg/swagger.svg new file mode 100644 index 00000000..05d4e7bc --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/swagger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/switch.svg b/supervise-crm-ui/src/icons/svg/switch.svg new file mode 100644 index 00000000..0ba61e38 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/system.svg b/supervise-crm-ui/src/icons/svg/system.svg new file mode 100644 index 00000000..dba28cf6 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/system.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/tab.svg b/supervise-crm-ui/src/icons/svg/tab.svg new file mode 100644 index 00000000..b4b48e48 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/table.svg b/supervise-crm-ui/src/icons/svg/table.svg new file mode 100644 index 00000000..0e3dc9de --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/textarea.svg b/supervise-crm-ui/src/icons/svg/textarea.svg new file mode 100644 index 00000000..2709f292 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/textarea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/theme.svg b/supervise-crm-ui/src/icons/svg/theme.svg new file mode 100644 index 00000000..5982a2f7 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/theme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/time-range.svg b/supervise-crm-ui/src/icons/svg/time-range.svg new file mode 100644 index 00000000..13c1202b --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/time-range.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/time.svg b/supervise-crm-ui/src/icons/svg/time.svg new file mode 100644 index 00000000..b376e32a --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/tool.svg b/supervise-crm-ui/src/icons/svg/tool.svg new file mode 100644 index 00000000..c813067e --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/tree-table.svg b/supervise-crm-ui/src/icons/svg/tree-table.svg new file mode 100644 index 00000000..8aafdb82 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/tree-table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/tree.svg b/supervise-crm-ui/src/icons/svg/tree.svg new file mode 100644 index 00000000..dd4b7dd2 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/upload.svg b/supervise-crm-ui/src/icons/svg/upload.svg new file mode 100644 index 00000000..bae49c0a --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/user.svg b/supervise-crm-ui/src/icons/svg/user.svg new file mode 100644 index 00000000..0ba0716a --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/validCode.svg b/supervise-crm-ui/src/icons/svg/validCode.svg new file mode 100644 index 00000000..cfb10214 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/validCode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/wechat.svg b/supervise-crm-ui/src/icons/svg/wechat.svg new file mode 100644 index 00000000..c586e551 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/wechat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svg/zip.svg b/supervise-crm-ui/src/icons/svg/zip.svg new file mode 100644 index 00000000..f806fc48 --- /dev/null +++ b/supervise-crm-ui/src/icons/svg/zip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/supervise-crm-ui/src/icons/svgo.yml b/supervise-crm-ui/src/icons/svgo.yml new file mode 100644 index 00000000..d11906ae --- /dev/null +++ b/supervise-crm-ui/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/supervise-crm-ui/src/layout/components/AppMain.vue b/supervise-crm-ui/src/layout/components/AppMain.vue new file mode 100644 index 00000000..966c6c40 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/AppMain.vue @@ -0,0 +1,48 @@ + + + + + + + diff --git a/supervise-crm-ui/src/layout/components/Navbar.vue b/supervise-crm-ui/src/layout/components/Navbar.vue new file mode 100644 index 00000000..3f5fd403 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Navbar.vue @@ -0,0 +1,166 @@ + + + + + diff --git a/supervise-crm-ui/src/layout/components/Sidebar/FixiOSBug.js b/supervise-crm-ui/src/layout/components/Sidebar/FixiOSBug.js new file mode 100644 index 00000000..bc14856f --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Sidebar/FixiOSBug.js @@ -0,0 +1,26 @@ +export default { + computed: { + device() { + return this.$store.state.app.device + } + }, + mounted() { + // In order to fix the click on menu on the ios device will trigger the mouseleave bug + // https://github.com/PanJiaChen/vue-element-admin/issues/1135 + this.fixBugIniOS() + }, + methods: { + fixBugIniOS() { + const $subMenu = this.$refs.subMenu + if ($subMenu) { + const handleMouseleave = $subMenu.handleMouseleave + $subMenu.handleMouseleave = (e) => { + if (this.device === 'mobile') { + return + } + handleMouseleave(e) + } + } + } + } +} diff --git a/supervise-crm-ui/src/layout/components/Sidebar/Item.vue b/supervise-crm-ui/src/layout/components/Sidebar/Item.vue new file mode 100644 index 00000000..aa1f5da4 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Sidebar/Item.vue @@ -0,0 +1,41 @@ + + + diff --git a/supervise-crm-ui/src/layout/components/Sidebar/Link.vue b/supervise-crm-ui/src/layout/components/Sidebar/Link.vue new file mode 100644 index 00000000..530b3d5b --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Sidebar/Link.vue @@ -0,0 +1,43 @@ + + + diff --git a/supervise-crm-ui/src/layout/components/Sidebar/Logo.vue b/supervise-crm-ui/src/layout/components/Sidebar/Logo.vue new file mode 100644 index 00000000..040fab64 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Sidebar/Logo.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/supervise-crm-ui/src/layout/components/Sidebar/SidebarItem.vue b/supervise-crm-ui/src/layout/components/Sidebar/SidebarItem.vue new file mode 100644 index 00000000..9545e6d6 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Sidebar/SidebarItem.vue @@ -0,0 +1,117 @@ + + + + diff --git a/supervise-crm-ui/src/layout/components/Sidebar/index.vue b/supervise-crm-ui/src/layout/components/Sidebar/index.vue new file mode 100644 index 00000000..ca588233 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/Sidebar/index.vue @@ -0,0 +1,132 @@ + + + diff --git a/supervise-crm-ui/src/layout/components/TagsView/ScrollPane.vue b/supervise-crm-ui/src/layout/components/TagsView/ScrollPane.vue new file mode 100644 index 00000000..e8d682bd --- /dev/null +++ b/supervise-crm-ui/src/layout/components/TagsView/ScrollPane.vue @@ -0,0 +1,87 @@ + + + + + \ No newline at end of file diff --git a/supervise-crm-ui/src/layout/components/TagsView/index.vue b/supervise-crm-ui/src/layout/components/TagsView/index.vue new file mode 100644 index 00000000..487d00a1 --- /dev/null +++ b/supervise-crm-ui/src/layout/components/TagsView/index.vue @@ -0,0 +1,333 @@ + + + + + + + diff --git a/supervise-crm-ui/src/layout/components/index.js b/supervise-crm-ui/src/layout/components/index.js new file mode 100644 index 00000000..686faf6f --- /dev/null +++ b/supervise-crm-ui/src/layout/components/index.js @@ -0,0 +1,4 @@ +export { default as Navbar } from './Navbar' +export { default as Sidebar } from './Sidebar' +export { default as AppMain } from './AppMain' +export { default as TagsView } from './TagsView/index.vue' diff --git a/supervise-crm-ui/src/layout/index.vue b/supervise-crm-ui/src/layout/index.vue new file mode 100644 index 00000000..4254e872 --- /dev/null +++ b/supervise-crm-ui/src/layout/index.vue @@ -0,0 +1,114 @@ + + + + + diff --git a/supervise-crm-ui/src/layout/mixin/ResizeHandler.js b/supervise-crm-ui/src/layout/mixin/ResizeHandler.js new file mode 100644 index 00000000..e8d0df8c --- /dev/null +++ b/supervise-crm-ui/src/layout/mixin/ResizeHandler.js @@ -0,0 +1,45 @@ +import store from '@/store' + +const { body } = document +const WIDTH = 992 // refer to Bootstrap's responsive design + +export default { + watch: { + $route(route) { + if (this.device === 'mobile' && this.sidebar.opened) { + store.dispatch('app/closeSideBar', { withoutAnimation: false }) + } + } + }, + beforeMount() { + window.addEventListener('resize', this.$_resizeHandler) + }, + beforeDestroy() { + window.removeEventListener('resize', this.$_resizeHandler) + }, + mounted() { + const isMobile = this.$_isMobile() + if (isMobile) { + store.dispatch('app/toggleDevice', 'mobile') + store.dispatch('app/closeSideBar', { withoutAnimation: true }) + } + }, + methods: { + // use $_ for mixins properties + // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential + $_isMobile() { + const rect = body.getBoundingClientRect() + return rect.width - 1 < WIDTH + }, + $_resizeHandler() { + if (!document.hidden) { + const isMobile = this.$_isMobile() + store.dispatch('app/toggleDevice', isMobile ? 'mobile' : 'desktop') + + if (isMobile) { + store.dispatch('app/closeSideBar', { withoutAnimation: true }) + } + } + } + } +} diff --git a/supervise-crm-ui/src/main.js b/supervise-crm-ui/src/main.js new file mode 100644 index 00000000..cac4571a --- /dev/null +++ b/supervise-crm-ui/src/main.js @@ -0,0 +1,130 @@ +import 'babel-polyfill' +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文件夹下所有的svg +// 全局自定义组件 +import Pagination from '@/components/pagination/index.vue' +import tabsearch from '@/components/tab-search/index.vue' +import eimage from '@/components/E-image/index.vue' +import moment from 'moment' +import Print from '@/utils/print' // 引入附件的js文件 +import request from '@/utils/request' +import { setDefaultOrgPath, setDefaultOrgPathName, setStorage } from './utils/auth.js' +import VueAMap from 'vue-amap' + +Vue.use(ElementUI) + +// import '@/permission' //权限控制 + +Vue.prototype.$userInfo = null // 用户信息 +Vue.component('Pagination', Pagination) +Vue.component('tab-search', tabsearch) +Vue.component('eimage', eimage) +Vue.prototype.moment = moment +Vue.filter('dateFormat', function(dateStr, pattern = 'YYYY-MM-DD') { + return moment(dateStr).format(pattern) +}) +Vue.use(Print) // 注册 + +Vue.use(VueAMap) +VueAMap.initAMapApiLoader({ + key: 'ccda12d8bffc72e9f1a32c599323a876', // 此处的key,在高德开放平台申请 + plugin: ['AMap.Scale', 'AMap.OverView', 'AMap.ToolBar', 'AMap.MapType', 'AMap.PlaceSearch', 'AMap.Geolocation', 'AMap.Geocoder'], // 此处的插件按需添加 + v: '1.4.4', + uiVersion: '1.0' +}) + +Vue.config.productionTip = false + +let token = null +token = GetQueryString('token') +if (token) { + setStorage(token) + const href = window.location.href +// href = href.split(`token=${token}`)[0] +// window.location.href = href.slice(0, href.length - 1) +} + +var one = window.location.href.indexOf('&organizationData') + 18 +if (parseInt(one) > 18) { + const data = window.location.href.substr(one) // url解码unescape()已从web中移除,尽量不使用 + var data1 = decodeURIComponent(data) + if (data1 !== undefined) { + const obj = JSON.parse(data1) + setDefaultOrgPath(obj.defaultOrgPath) + setDefaultOrgPathName(obj.defaultOrgPathName) + } +} + +// 获取登录用户信息 +function getUserInfo() { + return request({ + baseURL: '/api', + url: '/portal/v1/sysuser/loginDetails', + method: 'post', + headers: { + 'Content-Type': 'application/json' + } + }).then(rep => { + const data = rep.data + const user = { + roleSid: data.roleSid, + name: data.name, + userName: data.userName, + departmentName: data.departmentName, // 部门名称 + departmentSid: data.departmentSid, // 部门sid + isAdmin: data.isAdmin, + staffSid: data.staffSid, // 业务员sid + userSid: data.sid, + orgSid: data.organizationSid, // 单位sid + Orgname: data.organizationName, + dwjb: data.dwjb, + orgNamePath: data.orgNamePath, // 使用组织全路径名称 + orgSidPath: data.orgSidPath // 使用组织全路径Sid + } + // 结果存入缓存 + window.sessionStorage.setItem('staffSid', user.staffSid) + window.sessionStorage.setItem('userSid', user.userSid) + window.sessionStorage.setItem('Orgname', user.Orgname) + window.sessionStorage.setItem('orgSid', user.orgSid) + window.sessionStorage.setItem('departmentName', user.departmentName) + window.sessionStorage.setItem('name', user.name) + window.sessionStorage.setItem('user', user) + window.sessionStorage.setItem('departmentName', user.departmentName) + window.sessionStorage.setItem('departmentSid', user.departmentSid) + window.sessionStorage.setItem('orgNamePath', user.orgNamePath) + window.sessionStorage.setItem('orgSidPath', user.orgSidPath) + new Vue({ + el: '#app', + router, + store, + render: h => h(App) + }) + }) +} + +getUserInfo() +function GetQueryString(name) { + var one = window.location.href.indexOf('?token=') + 7 + if (one < 7) { return null } + var two = window.location.href.lastIndexOf('&') // + 1 + var data = window.location.href.substr(one) + if (two > one) { + data = window.location.href.slice(one, two) + console.log('token', data) + } + if (data) { + return data + } + return null + // var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)') + // var r = window.location.search.substr(1).match(reg) + // if (r != null) return unescape(r[2]); return null +} diff --git a/supervise-crm-ui/src/permission.js b/supervise-crm-ui/src/permission.js new file mode 100644 index 00000000..d9ee6a5d --- /dev/null +++ b/supervise-crm-ui/src/permission.js @@ -0,0 +1,39 @@ +import router from './router' +import store from './store' +import NProgress from 'nprogress' // progress bar +import 'nprogress/nprogress.css' // progress bar style +import getPageTitle from '@/utils/get-page-title' +NProgress.configure({ showSpinner: false }) // NProgress Configuration + +import { getRoleRouter } from '@/router/modules/components.js' + +const whiteList = ['/login', '/registUser', '/registOrg'] // 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 = getStorage() + const hasToken = window.sessionStorage.getItem('token') + if (hasToken) { + const userInfo = store.getters.userInfo + if (userInfo) { + next() + NProgress.done() + } else { + await store.dispatch('user/getInfo') + let userRoles = await getRoleRouter(store.getters.userInfo.userSid) + router.options.routes = userRoles + router.addRoutes(userRoles) // 动态添加可访问路由表 + next({ ...to, replace: true }) // hack方法 确保addRoutes已完成 ,set the replace: + } + } else { + window.location.href = process.env.VUE_APP_URL + } +}) +router.afterEach(() => { + // finish progress bar + NProgress.done() +}) diff --git a/supervise-crm-ui/src/router/index.js b/supervise-crm-ui/src/router/index.js new file mode 100644 index 00000000..1f4b3085 --- /dev/null +++ b/supervise-crm-ui/src/router/index.js @@ -0,0 +1,76 @@ +import Vue from 'vue' +import Router from 'vue-router' + +Vue.use(Router) + +/* Layout */ +import Layout from '@/layout' +/* 所有角色可以访问/没有权限要求的基页 */ + +import codemenu from './modules/codemenu' + +export const constantRoutes = [ + { + path: '/redirect', + component: Layout, + hidden: true, + children: [{ + path: '/redirect/:path(.*)', + component: () => import('@/views/redirect/index.vue') + }] + }, + { + path: '/', + redirect: 'index' + }, { + path: '/login', + component: () => import('@/views/login/login.vue') + }, { + path: '/home', + component: () => import('@/views/Home/Home.vue'), + name: 'home' + + }, { + path: '/index', + component: Layout, + redirect: '/index', + children: [{ + path: '/index', + component: () => + import('@/views/index.vue'), + name: 'index', + meta: { + title: '主页', + noCache: true, + affix: true + } + }] + }, + ...codemenu, + { + path: '/404', + component: () => + import('@/views/404'), + hidden: true + } + // 404 page must be placed at the end !!! + // { path: '*', redirect: '/404', hidden: true } +] + +const createRouter = () => new Router({ + // mode: 'history', // require service support + scrollBehavior: () => ({ + y: 0 + }), + routes: constantRoutes +}) + +const router = createRouter() + +// Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465 +export function resetRouter() { + const newRouter = createRouter() + router.matcher = newRouter.matcher // reset router +} + +export default router diff --git a/supervise-crm-ui/src/router/modules/codemenu.js b/supervise-crm-ui/src/router/modules/codemenu.js new file mode 100644 index 00000000..07233924 --- /dev/null +++ b/supervise-crm-ui/src/router/modules/codemenu.js @@ -0,0 +1,197 @@ +import Layout from '@/layout' + +const codemenu = [{ + path: '/kucunyksq', + component: Layout, + redirect: '/khzxyksq/index', + children: [{ + path: '/khzxyksq/index', + component: () => import('@/views/supervise/purchaseapplicationmanagement/yksq.vue'), + name: 'khzxyksq', + meta: { + title: '用款申请', + noCache: true + } + }] +}, { + path: '/kucuncgsq', + component: Layout, + redirect: '/khzxcgsq/index', + children: [{ + path: '/khzxcgsq/index', + component: () => import('@/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementAdd.vue'), + name: 'PurchaseApplicationManagementAdd', + meta: { + title: '采购申请', + noCache: true + } + }] +}, { + path: '/kucuncgsq', + component: Layout, + redirect: '/tobaccopurchaseapplication', + children: [{ + path: '/tobaccopurchaseapplication', + component: () => import('@/views/supervise/tobaccopurchaseapplication/tobaccopurchaseapplicationAdd.vue'), + name: 'ToBaccopurchaseApplicationAdd', + meta: { + title: '烟草采购申请', + noCache: true + } + }] +}, { + path: '/kucuncgsqcx', + component: Layout, + redirect: '/khzxcgsq/cx', + children: [{ + path: '/khzxcgsq/cx', + component: () => import('@/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagement.vue'), + name: 'purchaseapplicationmanagementcx', + meta: { + title: '采购申请查询', + noCache: true + } + }] +}, { + path: '/kucungysgl', + component: Layout, + redirect: '/khzxgysgl/index', + children: [{ + path: '/khzxgysgl/index', + component: () => import('@/views/supervise/supplierbankinfo/supplierbankinfo.vue'), + name: 'supplierManagement', + meta: { + title: '供应商管理', + noCache: true + } + }] +}, { + path: '/kucunsjsb', + component: Layout, + redirect: '/kucun/rkmx/index', + meta: { + title: '数据上报' + }, + children: [{ + path: '/kucun/zhsj/index', + component: () => import('@/views/kucun/zhsj/index.vue'), + name: 'zhsjsb', + meta: { + title: '综合数据上报', + noCache: true + } + }, { + path: '/kucun/rkmx/index', + component: () => import('@/views/kucun/rkmx/index.vue'), + name: 'receiptDetailsReporting', + meta: { + title: '入库上报', + noCache: true + } + }, { + path: '/kucun/kcxxcx/index', + component: () => import('@/views/kucun/kcxxcx/index.vue'), + name: 'inventoryDetailsReporting', + meta: { + title: '库存上报', + noCache: true + } + }, { + path: '/kucun/xssjgl/index', + component: () => import('@/views/kucun/xssjgl/index.vue'), + name: 'salesDetailsReporting', + meta: { + title: '销售上报', + noCache: true + } + }, { + path: '/kucun/ckdb/index', + component: () => import('@/views/kucun/xssjgl/index.vue'), + name: 'ckdbsb', + meta: { + title: '仓库调拨上报', + noCache: true + } + }, { + path: '/kucun/pfsjgl/index', + component: () => import('@/views/kucun/pfsjgl/index.vue'), + name: 'wholesaleDataReporting', + meta: { + title: '配送上报', + noCache: true + } + }] +}, { + path: '/kucunddcx', + component: Layout, + redirect: '/kucun/ddcx', + meta: { + title: '信息查询' + }, + children: [{ + path: '/kucun/ddcx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '订单查询', + noCache: true + } + }, { + path: '/kucun/ckdbcx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '仓库调拨查询', + noCache: true + } + }, { + path: '/kucun/ddspcx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '订单商品查询', + noCache: true + } + }, { + path: '/kucun/pspfcx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '配送批发查询', + noCache: true + } + }, { + path: '/kucun/crkcx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '出入库查询', + noCache: true + } + }, { + path: '/kucun/gyscx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '供应商查询', + noCache: true + } + }, { + path: '/kucun/kcxxcx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '库存信息查询', + noCache: true + } + }, { + path: '/kucun/xscx', + component: () => import('@/views/kucun/cx.vue'), + name: 'manufacturerPreference', + meta: { + title: '销售查询', + noCache: true + } + }] +}] +export default codemenu diff --git a/supervise-crm-ui/src/settings.js b/supervise-crm-ui/src/settings.js new file mode 100644 index 00000000..ab757998 --- /dev/null +++ b/supervise-crm-ui/src/settings.js @@ -0,0 +1,16 @@ +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 +} diff --git a/supervise-crm-ui/src/store/getters.js b/supervise-crm-ui/src/store/getters.js new file mode 100644 index 00000000..eb3a1200 --- /dev/null +++ b/supervise-crm-ui/src/store/getters.js @@ -0,0 +1,4 @@ +const getters = { + orgSid: state => state.user.orgSid +} +export default getters diff --git a/supervise-crm-ui/src/store/index.js b/supervise-crm-ui/src/store/index.js new file mode 100644 index 00000000..4a2159a1 --- /dev/null +++ b/supervise-crm-ui/src/store/index.js @@ -0,0 +1,36 @@ +import Vue from 'vue' +import Vuex from 'vuex' +import getters from './getters' + +Vue.use(Vuex) + +// https://webpack.js.org/guides/dependency-management/#requirecontext +const modulesFiles = require.context('./modules', true, /\.js$/) + +// you do not need `import app from './modules/app'` +// it will auto require all vuex module from modules file +const modules = modulesFiles.keys().reduce((modules, modulePath) => { + // set './app.js' => 'app' + const moduleName = modulePath.replace(/^\.\/(.*)\.\w+$/, '$1') + const value = modulesFiles(modulePath) + modules[moduleName] = value.default + return modules +}, {}) + +const store = new Vuex.Store({ + state: { + counter: 0, + distributionSid: '' + + }, + mutations: { + + }, + actions: { + + }, + modules, + getters, +}) + +export default store diff --git a/supervise-crm-ui/src/store/modules/app.js b/supervise-crm-ui/src/store/modules/app.js new file mode 100644 index 00000000..45d89bb9 --- /dev/null +++ b/supervise-crm-ui/src/store/modules/app.js @@ -0,0 +1,56 @@ +import Cookies from 'js-cookie' + +const state = { + sidebar: { + opened: Cookies.get('sidebarStatus') ? !!+Cookies.get('sidebarStatus') : true, + withoutAnimation: false + }, + device: 'desktop', + size: Cookies.get('size') || 'medium' +} + +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 + }, + SET_SIZE: (state, size) => { + state.size = size + Cookies.set('size', size) + } +} + +const actions = { + toggleSideBar({ commit }) { + commit('TOGGLE_SIDEBAR') + }, + closeSideBar({ commit }, { withoutAnimation }) { + commit('CLOSE_SIDEBAR', withoutAnimation) + }, + toggleDevice({ commit }, device) { + commit('TOGGLE_DEVICE', device) + }, + setSize({ commit }, size) { + commit('SET_SIZE', size) + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} diff --git a/supervise-crm-ui/src/store/modules/errorLog.js b/supervise-crm-ui/src/store/modules/errorLog.js new file mode 100644 index 00000000..6b01f957 --- /dev/null +++ b/supervise-crm-ui/src/store/modules/errorLog.js @@ -0,0 +1,28 @@ +const state = { + logs: [] +} + +const mutations = { + ADD_ERROR_LOG: (state, log) => { + state.logs.push(log) + }, + CLEAR_ERROR_LOG: (state) => { + state.logs.splice(0) + } +} + +const actions = { + addErrorLog({ commit }, log) { + commit('ADD_ERROR_LOG', log) + }, + clearErrorLog({ commit }) { + commit('CLEAR_ERROR_LOG') + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} diff --git a/supervise-crm-ui/src/store/modules/permission.js b/supervise-crm-ui/src/store/modules/permission.js new file mode 100644 index 00000000..d56d1ba3 --- /dev/null +++ b/supervise-crm-ui/src/store/modules/permission.js @@ -0,0 +1,69 @@ +import { asyncRoutes, constantRoutes } from '@/router' // + +/** + * Use meta.role to determine if the current user has permission + * @param roles + * @param route + */ +function hasPermission(roles, route) { + if (route.meta && route.meta.roles) { + return roles.some(role => route.meta.roles.includes(role)) + } else { + return true + } +} + +/** + * Filter asynchronous routing tables by recursion + * @param routes asyncRoutes + * @param roles + */ +export function filterAsyncRoutes(routes, roles) { + const res = [] + + routes.forEach(route => { + const tmp = { ...route } + if (hasPermission(roles, tmp)) { + if (tmp.children) { + tmp.children = filterAsyncRoutes(tmp.children, roles) + } + res.push(tmp) + } + }) + + return res +} + +const state = { + routes: [], + addRoutes: [] +} + +const mutations = { + SET_ROUTES: (state, routes) => { + state.addRoutes = routes + state.routes = constantRoutes.concat(routes) + } +} + +const actions = { + generateRoutes({ commit }, roles) { + return new Promise(resolve => { + let accessedRoutes + if (roles.includes('admin')) { + accessedRoutes = asyncRoutes || [] + } else { + accessedRoutes = filterAsyncRoutes(asyncRoutes, roles) + } + commit('SET_ROUTES', accessedRoutes) + resolve(accessedRoutes) + }) + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} diff --git a/supervise-crm-ui/src/store/modules/settings.js b/supervise-crm-ui/src/store/modules/settings.js new file mode 100644 index 00000000..110533f7 --- /dev/null +++ b/supervise-crm-ui/src/store/modules/settings.js @@ -0,0 +1,35 @@ +import variables from '@/styles/element-variables.scss' +import defaultSettings from '@/settings' + +const { showSettings, tagsView, fixedHeader, sidebarLogo } = defaultSettings + +const state = { + theme: variables.theme, + showSettings: showSettings, + tagsView: tagsView, + 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/supervise-crm-ui/src/store/modules/tagsView.js b/supervise-crm-ui/src/store/modules/tagsView.js new file mode 100644 index 00000000..57e72421 --- /dev/null +++ b/supervise-crm-ui/src/store/modules/tagsView.js @@ -0,0 +1,160 @@ +const state = { + visitedViews: [], + cachedViews: [] +} + +const mutations = { + ADD_VISITED_VIEW: (state, view) => { + if (state.visitedViews.some(v => v.path === view.path)) return + state.visitedViews.push( + Object.assign({}, view, { + title: view.meta.title || 'no-name' + }) + ) + }, + ADD_CACHED_VIEW: (state, view) => { + if (state.cachedViews.includes(view.name)) return + if (!view.meta.noCache) { + state.cachedViews.push(view.name) + } + }, + + DEL_VISITED_VIEW: (state, view) => { + for (const [i, v] of state.visitedViews.entries()) { + if (v.path === view.path) { + state.visitedViews.splice(i, 1) + break + } + } + }, + DEL_CACHED_VIEW: (state, view) => { + const index = state.cachedViews.indexOf(view.name) + index > -1 && state.cachedViews.splice(index, 1) + }, + + DEL_OTHERS_VISITED_VIEWS: (state, view) => { + state.visitedViews = state.visitedViews.filter(v => { + return v.meta.affix || v.path === view.path + }) + }, + DEL_OTHERS_CACHED_VIEWS: (state, view) => { + const index = state.cachedViews.indexOf(view.name) + if (index > -1) { + state.cachedViews = state.cachedViews.slice(index, index + 1) + } else { + // if index = -1, there is no cached tags + state.cachedViews = [] + } + }, + + DEL_ALL_VISITED_VIEWS: state => { + // keep affix tags + const affixTags = state.visitedViews.filter(tag => tag.meta.affix) + state.visitedViews = affixTags + }, + DEL_ALL_CACHED_VIEWS: state => { + state.cachedViews = [] + }, + + UPDATE_VISITED_VIEW: (state, view) => { + for (let v of state.visitedViews) { + if (v.path === view.path) { + v = Object.assign(v, view) + break + } + } + } +} + +const actions = { + addView({ dispatch }, view) { + dispatch('addVisitedView', view) + dispatch('addCachedView', view) + }, + addVisitedView({ commit }, view) { + commit('ADD_VISITED_VIEW', view) + }, + addCachedView({ commit }, view) { + commit('ADD_CACHED_VIEW', view) + }, + + delView({ dispatch, state }, view) { + return new Promise(resolve => { + dispatch('delVisitedView', view) + dispatch('delCachedView', view) + resolve({ + visitedViews: [...state.visitedViews], + cachedViews: [...state.cachedViews] + }) + }) + }, + delVisitedView({ commit, state }, view) { + return new Promise(resolve => { + commit('DEL_VISITED_VIEW', view) + resolve([...state.visitedViews]) + }) + }, + delCachedView({ commit, state }, view) { + return new Promise(resolve => { + commit('DEL_CACHED_VIEW', view) + resolve([...state.cachedViews]) + }) + }, + + delOthersViews({ dispatch, state }, view) { + return new Promise(resolve => { + dispatch('delOthersVisitedViews', view) + dispatch('delOthersCachedViews', view) + resolve({ + visitedViews: [...state.visitedViews], + cachedViews: [...state.cachedViews] + }) + }) + }, + delOthersVisitedViews({ commit, state }, view) { + return new Promise(resolve => { + commit('DEL_OTHERS_VISITED_VIEWS', view) + resolve([...state.visitedViews]) + }) + }, + delOthersCachedViews({ commit, state }, view) { + return new Promise(resolve => { + commit('DEL_OTHERS_CACHED_VIEWS', view) + resolve([...state.cachedViews]) + }) + }, + + delAllViews({ dispatch, state }, view) { + return new Promise(resolve => { + dispatch('delAllVisitedViews', view) + dispatch('delAllCachedViews', view) + resolve({ + visitedViews: [...state.visitedViews], + cachedViews: [...state.cachedViews] + }) + }) + }, + delAllVisitedViews({ commit, state }) { + return new Promise(resolve => { + commit('DEL_ALL_VISITED_VIEWS') + resolve([...state.visitedViews]) + }) + }, + delAllCachedViews({ commit, state }) { + return new Promise(resolve => { + commit('DEL_ALL_CACHED_VIEWS') + resolve([...state.cachedViews]) + }) + }, + + updateVisitedView({ commit }, view) { + commit('UPDATE_VISITED_VIEW', view) + } +} + +export default { + namespaced: true, + state, + mutations, + actions +} diff --git a/supervise-crm-ui/src/store/modules/user.js b/supervise-crm-ui/src/store/modules/user.js new file mode 100644 index 00000000..265a757a --- /dev/null +++ b/supervise-crm-ui/src/store/modules/user.js @@ -0,0 +1,17 @@ +const user = { + state:{ + orgSid: '' + }, + mutations: { + setOrgSid: (state, orgSid) => { + state.orgSid = orgSid + } + }, + actions: { + commitOrgSid({commit}, orgSid) { + commit('setOrgSid', orgSid) + } + } +} + +export default user diff --git a/supervise-crm-ui/src/store/modules/user1.js b/supervise-crm-ui/src/store/modules/user1.js new file mode 100644 index 00000000..e00ca0a5 --- /dev/null +++ b/supervise-crm-ui/src/store/modules/user1.js @@ -0,0 +1,150 @@ +import { login, logout, getInfo } from '@/api/user' +import { getStorage, setStorage, removeStorage } from '@/utils/auth' + +import router, { resetRouter } from '@/router' + +const state = { + token: getStorage(), + userInfo: '', + menus: '', +} + +const mutations = { + SET_TOKEN: (state, token) => { + state.token = token + }, + SET_UESRINFO: (state, userInfo) => { + state.userInfo = userInfo + }, + SET_MENUS: (state, menus) => { + state.menus = menus + } +} + +const actions = { + // user login + login({ commit }, userInfo) { + return new Promise((resolve, reject) => { + login(userInfo).then(response => { + const { data } = response + commit('SET_TOKEN', data.token) + setStorage(data.token) + let user = { + roleSid: data.roleSid, + name: data.name, + userName: data.userName, + departmentName: data.departmentName, + isAdmin: data.isAdmin, + staffSid: data.staffSid, + userSid: data.sid, + orgSid: data.organizationSid, + Orgname: data.organizationName, + dwjb: data.dwjb + } + commit('SET_UESRINFO', user) + window.sessionStorage.setItem('userSid', user.userSid); + window.sessionStorage.setItem('Orgname', user.Orgname); + window.sessionStorage.setItem('departmentName', user.departmentName); + window.sessionStorage.setItem('name', user.name); + resolve(data) + }).catch(error => { + reject(error) + }) + }) + }, + + // get user info + getInfo({ commit, state }) { + return new Promise((resolve, reject) => { + getInfo().then(response => { + const { data } = response + if (!data) { + removeStorage() + reject('Verification failed, please Login again.') + } + let user = { + roleSid: data.roleSid, + name: data.name, + userName: data.userName, + orgRoleName: data.orgRoleName, + isAdmin: data.isAdmin, + staffSid: data.staffSid, + userSid: data.sid, + orgSid: data.organizationSid, + Orgname: data.organizationName, + dwjb: data.dwjb + } + commit('SET_UESRINFO', user) + resolve(data) + }).catch(error => { + removeStorage() + router.push({path: '/'}) + // reject(error) + }) + }) + }, + + getMenus({ commit, state }) { + return new Promise((resolve, reject) => { + getInfo().then(response => { + const { data } = response + commit('SET_UESRINFO', user) + resolve(data) + }).catch(error => { + reject(error) + }) + }) + }, + + // user logout + logout({ commit, state, dispatch }) { + return new Promise((resolve, reject) => { + logout(state.token).then(() => { + commit('SET_TOKEN', '') + commit('SET_UESRINFO', '') + removeStorage() + resetRouter() + resolve() + }).catch(error => { + reject(error) + }) + }) + }, + + // remove token + // resetToken({ commit }) { + // return new Promise(resolve => { + // commit('SET_TOKEN', '') + // commit('SET_ROLES', []) + // removeToken() + // resolve() + // }) + // }, + + // dynamically modify permissions + // async changeRoles({ commit, dispatch }, role) { + // const token = role + '-token' + + // commit('SET_TOKEN', token) + // setToken(token) + + // const { roles } = await dispatch('getInfo') + + // resetRouter() + + // // generate accessible routes map based on roles + // const accessRoutes = await dispatch('permission/generateRoutes', roles, { root: true }) + // // dynamically add accessible routes + // router.addRoutes(accessRoutes) + + // // reset visited views and cached views + // dispatch('tagsView/delAllViews', null, { root: true }) + // } +} + +export default { + namespaced: true, + state, + mutations, + actions +} diff --git a/supervise-crm-ui/src/styles/e-row.scss b/supervise-crm-ui/src/styles/e-row.scss new file mode 100644 index 00000000..899a4da6 --- /dev/null +++ b/supervise-crm-ui/src/styles/e-row.scss @@ -0,0 +1,291 @@ +//finginvoiceapply添加部分 +.invoiceform { + .topline { + margin-bottom: 16px; + display: flex; + flex-direction: row; + justify-content: center; + + .el-form-item { + margin-bottom: 0 !important; + + .el-form-item__content { + margin-left: 0 !important; + + .el-input { + width: 120% !important; + } + } + } + + .el-input__inner { + border-style: none; + text-align: center; + } + } + + //第一行 + .lineone { + border-bottom: 2px solid #e0e3eb; + } + + .invoiceadd { + margin: 22px 28px; + border-top: 2px solid #e0e3eb; + + .el-form-item__label { + width: auto !important; + } + + .el-row { + height: 40px; + border-left: 2px solid #e0e3eb; + + .addlabel { + height: 100%; + border-right: 2px solid #e0e3eb; + border-bottom: 2px solid #e0e3eb; + + .el-form-item { + height: 100%; + margin-bottom: 0; + display: flex; + flex-direction: row-reverse; + } + } + + .addinput { + height: 100%; + padding: 0 40px 0 10px; + border-right: 2px solid #e0e3eb !important; + border-bottom: 2px solid #e0e3eb !important; + + .el-form-item { + height: 100%; + margin-bottom: 0; + + .el-form-item__content { + width: 100%; + height: 100%; + line-height: 38px; + margin: 0 !important; + + .el-input { + width: 100%; + height: 100%; + + .el-input__inner { + height: 33px; + } + } + + .el-select { + width: 100% !important; + } + } + } + } + + .addlabelTwo { + height: 100%; + border-right: 2px solid #e0e3eb; + + .el-form-item { + height: 100%; + margin-bottom: 0; + display: flex; + flex-direction: row-reverse; + } + } + + .addlabelThree { + height: 100%; + border-right: 2px solid #e0e3eb; + border-bottom: 2px solid #e0e3eb; + text-align: center; + line-height: 40px; + + .el-form-item { + height: 100%; + margin-bottom: 0; + display: flex; + flex-direction: column; + align-items: center; + line-height: 40px; + text-align: center; + } + + .el-form-item__label { + padding: 0 !important; + } + } + + .addlabelFour { + height: 100%; + border-right: 2px solid #e0e3eb; + border-bottom: 2px solid #e0e3eb; + line-height: 40px; + padding: 0 10px; + + .el-form-item { + height: 100%; + margin-bottom: 0; + + .el-form-item__content { + margin-left: 5px !important; + } + } + } + + .addinputRadio { + height: 100%; + border-right: 2px solid #e0e3eb; + border-bottom: 2px solid #e0e3eb; + line-height: 40px; + padding: 0 10px; + } + + .lastchild { + border-bottom: 2px solid #e0e3eb; + } + + } + + } +} + +.tabletitle { + height: 40px; + width: 100%; + padding: 0 10px; + background: #018ad2; + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + color: white; + + .el-button--primary { + background: #0476aa; + } + +} + +//finreceipt添加部分 +.receiptadd { + + .topline { + margin-bottom: 16px; + display: flex; + flex-direction: row; + justify-content: center; + + .el-form-item { + margin-bottom: 0 !important; + + .el-form-item__content { + margin-left: 0 !important; + + .el-input { + width: 120% !important; + } + } + } + + .el-input__inner { + border-style: none; + text-align: center; + } + } + + //第一行 + .lineone { + border-bottom: 2px solid #e0e3eb; + } + + //中间的部分 + .linetwo, .linethree { + .el-col-24 { + border-bottom: 2px solid #e0e3eb; + } + + .grid-content { + display: flex; + flex-direction: row; + justify-content: center; + align-items: flex-start; + } + } + + .linetwo { + .el-col { + padding: 0 32px; + } + } +} + +.tabletitle .addbtn { + width: 84px; + background: #0476aa; + border: 0; + outline: none; + padding: 9px 12px; + color: #ffffff; + font-size: 14px; + border-radius: 3px; + cursor: pointer; +} + +.tabletitle .addbtn:hover { + border-color: #0476aa; + background-color: #34a1db; +} + +.tableTotal { + padding: 20px 0; + font-weight: bold; + font-size: 14px; +} + +.tableinput .el-input__inner { + border-style: none; + text-align: center; +} + +.inforow { + height: 120px !important; + + .el-form-item { + height: 100%; + margin-bottom: 0; + display: flex; + flex-direction: row-reverse; + align-items: center; + } + + .infocol { + height: 100%; + border-right: 2px solid #e0e3eb; + border-bottom: 2px solid #e0e3eb; + display: flex; + flex-direction: column; + justify-content: space-around; + + .collineone, .collinetwo { + margin-left: 10px; + } + + .collineone, .collinetwo { + display: flex; + flex-direction: row; + } + } +} + +.blockone, .blocktwo, .blockfour, .blockfive { + min-width: 142px; +} + +.blockthree, .blocksix { + min-width: 266px; +} diff --git a/supervise-crm-ui/src/styles/e-table.scss b/supervise-crm-ui/src/styles/e-table.scss new file mode 100644 index 00000000..dcd63759 --- /dev/null +++ b/supervise-crm-ui/src/styles/e-table.scss @@ -0,0 +1,40 @@ +.e-table { + width: 100%; + padding: 0 30px; + + tr:first-child th { + background-color: #c1f4cd; + } + + tr { + td { + border: 1px solid #e6e9f0; + border-right: 0; + border-bottom: 0; + padding: 10px 20px; + } + + td:last-child { + border-right: 1px solid #e6e9f0; + } + } + + tr:last-child { + td { + border-bottom: 1px solid #e6e9f0; + } + } + + td:nth-child(2n-1) { + text-align: right; + } + + td:nth-child(2n) { + text-align: left; + } +} + +.tableinput .el-input__inner { + border-style: none; + text-align: center; +} diff --git a/supervise-crm-ui/src/styles/el-form.scss b/supervise-crm-ui/src/styles/el-form.scss new file mode 100644 index 00000000..73288e11 --- /dev/null +++ b/supervise-crm-ui/src/styles/el-form.scss @@ -0,0 +1,67 @@ +.listconadd .title { + text-align: center; + font-size: 28px; + //line-height: 90px; +} + +.listaddtop { + padding: 0 212px; + border-bottom: 2px solid #e0e3eb; + display: flex; + justify-content: space-between; + align-items: center; + line-height: 34px; + + span { + padding: 0 15px; + } +} + +.listconadd .demo-ruleForm { + padding: 22px 28px; +} + +.el-collapse-item__header { + .el-icon-arrow-right:before { + content: ""; + font-size: 20px; + } +} + +.demo-ruleForm table { + width: 100%; + border-collapse: collapse; + border: 2px solid #e0e3eb; + border-spacing: 0; + //text-align: right; + td { + border-right: 2px solid #e0e3eb; + border-bottom: 2px solid #e0e3eb; + border-top: 2px solid #e0e3eb; + } + + tr { + height: 40px; + } + + .el-form-item { + display: inline-block; + } + + .el-input { + display: inline-block; + } +} + +.tleftb { + text-align: right; + font-size: 14px; + color: #606266; + line-height: 40px !important; + font-weight: 600; +} + +.icon { + color: #e84026; + margin-right: 4px; +} diff --git a/supervise-crm-ui/src/styles/el-search.scss b/supervise-crm-ui/src/styles/el-search.scss new file mode 100644 index 00000000..e6a18fbe --- /dev/null +++ b/supervise-crm-ui/src/styles/el-search.scss @@ -0,0 +1,20 @@ +//finginvoiceapply页面个别按钮 +.applyseaech { + padding: 0 34px !important; + margin-right: 0 !important; +} + +//finreceipt页面个别按钮 +.recpicker { + width: 154px !important; +} + +.recselect { + padding: 0 34px !important; +} + +// +.iteminput { + padding: 0 49px !important; +} + diff --git a/supervise-crm-ui/src/styles/element-table.scss b/supervise-crm-ui/src/styles/element-table.scss new file mode 100644 index 00000000..e79ae751 --- /dev/null +++ b/supervise-crm-ui/src/styles/element-table.scss @@ -0,0 +1,38 @@ +.el-table { + .el-table__header { + tr th { + background: #edf1f7; + color: #333333; + padding: 8px 0; + font-size: 16px; + } + } +} + +.el-table { + .el-table__row { + .cell { + line-height:15px; + } + } +} + +.el-table { + .el-table__body { + tr td { + padding: 6px 0 !important; + } + } +} + +.table-describe { + border: 1px solid #dfe4ed; + border-bottom: 0 solid #dfe4ed; + + h4 { + float: left; + margin: 0; + line-height: 34px; + padding: 0 15px; + } +} diff --git a/supervise-crm-ui/src/styles/element-tabs.scss b/supervise-crm-ui/src/styles/element-tabs.scss new file mode 100644 index 00000000..26321fb1 --- /dev/null +++ b/supervise-crm-ui/src/styles/element-tabs.scss @@ -0,0 +1,25 @@ +.el-tabs--card{ + .el-tabs__header{ + .el-tabs__nav-scroll{ + padding-left: 3px; + padding-bottom: 10px; + border-bottom: 1px solid #018ad2; + .el-tabs__nav { + border: none; + } + .el-tabs__item { + border: 1px solid #dfe4ed; + margin-right: 12px; + margin-left: 2px; + } + .el-tabs__item:first-child { + border-left: 1px solid #dfe4ed; + } + .el-tabs__item.is-active{ + border-bottom-color: #018ad2; + background-color: #018ad2; + color: #fff; + } + } + } +} diff --git a/supervise-crm-ui/src/styles/element-ui.scss b/supervise-crm-ui/src/styles/element-ui.scss new file mode 100644 index 00000000..50c4dc36 --- /dev/null +++ b/supervise-crm-ui/src/styles/element-ui.scss @@ -0,0 +1,62 @@ +.el-image .el-image__inner--center{ + top: 0; + left: 0; + transform: none; +} + +.tablerow-click{ + color: #007FFF; + cursor: pointer; +} +// cover some element-ui styles + +.el-breadcrumb__inner, +.el-breadcrumb__inner a { + font-weight: 400 !important; +} + +.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 + } +} + +// to fix el-date-picker css style +.el-range-separator { + box-sizing: content-box; +} + + + diff --git a/supervise-crm-ui/src/styles/element-variables.scss b/supervise-crm-ui/src/styles/element-variables.scss new file mode 100644 index 00000000..ecd07288 --- /dev/null +++ b/supervise-crm-ui/src/styles/element-variables.scss @@ -0,0 +1,35 @@ +/** +* I think element-ui's default theme color is too light for long-term use. +* So I modified the default color and you can modify it to your liking. +**/ + +/* theme color */ +// $--color-primary: #018ad2; +// $--color-success: #13ce66; +// $--color-warning: #ffba00; +// $--color-danger: #ff4949; +// $--color-info: #1E1E1E; +$--color-primary: #018ad2; +$--color-success: #2cab69; +$--color-warning: #ffba00; +$--color-danger: #e84026; +$--color-info: #cccccc; +$--button-font-weight: 400; + +// $--color-text-regular: #1f2d3d; + +$--border-color-light: #dfe4ed; +$--border-color-lighter: #e6ebf5; + +$--table-border: 1px solid #dfe6ec; + +/* icon font path, required */ +$--font-path: "~element-ui/lib/theme-chalk/fonts"; + +@import "~element-ui/packages/theme-chalk/src/index"; + +// the :export directive is the magic sauce for webpack +// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass +:export { + theme: $--color-primary; +} diff --git a/supervise-crm-ui/src/styles/index.scss b/supervise-crm-ui/src/styles/index.scss new file mode 100644 index 00000000..ce380903 --- /dev/null +++ b/supervise-crm-ui/src/styles/index.scss @@ -0,0 +1,435 @@ +@import './variables.scss'; +@import './mixin.scss'; +@import './transition.scss'; +@import './element-ui.scss'; +@import './sidebar.scss'; +@import './table.scss'; +@import './el-form.scss'; +@import './el-search.scss'; +@import './e-row.scss'; +@import './e-table.scss'; +@import './element-table.scss'; +@import './element-tabs.scss'; +body { + height: 100%; + -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; +} + +label { + font-weight: 700; +} + +html { + height: 100%; + box-sizing: border-box; +} + +#app { + height: 100%; +} + +*, +*:before, +*:after { + box-sizing: inherit; +} + +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; + } +} +.bg-primary{ + background-color: $color-primary !important; +} +// main-container global css +.container{ + min-height: 100%; + height: 100%; + background-color: #FFFFFF; + box-sizing: border-box; + padding: 10px 0; +} + +.fl{ + float: left; +} +.fr{ + float: right; +} +.text-center{ + text-align: center; +} +.color-red{ + color: red !important; +} + +.pd-b10{ + padding-bottom: 10px; +} + +.pd-y40 { + padding: 40px 0; +} + +.pd-y20 { + padding: 20px 0; +} + +.fs20 { + font-size: 20px; +} + +// 页面上的button按钮 +.app-container { + .el-button--medium { + padding: 10px 14px; + font-size: 16px; + } + + .el-button--small { + padding: 8px 12px; + font-size: 14px; + } + + .el-button--mini { + padding: 7px 10px; + font-size: 12px; + } +} +// 添加样式 +.app-container { + margin: 5px 0 5px 0; + background-color: #fff; +} +// 设置了滚动区域 +.main-content{ overflow-x: hidden;overflow-y: auto;height: calc(100vh - 200px);padding: 0 20px;} +.listcon{height: calc(100vh - 425px);overflow-y: auto;overflow-x: hidden;} +.listconadd{height: calc(100vh - 200px);overflow-y: auto;overflow-x: hidden;} +.listconadd{ + .titwu { + font-size: 28px; + text-align: center; + padding: 30px 0 20px 0; + } +} +.listconsub { + height: calc(100vh - 310px); + overflow-y: auto; + overflow-x: hidden; +} + +.listconsubjxs { + height: calc(100vh - 300px); + overflow-y: auto; + overflow-x: hidden; +} + +// 搜索的 +.webtop { + // position: fixed;top: 110px;width: calc(100% - 240px);z-index: 6000; + background-color: #fff; + display: flex !important; + flex-direction: row; + justify-content: space-between !important; + align-items: center; + margin-bottom: 0px !important; + font-size: 20px; +} + +// 设置了页面头部的内边距和背景色 +.tab-header { + font-size: 20px; + font-weight: bold; +} +// 设置了搜索条件里的样式 +.search { + .tab-header { + .el-form-item { + margin-right: 16px; + .el-form-item__label { + font-size: 16px; + font-weight: 500; + } + } + } +} +.filter-item { + padding: 0 10px; + width: 220px; + display: inline-block; +} + +// 设置列表页面内容布局 +.listtop { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + padding: 0 0 0 15px; + margin-top: 0; + border: 1px solid #dfe4ed; + height: 42px; + line-height: 42px; +} + +.listtop .tit { + font-weight: bold; + font-size: 16px +} + +.listtop .pagination { + margin: 0; + padding: 0; +} + +.pages { + display: flex; + flex-direction: row; + justify-content: flex-end; + align-items: flex-end; + padding: 0 0 15px 15px; +} +.pages .tit{font-weight: bold;} +.pages .pagination{margin: 0;} +// .formadd{padding: 20px ;} +// .listeltable{overflow-y: auto;height: calc(100vh - 420px);} + +.formadd { + padding: 10px 40px 0 40px; + font-size: 16px; + // height: calc(100vh - 200px);overflow-y: auto; + .title { + padding: 12px; + font-weight: bold; + font-size: 16px; + background-color: $header-bg; + text-align: left; + color: #ffffff; + } + .first_row{ + border-top: 1px solid $table-border-color; + } + .el-row { + display: flex; + flex-wrap: wrap; + border-left: 1px solid $table-border-color; + .el-col { + border-right: 1px solid $table-border-color; + border-bottom: 1px solid $table-border-color; + padding: 0 15px; + min-height: 42px; + line-height: 1; + + .el-form-item { + margin-bottom: 0; + line-height: 42px; + // .addinputw{width: 400px;} + .addinputw { + width: 80%; + line-height: 42px; + } + .el-input__inner { + height: 36px; + } + } + } + } + .footer{margin: 20px;} +} + + +.formaddcopy02 { + padding: 10px 40px 0 40px; + .title { + padding: 12px; + font-weight: bold; + font-size: 16px; + background-color: #0294d7; + color: #ffffff; + text-align: left; + } + + .el-row { + display: flex; + flex-wrap: wrap; + border-left: 1px solid $table-border-color; + + .el-col { + border-right: 1px solid $table-border-color; + border-bottom: 1px solid $table-border-color; + min-height: 42px; + padding: 0 15px; + line-height: 42px; + position: relative; + .span-sty { + position: absolute; + top: 0; + bottom: 0; + left: 0; + line-height: 42px; + text-align: right; + font-size: 14px; + color: #606266; + font-weight: 600; + width: 70px; + padding-right: 5px; + border-right: 1px solid #e0e3eb; + } + + .el-form-item { + margin-bottom: 0; + line-height: 42px; + .addinputw { + //padding: 5px 0; + width: 65%; + margin-left: 80px; + line-height: 42px; + } + + .addinputInfo { + margin-left: 80px; + line-height: 42px; + } + + .el-input__inner { + height: 36px; + } + } + } + + } + + .footer { + margin: 20px; + } +} + +.forminfo { + padding: 10px 40px 0 40px; + font-size: 16px; + .title { + padding: 12px; + font-weight: bold; + font-size: 16px; + background-color: $header-bg; + text-align: left; + color: #ffffff; + } + .el-row { + display:flex; + flex-wrap: wrap; + border-left: 1px solid $table-border-color; + .trightb{ text-align: right;font-weight: bold;color: #606266; } + .tleft{ text-align: left; } + .el-col{ + border-right: 1px solid $table-border-color; + border-bottom: 1px solid $table-border-color; + padding: 0 15px 0 15px !important; + min-height: 50px; + line-height: 50px; + font-size: 14px; + } + + } + .footer{margin: 20px;} +} + +.el-form-item__error { + z-index: 100; +} +.bluezi{color: $header-bg; cursor: pointer} +// 经销商添加样式 +.titcon{ + display: flex; + flex-direction: row; + justify-content: space-around; + background-color: #0294d7; + flex: 3; +} + +.titcon .title { + padding: 10px; + font-weight: bold; + font-size: 20px; + text-align: center; + color: #ffffff; +} + +.titcon .baocun { + text-align: right; + flex: 2; + padding: 5px 20px; +} + +.addinputwda { + width: 600px; +} + +//.searchcon{margin: 0px 0 10px 0;} +//.searchcon .searchbtn{margin: 10px 0;border: #2cab69 1px solid;color: #2cab69;} +// 隐藏显示按钮 +.main-content { + .searchcon { + .searchbtn { + margin: 5px 0; + border: #2cab69 1px solid; + color: #2cab69; + } + } +} + + +.search .btn { + padding: 5px 0; + border: 1px solid #e0e3eb; + text-align: center; + margin-bottom: 5px; +} + + +// 弹出窗口按钮 +.btnCancel{ + background: #e84026 !important;outline: none;border: none;color: #fff !important; +} +.btnCancel:hover{ + background: #ed6651 !important; +} +.btnFalses{ + background: #2cab69 !important;outline: none;border: none; +} +.btnFalses:hover{ + background: #3dc47e !important; +} +.btntopblueline{background-color: #066bc9 !important;} +.btntopblueline:hover{background-color: #34a1db !important;} +.btntophui{background-color: #cccccc !important;} +.btntophui:hover{background-color: #d6d6d6 !important;} +.bordertopline{ border-top: 1px solid $table-border-color;} +.lookimg img{width: 250px;margin: 10px;} +.listimg{width: 80px;} diff --git a/supervise-crm-ui/src/styles/mixin.scss b/supervise-crm-ui/src/styles/mixin.scss new file mode 100644 index 00000000..36b74bbd --- /dev/null +++ b/supervise-crm-ui/src/styles/mixin.scss @@ -0,0 +1,28 @@ +@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%; +} diff --git a/supervise-crm-ui/src/styles/sidebar.scss b/supervise-crm-ui/src/styles/sidebar.scss new file mode 100644 index 00000000..4d304e20 --- /dev/null +++ b/supervise-crm-ui/src/styles/sidebar.scss @@ -0,0 +1,262 @@ +#app { + background-color: #f7f9fc; + + .main-container { + height: 100vh; + transition: margin-left .28s; + padding-left: $sideBarWidth; + padding-top: 60px; + position: relative; + overflow: hidden; + } + //.TagsView{ + // height: 50px; + //} + .home-box{ + position: fixed; + top: 60px; + left: 0; + background-color: $menuBg; + border: 1px solid $menuHover; + line-height: 40px; + width: 210px; + z-index: 1000; + a{ + display: inline-block; + line-height: 40px; + box-sizing: border-box; + width: 50%; + text-align: center; + font-size: 16px; + font-weight: 500; + color: #FFFFFF; + } + a:last-child{ + border:0; + background-color: $menuHover; + } + } + .sidebar-container { + transition: width 0.28s; + width: $sideBarWidth !important; + background-color: $menuBg; + height: calc(100% - 60px) ; + position: absolute; + font-size: 0px; + top: 60px; + bottom: 0; + left: 0; + z-index: 8; + overflow: hidden; + padding-top: 40px; + + // 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 { + height: calc(100% - 40px) ; //此高度是100%减去页面底部的栏高 + 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; + } + + // menu hover + .submenu-title-noDropdown, + .el-submenu__title { + &:hover { + background-color: $menuHover !important; + } + } + .el-submenu__title i{ + color: #FFFFFF; + } + .is-active>.el-submenu__title { + color: $subMenuActiveText !important; + } + + & .nest-menu .el-submenu>.el-submenu__title, + & .el-submenu .el-menu-item { + min-width: $sideBarWidth !important; + background-color: $subMenuBg !important; + + &:hover { + background-color: $subMenuHover !important; + } + } + & .el-menu-item.is-active { + background-color: $subMenuHover !important; + } + } + + // .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; + } + } + + .nest-menu .el-submenu>.el-submenu__title, + .el-menu-item { + &:hover { + // you can use $subMenuHover + background-color: $menuHover !important; + } + } + + // 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; + } + } +} diff --git a/supervise-crm-ui/src/styles/table.scss b/supervise-crm-ui/src/styles/table.scss new file mode 100644 index 00000000..08e9142d --- /dev/null +++ b/supervise-crm-ui/src/styles/table.scss @@ -0,0 +1,48 @@ +.container{ + /* 头 */ + .el-table thead{ + color: $text-color; + } + .el-table .cell{ + a{ + display: block; + color: $table-a-color; + } + .el-button--text{ + color: $table-a-color; + } + } + .el-table td, .el-table th{ + padding: 8px 0; + } + .el-table.is-group th{ + background-color: $table-bg-color; + } + .el-table--enable-row-hover .el-table__body tr:hover>td { + background-color: $table-bg-color !important; + } + .el-table--border td, .el-table--border th, .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed { + border-right: 1px solid $table-border-color; + } + .el-table td, .el-table th.is-leaf{ + border-bottom: 1px solid $table-border-color; + } + .table-fixed { + .el-table__fixed-right { + height: 100% !important; //设置高优先,以覆盖内联样式 + } + } +} + +.children-box { + padding: 10px; + .table-header { + padding: 0 20px 5px 20px; + border-bottom: 2px solid $border-color; + .el-page-header { + line-height: 40px; + font-weight: 500; + + } + } +} diff --git a/supervise-crm-ui/src/styles/transition.scss b/supervise-crm-ui/src/styles/transition.scss new file mode 100644 index 00000000..4cb27cc8 --- /dev/null +++ b/supervise-crm-ui/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/supervise-crm-ui/src/styles/variables.scss b/supervise-crm-ui/src/styles/variables.scss new file mode 100644 index 00000000..9ff78c52 --- /dev/null +++ b/supervise-crm-ui/src/styles/variables.scss @@ -0,0 +1,52 @@ +// 行为色 +$color-primary: #018ad2; +$color-success: #4cd964; +$color-warning: #f0ad4e; +$color-error: #dd524d; +// header +$header-bg:#0294d7; +// sidebar +$menuText: rgba($color: #FFFFFF, $alpha: 0.9); +$menuActiveText:#ffffff; +$subMenuActiveText:#ffffff; //https://github.com/ElemeFE/element/issues/12951 + +$menuBg:#0294d7; +$menuHover:#087dba; + +$subMenuBg:#0294d7; +$subMenuHover:#087dba; + +$sideBarWidth: 210px; + +/* 表格的相关样式 */ +$search-bg:#edf1f7; // 表格搜索景色 +$table-bg-color:#edf1f7; // 表格背景 +$table-border-color:#e0e3eb; // 表格边框色 +// 文字 +$table-a-color:#018ad2; +/* 表格的相关样式 */ + +/* 边框颜色 */ +$border-color:#018ad2; +/* 文字基本颜色 */ +$text-color:#333;//基本色 +$text-color-inverse:#fff;//反色 +$text-color-grey:#999;//辅助灰色,如加载更多的提示信息 +$text-color-placeholder: #808080; +$text-color-disable:#c0c0c0; +$text-red: #d00000; + +$a-color:#018ad2; + +// 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; + menuHover: $menuHover; + subMenuBg: $subMenuBg; + subMenuHover: $subMenuHover; + sideBarWidth: $sideBarWidth; +} diff --git a/supervise-crm-ui/src/utils/auth.js b/supervise-crm-ui/src/utils/auth.js new file mode 100644 index 00000000..33795948 --- /dev/null +++ b/supervise-crm-ui/src/utils/auth.js @@ -0,0 +1,37 @@ +import Cookies from 'js-cookie' + +const TokenKey = 'token' +const sessionKey = 'token' + +export function getToken() { + return Cookies.get(TokenKey) +} + +export function setToken(token) { + return Cookies.set(TokenKey, token, { expires: 7, path: '/' }) +} + +export function removeToken() { + return Cookies.remove(TokenKey) +} + +export function getStorage() { + return sessionStorage.getItem('token') + // return 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyTm8iOiI0MjdhMmZiMC02MGM1LTQwOWYtYmVhNC00ZWI0NDEwNDFhZTYiLCJpc3MiOiJXQksiLCJleHAiOjE2NzQ2NzU5Mzl9.1P6VgCk3sXxWkl1364y7xhfc4ifdg6uGkzkF6uEmhIo' +} + +export function setStorage(session) { + return sessionStorage.setItem('token', session) +} + +export function setDefaultOrgPathName(data) { + return sessionStorage.setItem('defaultOrgPathName', data) +} + +export function setDefaultOrgPath(data) { + return sessionStorage.setItem('defaultOrgPath', data) +} + +export function removeStorage() { + return sessionStorage.removeItem('token') +} diff --git a/supervise-crm-ui/src/utils/axios.js b/supervise-crm-ui/src/utils/axios.js new file mode 100644 index 00000000..53578374 --- /dev/null +++ b/supervise-crm-ui/src/utils/axios.js @@ -0,0 +1,248 @@ +import axios from 'axios' +import router from '@/router' +import { Message } from 'element-ui' +import { removeToken, getToken } from '@/utils/auth' +// 统一请求路径前缀 +const base = process.env.VUE_APP_BASE_API +// 超时设定 +axios.defaults.timeout = 120000 + +axios.interceptors.request.use( + config => { + // console.log('请求拦截器数据', config) + return config + }, + err => { + Message.error('请求超时') + return Promise.resolve(err) + } +) + +// http response 拦截器 +axios.interceptors.response.use( + response => { + const data = response.data + // console.log('响应拦截器数据', response) + // console.log('data.code:' + data.code) + // 根据返回的code值来做不同的处理(和后端约定) + switch (data.code) { + case 401: + // Message.error('登录失效,请重新登录!') + console.log('登录失效,请重新登录!') + // 未登录 + // removeToken().then(() => { // 清除已登录状态 + // router.push('/login') + // }) + // if (router.history.current.name !== 'login') { + // console.log(router.history.current.name) + // if (data.msg !== null) { + // Message.error(data.msg) + // } else { + // Message.error('未知错误,请重新登录') + // } + // } + break + case 403: + // 没有权限 + if (data.msg !== null) { + Message.error(data.msg) + } else { + Message.error('未知错误') + } + break + case 500: + // 错误 + if (data.msg !== null) { + Message.error(data.msg) + } else { + Message.error('未知错误') + } + break + case 99: + if (data.msg !== null) { + if (data.msg == '登录状态已过期') { + // 未登录 + // removeToken().then(() => { // 清除已登录状态 + // router.push('/login') + // }) + } else { + // Message.error(data.msg) + return data + } + } else { + Message.error('未知错误') + } + break + default: + return data + } + return Promise.reject(new Error(response.msg || 'Error')) + }, + error => { + // 返回状态码不为200时候的错误处理 + Message.error(error.toString()) + if (error.request.responseURL.indexOf('/sys/security/needLogin')) { + // removeToken().then(() => { // 清除已登录状态 + // router.push('/login') + // }) + } + // return err + return Promise.reject(error) + } +) + +export const getRequest = (url, params) => { + const accessToken = getToken() + console.log(`-------------------${base}${url}`) + return axios({ + method: 'get', + url: `${base}${url}`, + params: params, + headers: { + accessToken: accessToken + } + }) +} + +export const postRequest = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'post', + url: `${base}${url}`, + data: params, + transformRequest: [ + function(data) { + let ret = '' + for (const it in data) { + ret += + encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&' + } + return ret + } + ], + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + accessToken: accessToken + } + }) +} + +export const post = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'post', + url: `${base}${url}`, + data: params, + headers: { + 'Content-Type': 'application/json;charset=utf-8', + // 'Content-Type': 'multipart/form-data', + accessToken: accessToken + } + }) +} + +// export const postExport = (url, params) => { +// const accessToken = getToken() +// return axios({ +// method: 'post', +// url: `${base}${url}`, +// data: params, +// headers: { +// 'Content-Type': 'application/json;charset=utf-8', +// // 'Content-Type': 'multipart/form-data', +// accessToken: accessToken +// }, +// responseType: 'blob' // 表明返回服务器返回的数据类型 +// }) +// } + +export const putRequest = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'put', + url: `${base}${url}`, + data: params, + transformRequest: [ + function(data) { + let ret = '' + for (const it in data) { + ret += + encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&' + } + return ret + } + ], + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + accessToken: accessToken + } + }) +} + +export const deleteRequest = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'delete', + url: `${base}${url}`, + params: params, + headers: { + accessToken: accessToken + } + }) +} + +export const importRequest = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'post', + url: `${base}${url}`, + data: params, + headers: { + accessToken: accessToken + } + }) +} + +export const uploadFileRequest = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'post', + url: `${base}${url}`, + params: params, + headers: { + accessToken: accessToken + } + }) +} + +export const getDownLoadUrl = (url) => { + const accessToken = getToken() + return base + url + '?accessToken=' + accessToken +} + +export const uploadFileRequestJianCai = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'post', + url: `${base}${url}`, + data: params, + headers: { + 'Content-Type': 'multipart/form-data', + contentType: false, + processData: false, + accessToken: accessToken + } + }) +} + +export const postBodyRequest = (url, params) => { + const accessToken = getToken() + return axios({ + method: 'post', + url: `${base}${url}`, + data: params, + headers: { + accessToken: accessToken + } + }) +} diff --git a/supervise-crm-ui/src/utils/baocun.js b/supervise-crm-ui/src/utils/baocun.js new file mode 100644 index 00000000..3103840f --- /dev/null +++ b/supervise-crm-ui/src/utils/baocun.js @@ -0,0 +1,66 @@ +const TokenKey = 'AdminWuJingToken' +const userInfo = 'wj_user' + +// 保存基础信息 +export function getuser() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setuser(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} + +// 保存修改基础信息 +export function getXiu() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setXiu(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} + +// 保存查看基础信息 +export function getLook() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setLook(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} + +// 信息 +export function getChe() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setChe(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} + +// 经销商保存 +export function getJing() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setJing(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} + +// 车辆 +// 车型名称保存 +export function getCHeap() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setCHeap(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} + +// 车型sid保存 +export function getMIng() { + return JSON.parse(localStorage.getItem(userInfo)) +} + +export function setMIng(obj) { + return localStorage.setItem(userInfo, JSON.stringify(obj)) +} diff --git a/supervise-crm-ui/src/utils/get-page-title.js b/supervise-crm-ui/src/utils/get-page-title.js new file mode 100644 index 00000000..a6de99dd --- /dev/null +++ b/supervise-crm-ui/src/utils/get-page-title.js @@ -0,0 +1,10 @@ +import defaultSettings from '@/settings' + +const title = defaultSettings.title || 'Vue Admin Template' + +export default function getPageTitle(pageTitle) { + if (pageTitle) { + return `${pageTitle} - ${title}` + } + return `${title}` +} diff --git a/supervise-crm-ui/src/utils/index.js b/supervise-crm-ui/src/utils/index.js new file mode 100644 index 00000000..4830c048 --- /dev/null +++ b/supervise-crm-ui/src/utils/index.js @@ -0,0 +1,117 @@ +/** + * Created by PanJiaChen on 16/11/18. + */ + +/** + * Parse the time to string + * @param {(Object|string|number)} time + * @param {string} cFormat + * @returns {string | null} + */ +export function parseTime(time, cFormat) { + if (arguments.length === 0 || !time) { + return null + } + const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}' + let date + if (typeof time === 'object') { + date = time + } else { + if ((typeof time === 'string')) { + if ((/^[0-9]+$/.test(time))) { + // support "1548221490638" + time = parseInt(time) + } else { + // support safari + // https://stackoverflow.com/questions/4310953/invalid-date-in-safari + time = time.replace(new RegExp(/-/gm), '/') + } + } + + if ((typeof time === 'number') && (time.toString().length === 10)) { + time = time * 1000 + } + date = new Date(time) + } + const formatObj = { + y: date.getFullYear(), + m: date.getMonth() + 1, + d: date.getDate(), + h: date.getHours(), + i: date.getMinutes(), + s: date.getSeconds(), + a: date.getDay() + } + const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => { + const value = formatObj[key] + // Note: getDay() returns 0 on Sunday + if (key === 'a') { return ['日', '一', '二', '三', '四', '五', '六'][value ] } + return value.toString().padStart(2, '0') + }) + return time_str +} + +/** + * @param {number} time + * @param {string} option + * @returns {string} + */ +export function formatTime(time, option) { + if (('' + time).length === 10) { + time = parseInt(time) * 1000 + } else { + time = +time + } + const d = new Date(time) + const now = Date.now() + + const diff = (now - d) / 1000 + + if (diff < 30) { + return '刚刚' + } else if (diff < 3600) { + // less 1 hour + return Math.ceil(diff / 60) + '分钟前' + } else if (diff < 3600 * 24) { + return Math.ceil(diff / 3600) + '小时前' + } else if (diff < 3600 * 24 * 2) { + return '1天前' + } + if (option) { + return parseTime(time, option) + } else { + return ( + d.getMonth() + + 1 + + '月' + + d.getDate() + + '日' + + d.getHours() + + '时' + + d.getMinutes() + + '分' + ) + } +} + +/** + * @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 +} diff --git a/supervise-crm-ui/src/utils/print.js b/supervise-crm-ui/src/utils/print.js new file mode 100644 index 00000000..799a3337 --- /dev/null +++ b/supervise-crm-ui/src/utils/print.js @@ -0,0 +1,123 @@ +// 打印类属性、方法定义 +/* eslint-disable */ +const Print =function(dom, options) { + if (!(this instanceof Print)) return new Print(dom, options); + + this.options = this.extend({ + 'noPrint': '.no-print' + }, options); + + if ((typeof dom) === "string") { + this.dom = document.querySelector(dom); + } else { + this.dom = dom; + } + + this.init(); +}; +Print.prototype = { + init: function () { + var content = this.getStyle() + this.getHtml(); + this.writeIframe(content); + }, + extend: function (obj, obj2) { + for (var k in obj2) { + obj[k] = obj2[k]; + } + return obj; + }, + + getStyle: function () { + var str = "", + styles = document.querySelectorAll('style,link'); + for (var i = 0; i < styles.length; i++) { + str += styles[i].outerHTML; + } + str += ""; + + return str; + }, + + getHtml: function () { + var inputs = document.querySelectorAll('input'); + var textareas = document.querySelectorAll('textarea'); + var selects = document.querySelectorAll('select'); + + for (var k in inputs) { + if (inputs[k].type == "checkbox" || inputs[k].type == "radio") { + if (inputs[k].checked == true) { + inputs[k].setAttribute('checked', "checked") + } else { + inputs[k].removeAttribute('checked') + } + } else if (inputs[k].type == "text") { + inputs[k].setAttribute('value', inputs[k].value) + } + } + + for (var k2 in textareas) { + if (textareas[k2].type == 'textarea') { + textareas[k2].innerHTML = textareas[k2].value + } + } + + for (var k3 in selects) { + if (selects[k3].type == 'select-one') { + var child = selects[k3].children; + for (var i in child) { + if (child[i].tagName == 'OPTION') { + if (child[i].selected == true) { + child[i].setAttribute('selected', "selected") + } else { + child[i].removeAttribute('selected') + } + } + } + } + } + + return this.dom.outerHTML; + }, + + writeIframe: function (content) { + var w, doc, iframe = document.createElement('iframe'), + f = document.body.appendChild(iframe); + iframe.id = "myIframe"; + iframe.style = "position:absolute;width:0;height:0;top:-10px;left:-10px;"; + + w = f.contentWindow || f.contentDocument; + doc = f.contentDocument || f.contentWindow.document; + doc.open(); + doc.write(content); + doc.close(); + this.toPrint(w); + + setTimeout(function () { + document.body.removeChild(iframe) + }, 100) + }, + + toPrint: function (frameWindow) { + try { + setTimeout(function () { + frameWindow.focus(); + try { + if (!frameWindow.document.execCommand('print', false, null)) { + frameWindow.print(); + } + } catch (e) { + frameWindow.print(); + } + frameWindow.close(); + }, 10); + } catch (err) { + console.log('err', err); + } + } +}; +const MyPlugin = {} +MyPlugin.install = function (Vue, options) { + // 4. 添加实例方法 + Vue.prototype.$print = Print +} +export default MyPlugin \ No newline at end of file diff --git a/supervise-crm-ui/src/utils/request.js b/supervise-crm-ui/src/utils/request.js new file mode 100644 index 00000000..12093fa6 --- /dev/null +++ b/supervise-crm-ui/src/utils/request.js @@ -0,0 +1,103 @@ +import axios from 'axios' +import { MessageBox, Message } from 'element-ui' +import store from '@/store' +import { getToken, getStorage } 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: 30000 // request timeout +}) + +// request interceptor +service.interceptors.request.use( + config => { + // do something before request is sent + + // if (store.getters.token) { + // // let each request carry token + // // ['X-Token'] is a custom headers key + // // please modify it according to the actual situation + // config.headers['X-Token'] = getToken() + // } + if (getStorage()) { + // let each request carry token + // ['X-Token'] is a custom headers key + // please modify it according to the actual situation + config.headers['token'] = getStorage() + } + return config + }, + error => { + // do something with request error + console.log(error) // for debug + return Promise.reject(error) + } +) + +// response interceptor +service.interceptors.response.use( + /** + * If you want to get http information such as headers or status + * Please return response => response + */ + + /** + * Determine the request status by custom code + * Here is just an example + * You can also judge the status by HTTP Status Code + */ + response => { + const res = response.data + const statusCode = response.status + + // if the custom code is not 20000, it is judged as an error. + if (statusCode !== 200) { + Message({ + message: res.msg || response.message || 'Error', + type: 'error', + showClose: true, + duration: 5 * 1000 + }) + + // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired; + if (statusCode === 401 || res.code === '5000' || res.code === 5000 || res.code === 50012 || res.code === 50014) { + // to re-login + MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { + confirmButtonText: '重新登录', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + store.dispatch('logout').then(() => { + location.href = 'http://120.46.131.15/#/login' + // location.reload() + }) + }) + } + return Promise.reject(new Error(res.message || 'Error')) + } else { + if (!res.success) { + Message({ + message: res.msg || 'Error', + type: 'error', + showClose: true, + duration: 5 * 1000 + }) + } + return res + } + }, + error => { + console.log('err' + error) // for debug + Message({ + message: error.message, + type: 'error', + showClose: true, + duration: 5 * 1000 + }) + return Promise.reject(error) + } +) + +export default service diff --git a/supervise-crm-ui/src/utils/roles.js b/supervise-crm-ui/src/utils/roles.js new file mode 100644 index 00000000..07a65574 --- /dev/null +++ b/supervise-crm-ui/src/utils/roles.js @@ -0,0 +1,98 @@ +/** + * 表单校验规则 + * 不符合规则时,返回错误文案 + * 符合规则时,返回false + */ + +var rules = {} + +// 是否必填 +rules.required = function (value) { + return (!!value || value === 0) ? false : "请输入内容" +}; + +// 最大字符长度 +rules.maxLength = function (value, size) { + var size = size || 256; + return String(value).length <= size ? false : ("最大不超过" + size + "个字符") +} + +// 只允许字母和数字 +rules.onlyAlphabetic = function (value) { + var reg = /^[0-9a-zA-Z]+$/; + return reg.test(value) ? false : "只能输入字母和数字" +} + +// 只允许字母数字和下划线 +rules.onlyAlphabeticUnderline = function (value) { + var reg = /^[0-9a-zA-Z_]+$/; + return reg.test(value) ? false : "只能输入字母、数字或下划线" +} + +// 只允许数字 +rules.onlyNumber = function (value) { + var reg = /^[0-9]+$/; + return reg.test(value) ? false : "只能输入数字" +} + +// 只允许字母 +rules.onlyLetter = function (value) { + var reg = /^[a-zA-Z]+$/; + return reg.test(value) ? false : "只能输入字母" +} + +// 特殊字符 +rules.noSpecial = function (value) { + var regEn = /[`~!@#$%^&*()_+<>?:"{},.\/;'[\]]/im, + regCn = /[·!#¥(——):;“”‘、,|《。》?、【】[\]]/im; + return regEn.test(value) || regCn.test(value) ? false : "不能输入特殊字符" +} + +// 邮箱 +rules.email = function (value) { + var reg = /^[a-zA-Z0-9_-]+@([a-zA-Z0-9]+\.)+(com|cn|net|org)$/; + return reg.test(value) ? false : "邮箱格式错误" +} + +// 手机号(以1开头的11位数字) +rules.phone = function (value) { + var reg = /^[1][3,4,5,7,8][0-9]{9}$/; + return reg.test(value) ? false : "手机格式错误" +} + +// 只允许汉字 +rules.chinese = function (value) { + var reg = /^[\u4e00-\u9fa5]+$/; + return reg.test(value) ? false : "只能输入汉字" +} + +// 密码格式校验 +rules.password = function (value) { + if (String(value).length < 6) { + return "密码长度不小于6位" + } + if (String(value).length > 18) { + return "密码长度不超过18位" + } + var level = 0; + if (value.search(/[a-z]/) > -1) { + level++; //密码中包含小写字母 + } + if (value.search(/[A-Z]/) > -1) { + level++; //密码中包含大写字母 + } + if (value.search(/[0-9]/) > -1) { + level++; //密码中包含数组 + } + if (value.search(/[`~!@#$%^&*()_+<>?:"{},.\/;'[\]]/im) > -1) { + level++; //密码中包含特殊符号 + } + if(level<2){ + return "密码至少包含大写字母、小写字母、数字、标点符号中的两种" + }else{ + return level; // 当前密码强度为level(2/3/4) + } +} + + +export default rules; \ No newline at end of file diff --git a/supervise-crm-ui/src/utils/validate.js b/supervise-crm-ui/src/utils/validate.js new file mode 100644 index 00000000..8d962ad4 --- /dev/null +++ b/supervise-crm-ui/src/utils/validate.js @@ -0,0 +1,20 @@ +/** + * Created by PanJiaChen on 16/11/18. + */ + +/** + * @param {string} path + * @returns {Boolean} + */ +export function isExternal(path) { + return /^(https?:|mailto:|tel:)/.test(path) +} + +/** + * @param {string} str + * @returns {Boolean} + */ +export function validUsername(str) { + const valid_map = ['admin', 'editor'] + return valid_map.indexOf(str.trim()) >= 0 +} diff --git a/supervise-crm-ui/src/views/404.vue b/supervise-crm-ui/src/views/404.vue new file mode 100644 index 00000000..1791f55a --- /dev/null +++ b/supervise-crm-ui/src/views/404.vue @@ -0,0 +1,228 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Home/Home.vue b/supervise-crm-ui/src/views/Home/Home.vue new file mode 100644 index 00000000..d1c0b2f0 --- /dev/null +++ b/supervise-crm-ui/src/views/Home/Home.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/BpmData.js b/supervise-crm-ui/src/views/Process/BpmData.js new file mode 100644 index 00000000..672ca449 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/BpmData.js @@ -0,0 +1,68 @@ +/** + * 存储流程设计相关参数 + */ +export default class BpmData { + constructor() { + this.controls = [] // 设计器控件 + this.init() + } + + init() { + this.controls = [ + { + action: 'create.start-event', + title: '开始' + }, + { + action: 'create.intermediate-event', + title: '中间' + }, + { + action: 'create.end-event', + title: '结束' + }, + { + action: 'create.exclusive-gateway', + title: '网关' + }, + { + action: 'create.task', + title: '任务' + }, + { + action: 'create.user-task', + title: '用户任务' + }, + { + action: 'create.user-sign-task', + title: '会签任务' + }, + { + action: 'create.subprocess-expanded', + title: '子流程' + }, + { + action: 'create.data-object', + title: '数据对象' + }, + { + action: 'create.data-store', + title: '数据存储' + }, + { + action: 'create.participant-expanded', + title: '扩展流程' + }, + { + action: 'create.group', + title: '分组' + } + ] + } + + // 获取控件配置信息 + getControl(action) { + const result = this.controls.filter(item => item.action === action) + return result[0] || {} + } +} diff --git a/supervise-crm-ui/src/views/Process/PropertyPanel.vue b/supervise-crm-ui/src/views/Process/PropertyPanel.vue new file mode 100644 index 00000000..970bd0f8 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/PropertyPanel.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/common/customTranslate.js b/supervise-crm-ui/src/views/Process/common/customTranslate.js new file mode 100644 index 00000000..fa05f9d6 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/common/customTranslate.js @@ -0,0 +1,20 @@ +import translations from '../lang/zh' + +export default function customTranslate(template, replacements) { + replacements = replacements || {} + + // Translate + template = translations[template] || template + + // Replace + return template.replace(/{([^}]+)}/g, function(_, key) { + var str = replacements[key] + if ( + translations[replacements[key]] !== null && + translations[replacements[key]] !== 'undefined' + ) { + str = translations[replacements[key]] + } + return str || '{' + key + '}' + }) +} diff --git a/supervise-crm-ui/src/views/Process/common/mixinExecutionListener.js b/supervise-crm-ui/src/views/Process/common/mixinExecutionListener.js new file mode 100644 index 00000000..23295b00 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/common/mixinExecutionListener.js @@ -0,0 +1,24 @@ + +import executionListenerDialog from '../components/nodePanel/property/executionListener' +export default { + components: { + executionListenerDialog + }, + data() { + return { + executionListenerLength: 0, + dialogName: null + } + }, + methods: { + computedExecutionListenerLength() { + this.executionListenerLength = this.element.businessObject.extensionElements?.values?.length ?? 0 + }, + finishExecutionListener() { + if (this.dialogName === 'executionListenerDialog') { + this.computedExecutionListenerLength() + } + this.dialogName = '' + } + } +} diff --git a/supervise-crm-ui/src/views/Process/common/mixinPanel.js b/supervise-crm-ui/src/views/Process/common/mixinPanel.js new file mode 100644 index 00000000..8686b983 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/common/mixinPanel.js @@ -0,0 +1,70 @@ +import xcrud from 'xcrud' +import golbalConfig from 'xcrud/package/common/config' +import showConfig from '../flowable/showConfig' +golbalConfig.set({ + input: { + // size: 'mini' + }, + select: { + // size: 'mini' + }, + colorPicker: { + showAlpha: true + }, + xform: { + form: { + labelWidth: 'auto' + // size: 'mini' + } + } +}) +export default { + components: { xForm: xcrud.xForm }, + props: { + modeler: { + type: Object, + required: true + }, + element: { + type: Object, + required: true + }, + categorys: { + type: Array, + default: () => [] + } + }, + watch: { + 'formData.id': function(val) { + this.updateProperties({ id: val }) + }, + 'formData.name': function(val) { + this.updateProperties({ name: val }) + }, + 'formData.documentation': function(val) { + if (!val) { + this.updateProperties({ documentation: [] }) + return + } + const documentationElement = this.modeler.get('moddle').create('bpmn:Documentation', { text: val }) + this.updateProperties({ documentation: [documentationElement] }) + } + }, + methods: { + updateProperties(properties) { + const modeling = this.modeler.get('modeling') + modeling.updateProperties(this.element, properties) + } + }, + computed: { + elementType() { + const bizObj = this.element.businessObject + return bizObj.eventDefinitions + ? bizObj.eventDefinitions[0].$type + : bizObj.$type + }, + showConfig() { + return showConfig[this.elementType] || {} + } + } +} diff --git a/supervise-crm-ui/src/views/Process/common/mixinXcrud.js b/supervise-crm-ui/src/views/Process/common/mixinXcrud.js new file mode 100644 index 00000000..1f7ee5b5 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/common/mixinXcrud.js @@ -0,0 +1,22 @@ +import xcrud from 'xcrud' +import golbalConfig from 'xcrud/package/common/config' +golbalConfig.set({ + input: { + // size: 'mini' + }, + select: { + // size: 'mini' + }, + colorPicker: { + showAlpha: true + }, + xform: { + form: { + labelWidth: 'auto' + // size: 'mini' + } + } +}) +export default { + components: { xForm: xcrud.xForm } +} diff --git a/supervise-crm-ui/src/views/Process/common/parseElement.js b/supervise-crm-ui/src/views/Process/common/parseElement.js new file mode 100644 index 00000000..63cf336e --- /dev/null +++ b/supervise-crm-ui/src/views/Process/common/parseElement.js @@ -0,0 +1,53 @@ +export function commonParse(element) { + const result = { + ...element.businessObject, + ...element.businessObject.$attrs + } + return formatJsonKeyValue(result) +} + +export function formatJsonKeyValue(result) { + // 移除flowable前缀,格式化数组 + for (const key in result) { + if (key.indexOf('flowable:') === 0) { + const newKey = key.replace('flowable:', '') + result[newKey] = result[key] + delete result[key] + } + } + result = documentationParse(result) + return result +} + +export function documentationParse(obj) { + if ('documentation' in obj) { + let str = '' + obj.documentation.forEach(item => { + str += item.text + }) + obj.documentation = str + } + return obj +} + +export function conditionExpressionParse(obj) { + if ('conditionExpression' in obj) { + obj.conditionExpression = obj.conditionExpression.body + } + return obj +} + +export function userTaskParse(obj) { + for (const key in obj) { + if (key === 'candidateUsers') { + obj.userType = 'candidateUsers' + obj[key] = obj[key]?.split(',') || [] + } else if (key === 'candidateGroups') { + obj.userType = 'candidateGroups' + obj[key] = obj[key]?.split(',') || [] + } else if (key === 'assignee') { + obj.userType = 'assignee' + } + } + return obj +} diff --git a/supervise-crm-ui/src/views/Process/components/custom/customContextPad.vue b/supervise-crm-ui/src/views/Process/components/custom/customContextPad.vue new file mode 100644 index 00000000..89c2f684 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/custom/customContextPad.vue @@ -0,0 +1,24 @@ +export default class CustomContextPad { + constructor(config, contextPad, create, elementFactory, injector, translate) { + this.create = create; + this.elementFactory = elementFactory; + this.translate = translate; + + if (config.autoPlace !== false) { + this.autoPlace = injector.get('autoPlace', false); + } + + contextPad.registerProvider(this); // 定义这是一个contextPad + } + + getContextPadEntries(element) {} +} + +CustomContextPad.$inject = [ + 'config', + 'contextPad', + 'create', + 'elementFactory', + 'injector', + 'translate' +]; diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/gateway.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/gateway.vue new file mode 100644 index 00000000..db181531 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/gateway.vue @@ -0,0 +1,81 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/process.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/process.vue new file mode 100644 index 00000000..6946f1e3 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/process.vue @@ -0,0 +1,113 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/property/executionListener.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/property/executionListener.vue new file mode 100644 index 00000000..1a15b8a1 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/property/executionListener.vue @@ -0,0 +1,194 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/property/listenerParam.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/property/listenerParam.vue new file mode 100644 index 00000000..dd8ace18 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/property/listenerParam.vue @@ -0,0 +1,96 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/property/multiInstance.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/property/multiInstance.vue new file mode 100644 index 00000000..357b7167 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/property/multiInstance.vue @@ -0,0 +1,117 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/property/signal.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/property/signal.vue new file mode 100644 index 00000000..2c29d734 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/property/signal.vue @@ -0,0 +1,124 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/property/taskListener.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/property/taskListener.vue new file mode 100644 index 00000000..0f72a89a --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/property/taskListener.vue @@ -0,0 +1,196 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/sequenceFlow.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/sequenceFlow.vue new file mode 100644 index 00000000..178cd7d4 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/sequenceFlow.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/startEnd.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/startEnd.vue new file mode 100644 index 00000000..2740bf6a --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/startEnd.vue @@ -0,0 +1,94 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/components/nodePanel/task.vue b/supervise-crm-ui/src/views/Process/components/nodePanel/task.vue new file mode 100644 index 00000000..61a00d10 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/components/nodePanel/task.vue @@ -0,0 +1,426 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/flowable/flowable.json b/supervise-crm-ui/src/views/Process/flowable/flowable.json new file mode 100644 index 00000000..73ac3088 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/flowable/flowable.json @@ -0,0 +1,1194 @@ +{ + "name": "Flowable", + "uri": "http://flowable.org/bpmn", + "prefix": "flowable", + "xml": { + "tagAlias": "lowerCase" + }, + "associations": [], + "types": [ + { + "name": "InOutBinding", + "superClass": ["Element"], + "isAbstract": true, + "properties": [ + { + "name": "source", + "isAttr": true, + "type": "String" + }, + { + "name": "sourceExpression", + "isAttr": true, + "type": "String" + }, + { + "name": "target", + "isAttr": true, + "type": "String" + }, + { + "name": "businessKey", + "isAttr": true, + "type": "String" + }, + { + "name": "local", + "isAttr": true, + "type": "Boolean", + "default": false + }, + { + "name": "variables", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "In", + "superClass": ["InOutBinding"], + "meta": { + "allowedIn": ["bpmn:CallActivity"] + } + }, + { + "name": "Out", + "superClass": ["InOutBinding"], + "meta": { + "allowedIn": ["bpmn:CallActivity"] + } + }, + { + "name": "AsyncCapable", + "isAbstract": true, + "extends": ["bpmn:Activity", "bpmn:Gateway", "bpmn:Event"], + "properties": [ + { + "name": "async", + "isAttr": true, + "type": "Boolean", + "default": false + }, + { + "name": "asyncBefore", + "isAttr": true, + "type": "Boolean", + "default": false + }, + { + "name": "asyncAfter", + "isAttr": true, + "type": "Boolean", + "default": false + }, + { + "name": "exclusive", + "isAttr": true, + "type": "Boolean", + "default": true + } + ] + }, + { + "name": "flowable:in", + "superClass": ["Element"], + "properties": [ + { + "name": "source", + "type": "string", + "isAttr": true + }, + { + "name": "target", + "type": "string", + "isAttr": true + } + ] + }, + { + "name": "flowable:out", + "superClass": ["Element"], + "properties": [ + { + "name": "source", + "type": "string", + "isAttr": true + }, + { + "name": "target", + "type": "string", + "isAttr": true + } + ] + }, + { + "name": "BoundaryEvent", + "superClass": ["CatchEvent"], + "properties": [ + { + "name": "cancelActivity", + "default": true, + "isAttr": true, + "type": "Boolean" + }, + { + "name": "attachedToRef", + "type": "Activity", + "isAttr": true, + "isReference": true + } + ] + }, + { + "name": "JobPriorized", + "isAbstract": true, + "extends": ["bpmn:Process", "flowable:AsyncCapable"], + "properties": [ + { + "name": "jobPriority", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "SignalEventDefinition", + "isAbstract": true, + "extends": ["bpmn:SignalEventDefinition"], + "properties": [ + { + "name": "async", + "isAttr": true, + "type": "Boolean", + "default": false + } + ] + }, + { + "name": "ErrorEventDefinition", + "isAbstract": true, + "extends": ["bpmn:ErrorEventDefinition"], + "properties": [ + { + "name": "errorCodeVariable", + "isAttr": true, + "type": "String" + }, + { + "name": "errorMessageVariable", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "Error", + "isAbstract": true, + "extends": ["bpmn:Error"], + "properties": [ + { + "name": "flowable:errorMessage", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "PotentialStarter", + "superClass": ["Element"], + "properties": [ + { + "name": "resourceAssignmentExpression", + "type": "bpmn:ResourceAssignmentExpression" + } + ] + }, + { + "name": "UserTask", + "isAbstract": true, + "extends": ["bpmn:UserTask"], + "properties": [ + { + "name": "timerEventDefinition", + "type": "Expression" + }, + { + "name": "multiInstanceLoopCharacteristics", + "type": "MultiInstanceLoopCharacteristics" + } + ] + }, + { + "name": "StartEvent", + "isAbstract": true, + "extends": ["bpmn:StartEvent"], + "properties": [ + { + "name": "timerEventDefinition", + "type": "Expression" + } + ] + }, + { + "name": "FormSupported", + "isAbstract": true, + "extends": ["bpmn:StartEvent", "bpmn:UserTask"], + "properties": [ + { + "name": "formHandlerClass", + "isAttr": true, + "type": "String" + }, + { + "name": "formKey", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "TemplateSupported", + "isAbstract": true, + "extends": ["bpmn:Process", "bpmn:FlowElement"], + "properties": [ + { + "name": "modelerTemplate", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "Initiator", + "isAbstract": true, + "extends": ["bpmn:StartEvent"], + "properties": [ + { + "name": "initiator", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "ScriptTask", + "isAbstract": true, + "extends": ["bpmn:ScriptTask"], + "properties": [ + { + "name": "resultVariable", + "isAttr": true, + "type": "String" + }, + { + "name": "resource", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "Process", + "isAbstract": true, + "extends": ["bpmn:Process"], + "properties": [ + { + "name": "candidateStarterGroups", + "isAttr": true, + "type": "String" + }, + { + "name": "candidateStarterUsers", + "isAttr": true, + "type": "String" + }, + { + "name": "versionTag", + "isAttr": true, + "type": "String" + }, + { + "name": "historyTimeToLive", + "isAttr": true, + "type": "String" + }, + { + "name": "isStartableInTasklist", + "isAttr": true, + "type": "Boolean", + "default": true + } + ] + }, + { + "name": "EscalationEventDefinition", + "isAbstract": true, + "extends": ["bpmn:EscalationEventDefinition"], + "properties": [ + { + "name": "escalationCodeVariable", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "FormalExpression", + "isAbstract": true, + "extends": ["bpmn:FormalExpression"], + "properties": [ + { + "name": "resource", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "Assignable", + "extends": ["bpmn:UserTask"], + "properties": [ + { + "name": "candidateGroups", + "isAttr": true, + "type": "String" + }, + { + "name": "dueDate", + "isAttr": true, + "type": "String" + }, + { + "name": "followUpDate", + "isAttr": true, + "type": "String" + }, + { + "name": "priority", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "CallActivity", + "extends": ["bpmn:CallActivity"], + "properties": [ + { + "name": "calledElementBinding", + "isAttr": true, + "type": "String", + "default": "latest" + }, + { + "name": "calledElementVersion", + "isAttr": true, + "type": "String" + }, + { + "name": "calledElementVersionTag", + "isAttr": true, + "type": "String" + }, + { + "name": "calledElementTenantId", + "isAttr": true, + "type": "String" + }, + { + "name": "caseRef", + "isAttr": true, + "type": "String" + }, + { + "name": "caseBinding", + "isAttr": true, + "type": "String", + "default": "latest" + }, + { + "name": "caseVersion", + "isAttr": true, + "type": "String" + }, + { + "name": "caseTenantId", + "isAttr": true, + "type": "String" + }, + { + "name": "variableMappingClass", + "isAttr": true, + "type": "String" + }, + { + "name": "variableMappingDelegateExpression", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "ServiceTaskLike", + "extends": [ + "bpmn:ServiceTask", + "bpmn:BusinessRuleTask", + "bpmn:SendTask", + "bpmn:MessageEventDefinition" + ], + "properties": [ + { + "name": "expression", + "isAttr": true, + "type": "String" + }, + { + "name": "class", + "isAttr": true, + "type": "String" + }, + { + "name": "delegateExpression", + "isAttr": true, + "type": "String" + }, + { + "name": "resultVariable", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "ExclusiveGateway", + "isAbstract": true, + "extends": ["bpmn:ExclusiveGateway"], + "properties": [ + { + "name": "serviceClass", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "DmnCapable", + "extends": ["bpmn:BusinessRuleTask"], + "properties": [ + { + "name": "decisionRef", + "isAttr": true, + "type": "String" + }, + { + "name": "decisionRefBinding", + "isAttr": true, + "type": "String", + "default": "latest" + }, + { + "name": "decisionRefVersion", + "isAttr": true, + "type": "String" + }, + { + "name": "mapDecisionResult", + "isAttr": true, + "type": "String", + "default": "resultList" + }, + { + "name": "decisionRefTenantId", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "ExternalCapable", + "extends": ["flowable:ServiceTaskLike"], + "properties": [ + { + "name": "type", + "isAttr": true, + "type": "String" + }, + { + "name": "topic", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "TaskPriorized", + "extends": ["bpmn:Process", "flowable:ExternalCapable"], + "properties": [ + { + "name": "taskPriority", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "Properties", + "superClass": ["Element"], + "meta": { + "allowedIn": ["*"] + }, + "properties": [ + { + "name": "values", + "type": "Property", + "isMany": true + } + ] + }, + { + "name": "Property", + "superClass": ["Element"], + "properties": [ + { + "name": "id", + "type": "String", + "isAttr": true + }, + { + "name": "name", + "type": "String", + "isAttr": true + }, + { + "name": "value", + "type": "String", + "isAttr": true + } + ] + }, + { + "name": "Connector", + "superClass": ["Element"], + "meta": { + "allowedIn": ["flowable:ServiceTaskLike"] + }, + "properties": [ + { + "name": "inputOutput", + "type": "InputOutput" + }, + { + "name": "connectorId", + "type": "String" + } + ] + }, + { + "name": "InputOutput", + "superClass": ["Element"], + "meta": { + "allowedIn": ["bpmn:FlowNode", "flowable:Connector"] + }, + "properties": [ + { + "name": "inputOutput", + "type": "InputOutput" + }, + { + "name": "connectorId", + "type": "String" + }, + { + "name": "inputParameters", + "isMany": true, + "type": "InputParameter" + }, + { + "name": "outputParameters", + "isMany": true, + "type": "OutputParameter" + } + ] + }, + { + "name": "InputOutputParameter", + "properties": [ + { + "name": "name", + "isAttr": true, + "type": "String" + }, + { + "name": "value", + "isBody": true, + "type": "String" + }, + { + "name": "definition", + "type": "InputOutputParameterDefinition" + } + ] + }, + { + "name": "InputOutputParameterDefinition", + "isAbstract": true + }, + { + "name": "List", + "superClass": ["InputOutputParameterDefinition"], + "properties": [ + { + "name": "items", + "isMany": true, + "type": "InputOutputParameterDefinition" + } + ] + }, + { + "name": "Map", + "superClass": ["InputOutputParameterDefinition"], + "properties": [ + { + "name": "entries", + "isMany": true, + "type": "Entry" + } + ] + }, + { + "name": "Entry", + "properties": [ + { + "name": "key", + "isAttr": true, + "type": "String" + }, + { + "name": "value", + "isBody": true, + "type": "String" + }, + { + "name": "definition", + "type": "InputOutputParameterDefinition" + } + ] + }, + { + "name": "Value", + "superClass": ["InputOutputParameterDefinition"], + "properties": [ + { + "name": "id", + "isAttr": true, + "type": "String" + }, + { + "name": "name", + "isAttr": true, + "type": "String" + }, + { + "name": "value", + "isBody": true, + "type": "String" + } + ] + }, + { + "name": "Script", + "superClass": ["InputOutputParameterDefinition"], + "properties": [ + { + "name": "scriptFormat", + "isAttr": true, + "type": "String" + }, + { + "name": "resource", + "isAttr": true, + "type": "String" + }, + { + "name": "value", + "isBody": true, + "type": "String" + } + ] + }, + { + "name": "Field", + "superClass": ["Element"], + "meta": { + "allowedIn": [ + "flowable:ServiceTaskLike", + "flowable:ExecutionListener", + "flowable:TaskListener" + ] + }, + "properties": [ + { + "name": "name", + "isAttr": true, + "type": "String" + }, + { + "name": "expression", + "isAttr": true, + "type": "expression" + }, + { + "name": "string", + "type": "string" + }, + { + "name": "stringValue", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "string", + "superClass": ["Element"], + "meta": { + "allowedIn": [ + "flowable:Field" + ] + }, + "properties": [ + { + "name": "body", + "isBody": true, + "type": "String" + } + ] + }, + { + "name": "expression", + "superClass": ["Element"], + "meta": { + "allowedIn": [ + "flowable:Field" + ] + }, + "properties": [ + { + "name": "body", + "isBody": true, + "type": "String" + } + ] + }, + { + "name": "InputParameter", + "superClass": ["InputOutputParameter"] + }, + { + "name": "OutputParameter", + "superClass": ["InputOutputParameter"] + }, + { + "name": "Collectable", + "isAbstract": true, + "extends": ["bpmn:MultiInstanceLoopCharacteristics"], + "superClass": ["flowable:AsyncCapable"], + "properties": [ + { + "name": "collection", + "isAttr": true, + "type": "String" + }, + { + "name": "elementVariable", + "isAttr": true, + "type": "String" + } + ] + }, + { + "name": "SequenceFlow", + "superClass": ["FlowElement"], + "properties": [ + { + "name": "isImmediate", + "isAttr": true, + "type": "Boolean" + }, + { + "name": "conditionExpression", + "type": "Expression" + }, + { + "name": "sourceRef", + "type": "FlowNode", + "isAttr": true, + "isReference": true + }, + { + "name": "targetRef", + "type": "FlowNode", + "isAttr": true, + "isReference": true + } + ] + }, + { + "name": "MultiInstanceLoopCharacteristics", + "superClass": ["LoopCharacteristics"], + "properties": [ + { + "name": "isSequential", + "default": false, + "isAttr": true, + "type": "Boolean" + }, + { + "name": "behavior", + "type": "MultiInstanceBehavior", + "default": "All", + "isAttr": true + }, + { + "name": "loopCardinality", + "type": "Expression", + "xml": { + "serialize": "xsi:type" + } + }, + { + "name": "loopDataInputRef", + "type": "ItemAwareElement", + "isReference": true + }, + { + "name": "loopDataOutputRef", + "type": "ItemAwareElement", + "isReference": true + }, + { + "name": "inputDataItem", + "type": "DataInput", + "xml": { + "serialize": "property" + } + }, + { + "name": "outputDataItem", + "type": "DataOutput", + "xml": { + "serialize": "property" + } + }, + { + "name": "complexBehaviorDefinition", + "type": "ComplexBehaviorDefinition", + "isMany": true + }, + { + "name": "completionCondition", + "type": "Expression", + "xml": { + "serialize": "xsi:type" + } + }, + { + "name": "oneBehaviorEventRef", + "type": "EventDefinition", + "isAttr": true, + "isReference": true + }, + { + "name": "noneBehaviorEventRef", + "type": "EventDefinition", + "isAttr": true, + "isReference": true + } + ] + }, + { + "name": "FailedJobRetryTimeCycle", + "superClass": ["Element"], + "meta": { + "allowedIn": ["flowable:AsyncCapable", "bpmn:MultiInstanceLoopCharacteristics"] + }, + "properties": [ + { + "name": "body", + "isBody": true, + "type": "String" + } + ] + }, + { + "name": "ExecutionListener", + "superClass": ["Element"], + "meta": { + "allowedIn": [ + "bpmn:Task", + "bpmn:ServiceTask", + "bpmn:UserTask", + "bpmn:BusinessRuleTask", + "bpmn:ScriptTask", + "bpmn:ReceiveTask", + "bpmn:ManualTask", + "bpmn:ExclusiveGateway", + "bpmn:SequenceFlow", + "bpmn:ParallelGateway", + "bpmn:InclusiveGateway", + "bpmn:EventBasedGateway", + "bpmn:StartEvent", + "bpmn:IntermediateCatchEvent", + "bpmn:IntermediateThrowEvent", + "bpmn:EndEvent", + "bpmn:BoundaryEvent", + "bpmn:CallActivity", + "bpmn:SubProcess", + "bpmn:Process" + ] + }, + "properties": [ + { + "name": "expression", + "isAttr": true, + "type": "String" + }, + { + "name": "class", + "isAttr": true, + "type": "String" + }, + { + "name": "delegateExpression", + "isAttr": true, + "type": "String" + }, + { + "name": "event", + "isAttr": true, + "type": "String" + }, + { + "name": "script", + "type": "Script" + }, + { + "name": "fields", + "type": "Field", + "isMany": true + } + ] + }, + { + "name": "TaskListener", + "superClass": ["Element"], + "meta": { + "allowedIn": ["bpmn:UserTask"] + }, + "properties": [ + { + "name": "expression", + "isAttr": true, + "type": "String" + }, + { + "name": "class", + "isAttr": true, + "type": "String" + }, + { + "name": "delegateExpression", + "isAttr": true, + "type": "String" + }, + { + "name": "event", + "isAttr": true, + "type": "String" + }, + { + "name": "script", + "type": "Script" + }, + { + "name": "fields", + "type": "Field", + "isMany": true + } + ] + }, + { + "name": "FormProperty", + "superClass": ["Element"], + "meta": { + "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"] + }, + "properties": [ + { + "name": "id", + "type": "String", + "isAttr": true + }, + { + "name": "name", + "type": "String", + "isAttr": true + }, + { + "name": "type", + "type": "String", + "isAttr": true + }, + { + "name": "required", + "type": "String", + "isAttr": true + }, + { + "name": "readable", + "type": "String", + "isAttr": true + }, + { + "name": "writable", + "type": "String", + "isAttr": true + }, + { + "name": "variable", + "type": "String", + "isAttr": true + }, + { + "name": "expression", + "type": "String", + "isAttr": true + }, + { + "name": "datePattern", + "type": "String", + "isAttr": true + }, + { + "name": "default", + "type": "String", + "isAttr": true + }, + { + "name": "values", + "type": "Value", + "isMany": true + } + ] + }, + { + "name": "FormData", + "superClass": ["Element"], + "meta": { + "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"] + }, + "properties": [ + { + "name": "fields", + "type": "FormField", + "isMany": true + }, + { + "name": "businessKey", + "type": "String", + "isAttr": true + } + ] + }, + { + "name": "FormField", + "superClass": ["Element"], + "properties": [ + { + "name": "id", + "type": "String", + "isAttr": true + }, + { + "name": "label", + "type": "String", + "isAttr": true + }, + { + "name": "type", + "type": "String", + "isAttr": true + }, + { + "name": "datePattern", + "type": "String", + "isAttr": true + }, + { + "name": "defaultValue", + "type": "String", + "isAttr": true + }, + { + "name": "properties", + "type": "Properties" + }, + { + "name": "validation", + "type": "Validation" + }, + { + "name": "values", + "type": "Value", + "isMany": true + } + ] + }, + { + "name": "Validation", + "superClass": ["Element"], + "properties": [ + { + "name": "constraints", + "type": "Constraint", + "isMany": true + } + ] + }, + { + "name": "Constraint", + "superClass": ["Element"], + "properties": [ + { + "name": "name", + "type": "String", + "isAttr": true + }, + { + "name": "config", + "type": "String", + "isAttr": true + } + ] + }, + { + "name": "ConditionalEventDefinition", + "isAbstract": true, + "extends": ["bpmn:ConditionalEventDefinition"], + "properties": [ + { + "name": "variableName", + "isAttr": true, + "type": "String" + }, + { + "name": "variableEvent", + "isAttr": true, + "type": "String" + } + ] + } + ], + "emumerations": [] + } diff --git a/supervise-crm-ui/src/views/Process/flowable/init.js b/supervise-crm-ui/src/views/Process/flowable/init.js new file mode 100644 index 00000000..ec9e282d --- /dev/null +++ b/supervise-crm-ui/src/views/Process/flowable/init.js @@ -0,0 +1,24 @@ + +function randomStr() { + return Math.random().toString(36).slice(-8) +} + +export default function() { + return ` + + + + + + + + + + + + + + + + ` +} diff --git a/supervise-crm-ui/src/views/Process/flowable/showConfig.js b/supervise-crm-ui/src/views/Process/flowable/showConfig.js new file mode 100644 index 00000000..69ba83e5 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/flowable/showConfig.js @@ -0,0 +1,55 @@ +export default { + 'bpmn:EndEvent': {}, + 'bpmn:StartEvent': { + initiator: true, + formKey: true + }, + 'bpmn:UserTask': { + userType: true, + dataType: true, + assignee: true, + candidateUsers: true, + candidateGroups: true, + // assigneeFixed: true, + // candidateUsersFixed: true, + // candidateGroupsFixed: true, + async: true, + priority: true, + formKey: true, + skipExpression: true, + dueDate: true, + taskListener: true + }, + 'bpmn:ServiceTask': { + async: true, + skipExpression: true, + isForCompensation: true, + triggerable: true, + class: true + }, + 'bpmn:ScriptTask': { + async: true, + isForCompensation: true, + autoStoreVariables: true + }, + 'bpmn:ManualTask': { + async: true, + isForCompensation: true + }, + 'bpmn:ReceiveTask': { + async: true, + isForCompensation: true + }, + 'bpmn:SendTask': { + async: true, + isForCompensation: true + }, + 'bpmn:BusinessRuleTask': { + async: true, + isForCompensation: true, + ruleVariablesInput: true, + rules: true, + resultVariable: true, + exclude: true + } +} diff --git a/supervise-crm-ui/src/views/Process/index.js b/supervise-crm-ui/src/views/Process/index.js new file mode 100644 index 00000000..f78489d2 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/index.js @@ -0,0 +1,5 @@ +import workflowBpmnModeler from './index.vue' + +workflowBpmnModeler.install = Vue => Vue.component(workflowBpmnModeler.name, workflowBpmnModeler) // 给组件配置install方法 + +export default workflowBpmnModeler diff --git a/supervise-crm-ui/src/views/Process/index.vue b/supervise-crm-ui/src/views/Process/index.vue new file mode 100644 index 00000000..fd40e365 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/index.vue @@ -0,0 +1,467 @@ + + + + + diff --git a/supervise-crm-ui/src/views/Process/lang/zh.js b/supervise-crm-ui/src/views/Process/lang/zh.js new file mode 100644 index 00000000..003c0cc5 --- /dev/null +++ b/supervise-crm-ui/src/views/Process/lang/zh.js @@ -0,0 +1,227 @@ +export default { + // Labels + 'Activate the global connect tool': '激活全局连接工具', + 'Append {type}': '添加 {type}', + 'Add Lane above': '在上面添加道', + 'Divide into two Lanes': '分割成两个道', + 'Divide into three Lanes': '分割成三个道', + 'Add Lane below': '在下面添加道', + 'Append compensation activity': '追加补偿活动', + 'Change type': '修改类型', + 'Connect using Association': '使用关联连接', + 'Connect using Sequence/MessageFlow or Association': '使用顺序/消息流或者关联连接', + 'Connect using DataInputAssociation': '使用数据输入关联连接', + 'Remove': '移除', + 'Activate the hand tool': '激活抓手工具', + 'Activate the lasso tool': '激活套索工具', + 'Activate the create/remove space tool': '激活创建/删除空间工具', + 'Create expanded SubProcess': '创建扩展子过程', + 'Create IntermediateThrowEvent/BoundaryEvent': '创建中间抛出事件/边界事件', + 'Create Pool/Participant': '创建池/参与者', + 'Parallel Multi Instance': '并行多重事件', + 'Sequential Multi Instance': '时序多重事件', + 'DataObjectReference': '数据对象参考', + 'DataStoreReference': '数据存储参考', + 'Loop': '循环', + 'Ad-hoc': '即席', + 'Create {type}': '创建 {type}', + 'Task': '任务', + 'Send Task': '发送任务', + 'Receive Task': '接收任务', + 'User Task': '用户任务', + 'Manual Task': '手工任务', + 'Business Rule Task': '业务规则任务', + 'Service Task': '服务任务', + 'Script Task': '脚本任务', + 'Call Activity': '调用活动', + 'Sub Process (collapsed)': '子流程(折叠的)', + 'Sub Process (expanded)': '子流程(展开的)', + 'Start Event': '开始事件', + 'StartEvent': '开始事件', + 'Intermediate Throw Event': '中间事件', + 'End Event': '结束事件', + 'EndEvent': '结束事件', + 'Create Gateway': '创建网关', + 'Create Intermediate/Boundary Event': '创建中间/边界事件', + 'Message Start Event': '消息开始事件', + 'Timer Start Event': '定时开始事件', + 'Conditional Start Event': '条件开始事件', + 'Signal Start Event': '信号开始事件', + 'Error Start Event': '错误开始事件', + 'Escalation Start Event': '升级开始事件', + 'Compensation Start Event': '补偿开始事件', + 'Message Start Event (non-interrupting)': '消息开始事件(非中断)', + 'Timer Start Event (non-interrupting)': '定时开始事件(非中断)', + 'Conditional Start Event (non-interrupting)': '条件开始事件(非中断)', + 'Signal Start Event (non-interrupting)': '信号开始事件(非中断)', + 'Escalation Start Event (non-interrupting)': '升级开始事件(非中断)', + 'Message Intermediate Catch Event': '消息中间捕获事件', + 'Message Intermediate Throw Event': '消息中间抛出事件', + 'Timer Intermediate Catch Event': '定时中间捕获事件', + 'Escalation Intermediate Throw Event': '升级中间抛出事件', + 'Conditional Intermediate Catch Event': '条件中间捕获事件', + 'Link Intermediate Catch Event': '链接中间捕获事件', + 'Link Intermediate Throw Event': '链接中间抛出事件', + 'Compensation Intermediate Throw Event': '补偿中间抛出事件', + 'Signal Intermediate Catch Event': '信号中间捕获事件', + 'Signal Intermediate Throw Event': '信号中间抛出事件', + 'Message End Event': '消息结束事件', + 'Escalation End Event': '定时结束事件', + 'Error End Event': '错误结束事件', + 'Cancel End Event': '取消结束事件', + 'Compensation End Event': '补偿结束事件', + 'Signal End Event': '信号结束事件', + 'Terminate End Event': '终止结束事件', + 'Message Boundary Event': '消息边界事件', + 'Message Boundary Event (non-interrupting)': '消息边界事件(非中断)', + 'Timer Boundary Event': '定时边界事件', + 'Timer Boundary Event (non-interrupting)': '定时边界事件(非中断)', + 'Escalation Boundary Event': '升级边界事件', + 'Escalation Boundary Event (non-interrupting)': '升级边界事件(非中断)', + 'Conditional Boundary Event': '条件边界事件', + 'Conditional Boundary Event (non-interrupting)': '条件边界事件(非中断)', + 'Error Boundary Event': '错误边界事件', + 'Cancel Boundary Event': '取消边界事件', + 'Signal Boundary Event': '信号边界事件', + 'Signal Boundary Event (non-interrupting)': '信号边界事件(非中断)', + 'Compensation Boundary Event': '补偿边界事件', + 'Exclusive Gateway': '互斥网关', + 'Parallel Gateway': '并行网关', + 'Inclusive Gateway': '相容网关', + 'Complex Gateway': '复杂网关', + 'Event based Gateway': '事件网关', + 'Transaction': '转运', + 'Sub Process': '子流程', + 'Event Sub Process': '事件子流程', + 'Collapsed Pool': '折叠池', + 'Expanded Pool': '展开池', + // Errors + 'no parent for {element} in {parent}': '在{parent}里,{element}没有父类', + 'no shape type specified': '没有指定的形状类型', + 'flow elements must be children of pools/participants': '流元素必须是池/参与者的子类', + 'out of bounds release': 'out of bounds release', + 'more than {count} child lanes': '子道大于{count} ', + 'element required': '元素不能为空', + 'diagram not part of bpmn:Definitions': '流程图不符合bpmn规范', + 'no diagram to display': '没有可展示的流程图', + 'no process or collaboration to display': '没有可展示的流程/协作', + 'element {element} referenced by {referenced}#{property} not yet drawn': '由{referenced}#{property}引用的{element}元素仍未绘制', + 'already rendered {element}': '{element} 已被渲染', + 'failed to import {element}': '导入{element}失败', + // 属性面板的参数 + 'Id': '标识', + 'Name': '名称', + 'General': '常规', + 'Details': '详情', + 'Message Name': '消息名称', + 'Message': '消息', + 'Initiator': '创建者', + 'Asynchronous Continuations': '持续异步', + 'Asynchronous Before': '异步前', + 'Asynchronous After': '异步后', + 'Job Configuration': '工作配置', + 'Exclusive': '排除', + 'Job Priority': '工作优先级', + 'Retry Time Cycle': '重试时间周期', + 'Documentation': '文档', + 'Element Documentation': '元素文档', + 'History Configuration': '历史配置', + 'History Time To Live': '历史的生存时间', + 'Forms': '表单', + 'Form Key': '表单key', + 'Form Fields': '表单字段', + 'Business Key': '业务key', + 'Form Field': '表单字段', + 'ID': '编号', + 'Type': '类型', + 'Label': '名称', + 'Default Value': '默认值', + 'Validation': '校验', + 'Add Constraint': '添加约束', + 'Config': '配置', + 'Properties': '属性', + 'Add Property': '添加属性', + 'Value': '值', + 'Listeners': '监听器', + 'Execution Listener': '执行监听', + 'Event Type': '事件类型', + 'Listener Type': '监听器类型', + 'Java Class': 'Java类', + 'Expression': '表达式', + 'Must provide a value': '必须提供一个值', + 'Delegate Expression': '代理表达式', + 'Script': '脚本', + 'Script Format': '脚本格式', + 'Script Type': '脚本类型', + 'Inline Script': '内联脚本', + 'External Script': '外部脚本', + 'Resource': '资源', + 'Field Injection': '字段注入', + 'Extensions': '扩展', + 'Input/Output': '输入/输出', + 'Input Parameters': '输入参数', + 'Output Parameters': '输出参数', + 'Parameters': '参数', + 'Output Parameter': '输出参数', + 'Timer Definition Type': '定时器定义类型', + 'Timer Definition': '定时器定义', + 'Date': '日期', + 'Duration': '持续', + 'Cycle': '循环', + 'Signal': '信号', + 'Signal Name': '信号名称', + 'Escalation': '升级', + 'Error': '错误', + 'Link Name': '链接名称', + 'Condition': '条件名称', + 'Variable Name': '变量名称', + 'Variable Event': '变量事件', + 'Specify more than one variable change event as a comma separated list.': '多个变量事件以逗号隔开', + 'Wait for Completion': '等待完成', + 'Activity Ref': '活动参考', + 'Version Tag': '版本标签', + 'Executable': '可执行文件', + 'External Task Configuration': '扩展任务配置', + 'Task Priority': '任务优先级', + 'External': '外部', + 'Connector': '连接器', + 'Must configure Connector': '必须配置连接器', + 'Connector Id': '连接器编号', + 'Implementation': '实现方式', + 'Field Injections': '字段注入', + 'Fields': '字段', + 'Result Variable': '结果变量', + 'Topic': '主题', + 'Configure Connector': '配置连接器', + 'Input Parameter': '输入参数', + 'Assignee': '代理人', + 'Candidate Users': '候选用户', + 'Candidate Groups': '候选组', + 'Due Date': '到期时间', + 'Follow Up Date': '跟踪日期', + 'Priority': '优先级', + 'The follow up date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)': '跟踪日期必须符合EL表达式,如: ${someDate} ,或者一个ISO标准日期,如:2015-06-26T09:54:00', + 'The due date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)': '跟踪日期必须符合EL表达式,如: ${someDate} ,或者一个ISO标准日期,如:2015-06-26T09:54:00', + 'Variables': '变量' +} + +export const NodeName = { + 'bpmn:Process': '流程', + 'bpmn:StartEvent': '开始事件', + 'bpmn:IntermediateThrowEvent': '中间事件', + 'bpmn:Task': '任务', + 'bpmn:SendTask': '发送任务', + 'bpmn:ReceiveTask': '接收任务', + 'bpmn:UserTask': '用户任务', + 'bpmn:ManualTask': '手工任务', + 'bpmn:BusinessRuleTask': '业务规则任务', + 'bpmn:ServiceTask': '服务任务', + 'bpmn:ScriptTask': '脚本任务', + 'bpmn:EndEvent': '结束事件', + 'bpmn:SequenceFlow': '流程线', + 'bpmn:ExclusiveGateway': '互斥网关', + 'bpmn:ParallelGateway': '并行网关', + 'bpmn:InclusiveGateway': '相容网关', + 'bpmn:ComplexGateway': '复杂网关', + 'bpmn:EventBasedGateway': '事件网关' +} diff --git a/supervise-crm-ui/src/views/index.vue b/supervise-crm-ui/src/views/index.vue new file mode 100644 index 00000000..32f742ca --- /dev/null +++ b/supervise-crm-ui/src/views/index.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/supervise-crm-ui/src/views/kucun/ckdb/index.vue b/supervise-crm-ui/src/views/kucun/ckdb/index.vue new file mode 100644 index 00000000..b7c7dcce --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/ckdb/index.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/supervise-crm-ui/src/views/kucun/ckmx/index.vue b/supervise-crm-ui/src/views/kucun/ckmx/index.vue new file mode 100644 index 00000000..d0aeeaa7 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/ckmx/index.vue @@ -0,0 +1,49 @@ + + + + diff --git a/supervise-crm-ui/src/views/kucun/cx.vue b/supervise-crm-ui/src/views/kucun/cx.vue new file mode 100644 index 00000000..5e79a026 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/cx.vue @@ -0,0 +1,48 @@ + + + + + diff --git a/supervise-crm-ui/src/views/kucun/hzsjxz/index.vue b/supervise-crm-ui/src/views/kucun/hzsjxz/index.vue new file mode 100644 index 00000000..c7a9dab6 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/hzsjxz/index.vue @@ -0,0 +1,53 @@ + + + + diff --git a/supervise-crm-ui/src/views/kucun/kcxxcx/index.vue b/supervise-crm-ui/src/views/kucun/kcxxcx/index.vue new file mode 100644 index 00000000..3a9894d6 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/kcxxcx/index.vue @@ -0,0 +1,191 @@ + + + + diff --git a/supervise-crm-ui/src/views/kucun/pfsjgl/index.vue b/supervise-crm-ui/src/views/kucun/pfsjgl/index.vue new file mode 100644 index 00000000..9082ed42 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/pfsjgl/index.vue @@ -0,0 +1,283 @@ + + + + diff --git a/supervise-crm-ui/src/views/kucun/rkmx/index.vue b/supervise-crm-ui/src/views/kucun/rkmx/index.vue new file mode 100644 index 00000000..cacc5751 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/rkmx/index.vue @@ -0,0 +1,381 @@ + + + + diff --git a/supervise-crm-ui/src/views/kucun/xssjgl/index.vue b/supervise-crm-ui/src/views/kucun/xssjgl/index.vue new file mode 100644 index 00000000..1b636101 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/xssjgl/index.vue @@ -0,0 +1,283 @@ + + + + diff --git a/supervise-crm-ui/src/views/kucun/zhsj/index.vue b/supervise-crm-ui/src/views/kucun/zhsj/index.vue new file mode 100644 index 00000000..83e1aef7 --- /dev/null +++ b/supervise-crm-ui/src/views/kucun/zhsj/index.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/supervise-crm-ui/src/views/login/login.vue b/supervise-crm-ui/src/views/login/login.vue new file mode 100644 index 00000000..985a79b2 --- /dev/null +++ b/supervise-crm-ui/src/views/login/login.vue @@ -0,0 +1,232 @@ + + + + + + diff --git a/supervise-crm-ui/src/views/redirect/index.vue b/supervise-crm-ui/src/views/redirect/index.vue new file mode 100644 index 00000000..db4c1d66 --- /dev/null +++ b/supervise-crm-ui/src/views/redirect/index.vue @@ -0,0 +1,12 @@ + diff --git a/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagement.vue b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagement.vue new file mode 100644 index 00000000..7bee16e2 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagement.vue @@ -0,0 +1,308 @@ + + + + diff --git a/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementAdd.vue b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementAdd.vue new file mode 100644 index 00000000..981924bd --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementAdd.vue @@ -0,0 +1,422 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementInfo.vue b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementInfo.vue new file mode 100644 index 00000000..bf288dc6 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/purchaseapplicationmanagementInfo.vue @@ -0,0 +1,278 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/yksq.vue b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/yksq.vue new file mode 100644 index 00000000..0e3b4bc2 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/purchaseapplicationmanagement/yksq.vue @@ -0,0 +1,278 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/supplierbankinfo/relation/relevancysupplierbankAdd.vue b/supervise-crm-ui/src/views/supervise/supplierbankinfo/relation/relevancysupplierbankAdd.vue new file mode 100644 index 00000000..9a5ddd7a --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/supplierbankinfo/relation/relevancysupplierbankAdd.vue @@ -0,0 +1,150 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/supplierbankinfo/relation/relevancysupplierbankInfo.vue b/supervise-crm-ui/src/views/supervise/supplierbankinfo/relation/relevancysupplierbankInfo.vue new file mode 100644 index 00000000..8a1ea1f9 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/supplierbankinfo/relation/relevancysupplierbankInfo.vue @@ -0,0 +1,157 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfo.vue b/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfo.vue new file mode 100644 index 00000000..32bf4825 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfo.vue @@ -0,0 +1,308 @@ + + + + diff --git a/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfoAdd.vue b/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfoAdd.vue new file mode 100644 index 00000000..54db8601 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfoAdd.vue @@ -0,0 +1,338 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfoInfo.vue b/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfoInfo.vue new file mode 100644 index 00000000..edf04ac0 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/supplierbankinfo/supplierbankinfoInfo.vue @@ -0,0 +1,212 @@ + + + + + diff --git a/supervise-crm-ui/src/views/supervise/tobaccopurchaseapplication/tobaccopurchaseapplicationAdd.vue b/supervise-crm-ui/src/views/supervise/tobaccopurchaseapplication/tobaccopurchaseapplicationAdd.vue new file mode 100644 index 00000000..3f354888 --- /dev/null +++ b/supervise-crm-ui/src/views/supervise/tobaccopurchaseapplication/tobaccopurchaseapplicationAdd.vue @@ -0,0 +1,324 @@ + + + + + diff --git a/supervise-crm-ui/tests/unit/.eslintrc.js b/supervise-crm-ui/tests/unit/.eslintrc.js new file mode 100644 index 00000000..958d51ba --- /dev/null +++ b/supervise-crm-ui/tests/unit/.eslintrc.js @@ -0,0 +1,5 @@ +module.exports = { + env: { + jest: true + } +} diff --git a/supervise-crm-ui/tests/unit/components/Breadcrumb.spec.js b/supervise-crm-ui/tests/unit/components/Breadcrumb.spec.js new file mode 100644 index 00000000..1d94c8fc --- /dev/null +++ b/supervise-crm-ui/tests/unit/components/Breadcrumb.spec.js @@ -0,0 +1,98 @@ +import { mount, createLocalVue } from '@vue/test-utils' +import VueRouter from 'vue-router' +import ElementUI from 'element-ui' +import Breadcrumb from '@/components/Breadcrumb/index.vue' + +const localVue = createLocalVue() +localVue.use(VueRouter) +localVue.use(ElementUI) + +const routes = [ + { + path: '/', + name: 'home', + children: [{ + path: 'dashboard', + name: 'dashboard' + }] + }, + { + path: '/menu', + name: 'menu', + children: [{ + path: 'menu1', + name: 'menu1', + meta: { title: 'menu1' }, + children: [{ + path: 'menu1-1', + name: 'menu1-1', + meta: { title: 'menu1-1' } + }, + { + path: 'menu1-2', + name: 'menu1-2', + redirect: 'noredirect', + meta: { title: 'menu1-2' }, + children: [{ + path: 'menu1-2-1', + name: 'menu1-2-1', + meta: { title: 'menu1-2-1' } + }, + { + path: 'menu1-2-2', + name: 'menu1-2-2' + }] + }] + }] + }] + +const router = new VueRouter({ + routes +}) + +describe('Breadcrumb.vue', () => { + const wrapper = mount(Breadcrumb, { + localVue, + router + }) + it('dashboard', () => { + router.push('/dashboard') + const len = wrapper.findAll('.el-breadcrumb__inner').length + expect(len).toBe(1) + }) + it('normal route', () => { + router.push('/menu/menu1') + const len = wrapper.findAll('.el-breadcrumb__inner').length + expect(len).toBe(2) + }) + it('nested route', () => { + router.push('/menu/menu1/menu1-2/menu1-2-1') + const len = wrapper.findAll('.el-breadcrumb__inner').length + expect(len).toBe(4) + }) + it('no meta.title', () => { + router.push('/menu/menu1/menu1-2/menu1-2-2') + const len = wrapper.findAll('.el-breadcrumb__inner').length + expect(len).toBe(3) + }) + // it('click link', () => { + // router.push('/menu/menu1/menu1-2/menu1-2-2') + // const breadcrumbArray = wrapper.findAll('.el-breadcrumb__inner') + // const second = breadcrumbArray.at(1) + // console.log(breadcrumbArray) + // const href = second.find('a').attributes().href + // expect(href).toBe('#/menu/menu1') + // }) + // it('noRedirect', () => { + // router.push('/menu/menu1/menu1-2/menu1-2-1') + // const breadcrumbArray = wrapper.findAll('.el-breadcrumb__inner') + // const redirectBreadcrumb = breadcrumbArray.at(2) + // expect(redirectBreadcrumb.contains('a')).toBe(false) + // }) + it('last breadcrumb', () => { + router.push('/menu/menu1/menu1-2/menu1-2-1') + const breadcrumbArray = wrapper.findAll('.el-breadcrumb__inner') + const redirectBreadcrumb = breadcrumbArray.at(3) + expect(redirectBreadcrumb.contains('a')).toBe(false) + }) +}) diff --git a/supervise-crm-ui/tests/unit/components/Hamburger.spec.js b/supervise-crm-ui/tests/unit/components/Hamburger.spec.js new file mode 100644 index 00000000..01ea303a --- /dev/null +++ b/supervise-crm-ui/tests/unit/components/Hamburger.spec.js @@ -0,0 +1,18 @@ +import { shallowMount } from '@vue/test-utils' +import Hamburger from '@/components/Hamburger/index.vue' +describe('Hamburger.vue', () => { + it('toggle click', () => { + const wrapper = shallowMount(Hamburger) + const mockFn = jest.fn() + wrapper.vm.$on('toggleClick', mockFn) + wrapper.find('.hamburger').trigger('click') + expect(mockFn).toBeCalled() + }) + it('prop isActive', () => { + const wrapper = shallowMount(Hamburger) + wrapper.setProps({ isActive: true }) + expect(wrapper.contains('.is-active')).toBe(true) + wrapper.setProps({ isActive: false }) + expect(wrapper.contains('.is-active')).toBe(false) + }) +}) diff --git a/supervise-crm-ui/tests/unit/components/SvgIcon.spec.js b/supervise-crm-ui/tests/unit/components/SvgIcon.spec.js new file mode 100644 index 00000000..31467a9f --- /dev/null +++ b/supervise-crm-ui/tests/unit/components/SvgIcon.spec.js @@ -0,0 +1,22 @@ +import { shallowMount } from '@vue/test-utils' +import SvgIcon from '@/components/SvgIcon/index.vue' +describe('SvgIcon.vue', () => { + it('iconClass', () => { + const wrapper = shallowMount(SvgIcon, { + propsData: { + iconClass: 'test' + } + }) + expect(wrapper.find('use').attributes().href).toBe('#icon-test') + }) + it('className', () => { + const wrapper = shallowMount(SvgIcon, { + propsData: { + iconClass: 'test' + } + }) + expect(wrapper.classes().length).toBe(1) + wrapper.setProps({ className: 'test' }) + expect(wrapper.classes().includes('test')).toBe(true) + }) +}) diff --git a/supervise-crm-ui/tests/unit/utils/formatTime.spec.js b/supervise-crm-ui/tests/unit/utils/formatTime.spec.js new file mode 100644 index 00000000..24e165b4 --- /dev/null +++ b/supervise-crm-ui/tests/unit/utils/formatTime.spec.js @@ -0,0 +1,30 @@ +import { formatTime } from '@/utils/index.js' + +describe('Utils:formatTime', () => { + const d = new Date('2018-07-13 17:54:01') // "2018-07-13 17:54:01" + const retrofit = 5 * 1000 + + it('ten digits timestamp', () => { + expect(formatTime((d / 1000).toFixed(0))).toBe('7月13日17时54分') + }) + it('test now', () => { + expect(formatTime(+new Date() - 1)).toBe('刚刚') + }) + it('less two minute', () => { + expect(formatTime(+new Date() - 60 * 2 * 1000 + retrofit)).toBe('2分钟前') + }) + it('less two hour', () => { + expect(formatTime(+new Date() - 60 * 60 * 2 * 1000 + retrofit)).toBe('2小时前') + }) + it('less one day', () => { + expect(formatTime(+new Date() - 60 * 60 * 24 * 1 * 1000)).toBe('1天前') + }) + it('more than one day', () => { + expect(formatTime(d)).toBe('7月13日17时54分') + }) + it('format', () => { + expect(formatTime(d, '{y}-{m}-{d} {h}:{i}')).toBe('2018-07-13 17:54') + expect(formatTime(d, '{y}-{m}-{d}')).toBe('2018-07-13') + expect(formatTime(d, '{y}/{m}/{d} {h}-{i}')).toBe('2018/07/13 17-54') + }) +}) diff --git a/supervise-crm-ui/tests/unit/utils/param2Obj.spec.js b/supervise-crm-ui/tests/unit/utils/param2Obj.spec.js new file mode 100644 index 00000000..e106ed88 --- /dev/null +++ b/supervise-crm-ui/tests/unit/utils/param2Obj.spec.js @@ -0,0 +1,14 @@ +import { param2Obj } from '@/utils/index.js' +describe('Utils:param2Obj', () => { + const url = 'https://github.com/PanJiaChen/vue-element-admin?name=bill&age=29&sex=1&field=dGVzdA==&key=%E6%B5%8B%E8%AF%95' + + it('param2Obj test', () => { + expect(param2Obj(url)).toEqual({ + name: 'bill', + age: '29', + sex: '1', + field: window.btoa('test'), + key: '测试' + }) + }) +}) diff --git a/supervise-crm-ui/tests/unit/utils/parseTime.spec.js b/supervise-crm-ui/tests/unit/utils/parseTime.spec.js new file mode 100644 index 00000000..56045af4 --- /dev/null +++ b/supervise-crm-ui/tests/unit/utils/parseTime.spec.js @@ -0,0 +1,35 @@ +import { parseTime } from '@/utils/index.js' + +describe('Utils:parseTime', () => { + const d = new Date('2018-07-13 17:54:01') // "2018-07-13 17:54:01" + it('timestamp', () => { + expect(parseTime(d)).toBe('2018-07-13 17:54:01') + }) + it('timestamp string', () => { + expect(parseTime((d + ''))).toBe('2018-07-13 17:54:01') + }) + it('ten digits timestamp', () => { + expect(parseTime((d / 1000).toFixed(0))).toBe('2018-07-13 17:54:01') + }) + it('new Date', () => { + expect(parseTime(new Date(d))).toBe('2018-07-13 17:54:01') + }) + it('format', () => { + expect(parseTime(d, '{y}-{m}-{d} {h}:{i}')).toBe('2018-07-13 17:54') + expect(parseTime(d, '{y}-{m}-{d}')).toBe('2018-07-13') + expect(parseTime(d, '{y}/{m}/{d} {h}-{i}')).toBe('2018/07/13 17-54') + }) + it('get the day of the week', () => { + expect(parseTime(d, '{a}')).toBe('五') // 星期五 + }) + it('get the day of the week', () => { + expect(parseTime(+d + 1000 * 60 * 60 * 24 * 2, '{a}')).toBe('日') // 星期日 + }) + it('empty argument', () => { + expect(parseTime()).toBeNull() + }) + + it('null', () => { + expect(parseTime(null)).toBeNull() + }) +}) diff --git a/supervise-crm-ui/tests/unit/utils/validate.spec.js b/supervise-crm-ui/tests/unit/utils/validate.spec.js new file mode 100644 index 00000000..f774905b --- /dev/null +++ b/supervise-crm-ui/tests/unit/utils/validate.spec.js @@ -0,0 +1,17 @@ +import { validUsername, isExternal } from '@/utils/validate.js' + +describe('Utils:validate', () => { + it('validUsername', () => { + expect(validUsername('admin')).toBe(true) + expect(validUsername('editor')).toBe(true) + expect(validUsername('xxxx')).toBe(false) + }) + it('isExternal', () => { + expect(isExternal('https://github.com/PanJiaChen/vue-element-admin')).toBe(true) + expect(isExternal('http://github.com/PanJiaChen/vue-element-admin')).toBe(true) + expect(isExternal('github.com/PanJiaChen/vue-element-admin')).toBe(false) + expect(isExternal('/dashboard')).toBe(false) + expect(isExternal('./dashboard')).toBe(false) + expect(isExternal('dashboard')).toBe(false) + }) +}) diff --git a/supervise-crm-ui/vue.config.js b/supervise-crm-ui/vue.config.js new file mode 100644 index 00000000..e6e7125c --- /dev/null +++ b/supervise-crm-ui/vue.config.js @@ -0,0 +1,142 @@ +'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 + +// 如果端口设置为80, +// 使用管理员权限执行命令行。 +// 例如,Mac:sudo npm run +// 可以通过以下方法更改端口: +// port=9528 npm run dev或npm run dev--port=9528 +const port = process.env.port || process.env.npm_config_port || 9531 // dev port + +// 所有配置项说明都可以在中找到https://cli.vuejs.org/config/ +module.exports = { + /** + *如果计划在子路径下部署站点,则需要设置publicPath, + *例如GitHub页面。如果您计划将站点部署到https://foo.github.io/bar/, + *然后publicPath应设置为“/bar/”。 + *在大多数情况下,请使用“/”!!! + *详细信息:https://cli.vuejs.org/config/#publicpath + */ + publicPath: process.env.NODE_ENV === 'production' ? '/crm/' : '/', + outputDir: 'crm-ui', + assetsDir: 'static', + lintOnSave: process.env.NODE_ENV === 'development', + productionSourceMap: false, + devServer: { + hot: true, // 自动保存 + host: '0.0.0.0', + port: port, + open: true, + overlay: { + warnings: false, + errors: true + }, + proxy: { + '/api': { // 匹配所有以 '/api'开头的请求路径 + // target: 'http://192.168.1.109:8111', + target: process.env.VUE_APP_URL, // 代理目标的基础路径 + changeOrigin: true, // 支持跨域 + pathRewrite: { // 重写路径: 去掉路径中开头的'/api' + '^/api': '' + } + }, + '/upload': { // 匹配所有以 '/api'开头的请求路径 + // target: 'http://120.46.131.15:8111', + target: process.env.VUE_APP_URL, // 代理目标的基础路径 + changeOrigin: true, // 支持跨域 + pathRewrite: { // 重写路径: 去掉路径中开头的'/api' + '^/upload': '' + } + } + }, + disableHostCheck: true + }, + configureWebpack: { + // 在webpack的name字段中提供应用程序的标题,以便 + // 它可以在索引.html插入正确的标题。 + name: name, + resolve: { + alias: { + '@': resolve('src'), + '@C': resolve('src/components') + } + } + }, + chainWebpack(config) { + // 它可以提高第一屏的速度,建议打开预加载 + config.plugin('preload').tap(() => [{ + rel: 'preload', + // 忽略 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' + }]) + + // 当有很多页面时,会导致太多无意义的请求 + config.plugins.delete('prefetch') + + // set svg-sprite-loader 设置 svg精灵加载程序 + 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') + } + ) + } +}