├── .gitignore ├── README.md ├── index.js ├── package.json ├── rollup.config.js ├── src ├── apis-list.ts ├── apis.ts ├── index.ts ├── program.ts └── runtime.ts ├── tsconfig.json ├── types ├── apis-list.d.ts ├── apis.d.ts ├── index.d.ts ├── program.d.ts ├── runtime.d.ts └── shims-qy.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules 3 | .DS_Store 4 | yarn.lock 5 | package-lock.json 6 | types/apis-list.d.ts 7 | types/apis.d.ts 8 | types/index.d.ts 9 | types/program.d.ts 10 | types/runtime.d.ts 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `@tarojs/plugin-platform-weapp-qy` 2 | 3 | Taro 插件。用于支持编译为企业微信小程序。 4 | 5 | ## 使用 6 | 7 | #### 1. 配置插件 8 | 9 | ```js 10 | // Taro 项目配置 11 | module.exports = { 12 | // ... 13 | plugins: [ 14 | '@tarojs/plugin-platform-weapp-qy' 15 | ] 16 | } 17 | ``` 18 | 19 | #### 2. 编译为企业微信小程序 20 | 21 | ```shell 22 | taro build --type qywx 23 | taro build --type qywx --watch 24 | ``` 25 | 26 | #### 其它 27 | 28 | ##### 平台判断 29 | 30 | ```js 31 | if (process.TARO_ENV === 'qywx') { 32 | // ... 33 | } 34 | ``` 35 | 36 | ##### API 37 | 38 | 企业微信小程序拓展了一些独有 API,可以通过 `Taro.qy.xxx` 来调用,如: 39 | 40 | ```js 41 | Taro.qy.openUserProfile() 42 | .then(res => console.log(res)) 43 | ``` 44 | 45 | ## Typings 46 | 47 | 开发者在 `global.d.ts` 中加入 `/// ` 即可获得类型提示。 48 | 49 | 例子: 50 | 51 | ``` 52 | /// 53 | /// 54 | 55 | declare module '*.png'; 56 | declare module '*.gif'; 57 | declare module '*.jpg'; 58 | declare module '*.jpeg'; 59 | declare module '*.svg'; 60 | declare module '*.css'; 61 | declare module '*.less'; 62 | declare module '*.scss'; 63 | declare module '*.sass'; 64 | declare module '*.styl'; 65 | 66 | declare namespace NodeJS { 67 | interface ProcessEnv { 68 | TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'quickapp' | 'qq' | 'jd' 69 | } 70 | } 71 | ``` 72 | 73 | ## License 74 | 75 | MIT License 76 | 77 | Copyright (c) O2Team 78 | 79 | Permission is hereby granted, free of charge, to any person obtaining a copy 80 | of this software and associated documentation files (the "Software"), to deal 81 | in the Software without restriction, including without limitation the rights 82 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 83 | copies of the Software, and to permit persons to whom the Software is 84 | furnished to do so, subject to the following conditions: 85 | 86 | The above copyright notice and this permission notice shall be included in all 87 | copies or substantial portions of the Software. 88 | 89 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 90 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 91 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 92 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 93 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 94 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 95 | SOFTWARE. -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/index.js').default 2 | module.exports.default = module.exports 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@tarojs/plugin-platform-weapp-qy", 3 | "version": "0.0.9", 4 | "description": "企业微信小程序平台插件", 5 | "author": "drchan", 6 | "homepage": "https://github.com/NervJS/taro-plugin-platform-weapp-qy", 7 | "license": "MIT", 8 | "main": "index.js", 9 | "keywords": [ 10 | "taro" 11 | ], 12 | "files": [ 13 | "index.js", 14 | "dist", 15 | "types" 16 | ], 17 | "types": "types/index.d.ts", 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/NervJS/taro-plugin-platform-weapp-qy.git" 21 | }, 22 | "scripts": { 23 | "build": "rollup -c", 24 | "dev": "rollup -c -w" 25 | }, 26 | "bugs": { 27 | "url": "https://github.com/NervJS/taro-plugin-platform-weapp-qy/issues" 28 | }, 29 | "peerDependencies": { 30 | "@tarojs/service": "^3.1.3", 31 | "@tarojs/shared": "^3.1.3", 32 | "@tarojs/plugin-platform-weapp": "^3.1.3" 33 | }, 34 | "devDependencies": { 35 | "rollup": "^2.29.0", 36 | "rollup-plugin-typescript2": "^0.27.3", 37 | "typescript": "^4.0.3" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | const { join } = require('path') 2 | const typescript = require('rollup-plugin-typescript2') 3 | const cwd = __dirname 4 | 5 | const base = { 6 | external: ['@tarojs/shared', '@tarojs/service', '@tarojs/plugin-platform-weapp/dist/runtime-utils'], 7 | plugins: [typescript({ 8 | useTsconfigDeclarationDir: true 9 | })] 10 | } 11 | 12 | // 供 CLI 编译时使用的 Taro 插件入口 13 | const comileConfig = { 14 | input: join(cwd, 'src/index.ts'), 15 | output: { 16 | file: join(cwd, 'dist/index.js'), 17 | format: 'cjs', 18 | sourcemap: true, 19 | exports: 'named' 20 | }, 21 | ...base 22 | } 23 | 24 | // 供 Loader 使用的运行时入口 25 | const runtimeConfig = { 26 | input: join(cwd, 'src/runtime.ts'), 27 | output: { 28 | file: join(cwd, 'dist/runtime.js'), 29 | format: 'es', 30 | sourcemap: true 31 | }, 32 | ...base 33 | } 34 | 35 | module.exports = [comileConfig, runtimeConfig] 36 | -------------------------------------------------------------------------------- /src/apis-list.ts: -------------------------------------------------------------------------------- 1 | export const needPromiseApis = new Set([ 2 | 'login', 3 | 'checkSession', 4 | 'getEnterpriseUserInfo', 5 | 'getAvatar', 6 | 'getQrCode', 7 | 'selectEnterpriseContact', 8 | 'selectExternalContact', 9 | 'openUserProfile', 10 | 'openEnterpriseChat', 11 | 'getCurExternalContact', 12 | 'shareToExternalContact', 13 | 'getCurExternalChat', 14 | 'sendChatMessage', 15 | 'shareToExternalChat', 16 | 'getContext', 17 | 'getNFCReaderState', 18 | 'startNFCReader', 19 | 'stopNFCReader' 20 | ]) 21 | -------------------------------------------------------------------------------- /src/apis.ts: -------------------------------------------------------------------------------- 1 | import { needPromiseApis } from './apis-list' 2 | 3 | declare const wx: any 4 | 5 | function processApis (taro) { 6 | taro.qy = {} 7 | 8 | Object.keys(wx.qy || {}).forEach(key => { 9 | if (needPromiseApis.has(key)) { 10 | taro.qy[key] = (options, ...args) => { 11 | options = options || {} 12 | const obj = Object.assign({}, options) 13 | if (typeof options === 'string') { 14 | if (args.length) { 15 | return wx.qy[key](options, ...args) 16 | } 17 | return wx.qy[key](options) 18 | } 19 | 20 | return new Promise((resolve, reject) => { 21 | ['fail', 'success', 'complete'].forEach((k) => { 22 | obj[k] = (res) => { 23 | options[k] && options[k](res) 24 | if (k === 'success') { 25 | resolve(res) 26 | } else if (k === 'fail') { 27 | reject(res) 28 | } 29 | } 30 | }) 31 | if (args.length) { 32 | wx.qy[key](obj, ...args) 33 | } else { 34 | wx.qy[key](obj) 35 | } 36 | }) 37 | } 38 | } else { 39 | const target = wx.qy[key] 40 | if (typeof target === 'function') { 41 | taro.qy[key] = (...args) => target.apply(wx.qy, args) 42 | } else { 43 | taro.qy[key] = target 44 | } 45 | } 46 | }) 47 | } 48 | 49 | 50 | export function initQywxApi (taro) { 51 | processApis(taro) 52 | } 53 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import QYWX from './program' 2 | import type { IPluginContext } from '@tarojs/service' 3 | 4 | export default (ctx: IPluginContext) => { 5 | ctx.registerPlatform({ 6 | name: 'qywx', 7 | useConfigName: 'mini', 8 | async fn ({ config }) { 9 | const program = new QYWX(ctx, config) 10 | await program.start() 11 | } 12 | }) 13 | } 14 | -------------------------------------------------------------------------------- /src/program.ts: -------------------------------------------------------------------------------- 1 | import { Weapp } from '@tarojs/plugin-platform-weapp' 2 | 3 | export default class QYWX extends Weapp { 4 | platform = 'qywx' 5 | runtimePath = `@tarojs/plugin-platform-weapp-qy/dist/runtime` 6 | } 7 | -------------------------------------------------------------------------------- /src/runtime.ts: -------------------------------------------------------------------------------- 1 | import { mergeReconciler, mergeInternalComponents } from '@tarojs/shared' 2 | import { components, initNativeApi, hostConfig } from '@tarojs/plugin-platform-weapp/dist/runtime-utils' 3 | import { initQywxApi } from './apis' 4 | 5 | hostConfig.initNativeApi = function (taro) { 6 | initNativeApi(taro) 7 | initQywxApi(taro) 8 | } 9 | 10 | mergeReconciler(hostConfig) 11 | mergeInternalComponents(components) 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2017", 4 | "module": "ES2015", 5 | "rootDir": "./src", 6 | "outDir": "dist", 7 | "sourceMap": true, 8 | "baseUrl": ".", 9 | "noImplicitAny": false, 10 | "noUnusedLocals": true, 11 | "removeComments": false, 12 | "strictNullChecks": true, 13 | "allowSyntheticDefaultImports": true, 14 | "experimentalDecorators": true, 15 | "moduleResolution": "node", 16 | "declaration": true, 17 | "declarationDir": "types" 18 | }, 19 | "include": [ 20 | "./src" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /types/apis-list.d.ts: -------------------------------------------------------------------------------- 1 | export declare const needPromiseApis: Set; 2 | -------------------------------------------------------------------------------- /types/apis.d.ts: -------------------------------------------------------------------------------- 1 | export declare function initQywxApi(taro: any): void; 2 | -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { IPluginContext } from '@tarojs/service'; 2 | declare const _default: (ctx: IPluginContext) => void; 3 | export default _default; 4 | -------------------------------------------------------------------------------- /types/program.d.ts: -------------------------------------------------------------------------------- 1 | import { Weapp } from '@tarojs/plugin-platform-weapp'; 2 | export default class QYWX extends Weapp { 3 | platform: string; 4 | runtimePath: string; 5 | } 6 | -------------------------------------------------------------------------------- /types/runtime.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /types/shims-qy.d.ts: -------------------------------------------------------------------------------- 1 | import Taro from '@tarojs/taro' 2 | 3 | declare module '@tarojs/taro' { 4 | interface qy { 5 | canIUse (api: string): boolean 6 | login (options: any): void 7 | checkSession (options: any): void 8 | getEnterpriseUserInfo (options: any): void 9 | getAvatar (options: any): void 10 | getQrCode (options: any): void 11 | selectEnterpriseContact (options: any): void 12 | selectExternalContact (options: any): void 13 | openUserProfile (options: any): void 14 | openEnterpriseChat (options: any): void 15 | getCurExternalContact (options: any): void 16 | shareToExternalContact (options: any): void 17 | getCurExternalChat (options: any): void 18 | sendChatMessage (options: any): void 19 | shareToExternalChat (options: any): void 20 | getContext (options: any): void 21 | getNFCReaderState (options: any): void 22 | startNFCReader (options: any): void 23 | stopNFCReader (options: any): void 24 | } 25 | interface TaroStatic { 26 | qy: qy 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.1.0": 6 | "integrity" "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==" 7 | "resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz" 8 | "version" "2.1.2" 9 | dependencies: 10 | "@jridgewell/trace-mapping" "^0.3.0" 11 | 12 | "@babel/code-frame@^7.16.7": 13 | "integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==" 14 | "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz" 15 | "version" "7.16.7" 16 | dependencies: 17 | "@babel/highlight" "^7.16.7" 18 | 19 | "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.0", "@babel/compat-data@^7.17.7": 20 | "integrity" "sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==" 21 | "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz" 22 | "version" "7.17.7" 23 | 24 | "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.12.0", "@babel/core@^7.13.0", "@babel/core@^7.14.5", "@babel/core@^7.4.0-0": 25 | "integrity" "sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==" 26 | "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz" 27 | "version" "7.17.8" 28 | dependencies: 29 | "@ampproject/remapping" "^2.1.0" 30 | "@babel/code-frame" "^7.16.7" 31 | "@babel/generator" "^7.17.7" 32 | "@babel/helper-compilation-targets" "^7.17.7" 33 | "@babel/helper-module-transforms" "^7.17.7" 34 | "@babel/helpers" "^7.17.8" 35 | "@babel/parser" "^7.17.8" 36 | "@babel/template" "^7.16.7" 37 | "@babel/traverse" "^7.17.3" 38 | "@babel/types" "^7.17.0" 39 | "convert-source-map" "^1.7.0" 40 | "debug" "^4.1.0" 41 | "gensync" "^1.0.0-beta.2" 42 | "json5" "^2.1.2" 43 | "semver" "^6.3.0" 44 | 45 | "@babel/generator@^7.17.3", "@babel/generator@^7.17.7": 46 | "integrity" "sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==" 47 | "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz" 48 | "version" "7.17.7" 49 | dependencies: 50 | "@babel/types" "^7.17.0" 51 | "jsesc" "^2.5.1" 52 | "source-map" "^0.5.0" 53 | 54 | "@babel/helper-annotate-as-pure@^7.16.7": 55 | "integrity" "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==" 56 | "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz" 57 | "version" "7.16.7" 58 | dependencies: 59 | "@babel/types" "^7.16.7" 60 | 61 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7": 62 | "integrity" "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==" 63 | "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz" 64 | "version" "7.16.7" 65 | dependencies: 66 | "@babel/helper-explode-assignable-expression" "^7.16.7" 67 | "@babel/types" "^7.16.7" 68 | 69 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.7": 70 | "integrity" "sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==" 71 | "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz" 72 | "version" "7.17.7" 73 | dependencies: 74 | "@babel/compat-data" "^7.17.7" 75 | "@babel/helper-validator-option" "^7.16.7" 76 | "browserslist" "^4.17.5" 77 | "semver" "^6.3.0" 78 | 79 | "@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7", "@babel/helper-create-class-features-plugin@^7.17.6": 80 | "integrity" "sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==" 81 | "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz" 82 | "version" "7.17.6" 83 | dependencies: 84 | "@babel/helper-annotate-as-pure" "^7.16.7" 85 | "@babel/helper-environment-visitor" "^7.16.7" 86 | "@babel/helper-function-name" "^7.16.7" 87 | "@babel/helper-member-expression-to-functions" "^7.16.7" 88 | "@babel/helper-optimise-call-expression" "^7.16.7" 89 | "@babel/helper-replace-supers" "^7.16.7" 90 | "@babel/helper-split-export-declaration" "^7.16.7" 91 | 92 | "@babel/helper-create-regexp-features-plugin@^7.16.7": 93 | "integrity" "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==" 94 | "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz" 95 | "version" "7.17.0" 96 | dependencies: 97 | "@babel/helper-annotate-as-pure" "^7.16.7" 98 | "regexpu-core" "^5.0.1" 99 | 100 | "@babel/helper-define-polyfill-provider@^0.3.1": 101 | "integrity" "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==" 102 | "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz" 103 | "version" "0.3.1" 104 | dependencies: 105 | "@babel/helper-compilation-targets" "^7.13.0" 106 | "@babel/helper-module-imports" "^7.12.13" 107 | "@babel/helper-plugin-utils" "^7.13.0" 108 | "@babel/traverse" "^7.13.0" 109 | "debug" "^4.1.1" 110 | "lodash.debounce" "^4.0.8" 111 | "resolve" "^1.14.2" 112 | "semver" "^6.1.2" 113 | 114 | "@babel/helper-environment-visitor@^7.16.7": 115 | "integrity" "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==" 116 | "resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz" 117 | "version" "7.16.7" 118 | dependencies: 119 | "@babel/types" "^7.16.7" 120 | 121 | "@babel/helper-explode-assignable-expression@^7.16.7": 122 | "integrity" "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==" 123 | "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz" 124 | "version" "7.16.7" 125 | dependencies: 126 | "@babel/types" "^7.16.7" 127 | 128 | "@babel/helper-function-name@^7.16.7": 129 | "integrity" "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==" 130 | "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz" 131 | "version" "7.16.7" 132 | dependencies: 133 | "@babel/helper-get-function-arity" "^7.16.7" 134 | "@babel/template" "^7.16.7" 135 | "@babel/types" "^7.16.7" 136 | 137 | "@babel/helper-get-function-arity@^7.16.7": 138 | "integrity" "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==" 139 | "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz" 140 | "version" "7.16.7" 141 | dependencies: 142 | "@babel/types" "^7.16.7" 143 | 144 | "@babel/helper-hoist-variables@^7.16.7": 145 | "integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==" 146 | "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz" 147 | "version" "7.16.7" 148 | dependencies: 149 | "@babel/types" "^7.16.7" 150 | 151 | "@babel/helper-member-expression-to-functions@^7.16.7": 152 | "integrity" "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==" 153 | "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz" 154 | "version" "7.17.7" 155 | dependencies: 156 | "@babel/types" "^7.17.0" 157 | 158 | "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7": 159 | "integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==" 160 | "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz" 161 | "version" "7.16.7" 162 | dependencies: 163 | "@babel/types" "^7.16.7" 164 | 165 | "@babel/helper-module-transforms@^7.16.7", "@babel/helper-module-transforms@^7.17.7": 166 | "integrity" "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==" 167 | "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz" 168 | "version" "7.17.7" 169 | dependencies: 170 | "@babel/helper-environment-visitor" "^7.16.7" 171 | "@babel/helper-module-imports" "^7.16.7" 172 | "@babel/helper-simple-access" "^7.17.7" 173 | "@babel/helper-split-export-declaration" "^7.16.7" 174 | "@babel/helper-validator-identifier" "^7.16.7" 175 | "@babel/template" "^7.16.7" 176 | "@babel/traverse" "^7.17.3" 177 | "@babel/types" "^7.17.0" 178 | 179 | "@babel/helper-optimise-call-expression@^7.16.7": 180 | "integrity" "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==" 181 | "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz" 182 | "version" "7.16.7" 183 | dependencies: 184 | "@babel/types" "^7.16.7" 185 | 186 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 187 | "integrity" "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==" 188 | "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz" 189 | "version" "7.16.7" 190 | 191 | "@babel/helper-remap-async-to-generator@^7.16.8": 192 | "integrity" "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==" 193 | "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz" 194 | "version" "7.16.8" 195 | dependencies: 196 | "@babel/helper-annotate-as-pure" "^7.16.7" 197 | "@babel/helper-wrap-function" "^7.16.8" 198 | "@babel/types" "^7.16.8" 199 | 200 | "@babel/helper-replace-supers@^7.16.7": 201 | "integrity" "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==" 202 | "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz" 203 | "version" "7.16.7" 204 | dependencies: 205 | "@babel/helper-environment-visitor" "^7.16.7" 206 | "@babel/helper-member-expression-to-functions" "^7.16.7" 207 | "@babel/helper-optimise-call-expression" "^7.16.7" 208 | "@babel/traverse" "^7.16.7" 209 | "@babel/types" "^7.16.7" 210 | 211 | "@babel/helper-simple-access@^7.17.7": 212 | "integrity" "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==" 213 | "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz" 214 | "version" "7.17.7" 215 | dependencies: 216 | "@babel/types" "^7.17.0" 217 | 218 | "@babel/helper-skip-transparent-expression-wrappers@^7.16.0": 219 | "integrity" "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==" 220 | "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz" 221 | "version" "7.16.0" 222 | dependencies: 223 | "@babel/types" "^7.16.0" 224 | 225 | "@babel/helper-split-export-declaration@^7.16.7": 226 | "integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==" 227 | "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz" 228 | "version" "7.16.7" 229 | dependencies: 230 | "@babel/types" "^7.16.7" 231 | 232 | "@babel/helper-validator-identifier@^7.16.7": 233 | "integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" 234 | "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz" 235 | "version" "7.16.7" 236 | 237 | "@babel/helper-validator-option@^7.16.7": 238 | "integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==" 239 | "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz" 240 | "version" "7.16.7" 241 | 242 | "@babel/helper-wrap-function@^7.16.8": 243 | "integrity" "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==" 244 | "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz" 245 | "version" "7.16.8" 246 | dependencies: 247 | "@babel/helper-function-name" "^7.16.7" 248 | "@babel/template" "^7.16.7" 249 | "@babel/traverse" "^7.16.8" 250 | "@babel/types" "^7.16.8" 251 | 252 | "@babel/helpers@^7.17.8": 253 | "integrity" "sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==" 254 | "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz" 255 | "version" "7.17.8" 256 | dependencies: 257 | "@babel/template" "^7.16.7" 258 | "@babel/traverse" "^7.17.3" 259 | "@babel/types" "^7.17.0" 260 | 261 | "@babel/highlight@^7.16.7": 262 | "integrity" "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==" 263 | "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz" 264 | "version" "7.16.10" 265 | dependencies: 266 | "@babel/helper-validator-identifier" "^7.16.7" 267 | "chalk" "^2.0.0" 268 | "js-tokens" "^4.0.0" 269 | 270 | "@babel/parser@^7.16.7", "@babel/parser@^7.17.3", "@babel/parser@^7.17.8": 271 | "integrity" "sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==" 272 | "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz" 273 | "version" "7.17.8" 274 | 275 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7": 276 | "integrity" "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==" 277 | "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz" 278 | "version" "7.16.7" 279 | dependencies: 280 | "@babel/helper-plugin-utils" "^7.16.7" 281 | 282 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.7": 283 | "integrity" "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==" 284 | "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz" 285 | "version" "7.16.7" 286 | dependencies: 287 | "@babel/helper-plugin-utils" "^7.16.7" 288 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 289 | "@babel/plugin-proposal-optional-chaining" "^7.16.7" 290 | 291 | "@babel/plugin-proposal-async-generator-functions@^7.16.8": 292 | "integrity" "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==" 293 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz" 294 | "version" "7.16.8" 295 | dependencies: 296 | "@babel/helper-plugin-utils" "^7.16.7" 297 | "@babel/helper-remap-async-to-generator" "^7.16.8" 298 | "@babel/plugin-syntax-async-generators" "^7.8.4" 299 | 300 | "@babel/plugin-proposal-class-properties@^7.16.7": 301 | "integrity" "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==" 302 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz" 303 | "version" "7.16.7" 304 | dependencies: 305 | "@babel/helper-create-class-features-plugin" "^7.16.7" 306 | "@babel/helper-plugin-utils" "^7.16.7" 307 | 308 | "@babel/plugin-proposal-class-static-block@^7.16.7": 309 | "integrity" "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==" 310 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz" 311 | "version" "7.17.6" 312 | dependencies: 313 | "@babel/helper-create-class-features-plugin" "^7.17.6" 314 | "@babel/helper-plugin-utils" "^7.16.7" 315 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 316 | 317 | "@babel/plugin-proposal-decorators@^7.14.5": 318 | "integrity" "sha512-U69odN4Umyyx1xO1rTII0IDkAEC+RNlcKXtqOblfpzqy1C+aOplb76BQNq0+XdpVkOaPlpEDwd++joY8FNFJKA==" 319 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.8.tgz" 320 | "version" "7.17.8" 321 | dependencies: 322 | "@babel/helper-create-class-features-plugin" "^7.17.6" 323 | "@babel/helper-plugin-utils" "^7.16.7" 324 | "@babel/helper-replace-supers" "^7.16.7" 325 | "@babel/plugin-syntax-decorators" "^7.17.0" 326 | "charcodes" "^0.2.0" 327 | 328 | "@babel/plugin-proposal-dynamic-import@^7.16.7": 329 | "integrity" "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==" 330 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz" 331 | "version" "7.16.7" 332 | dependencies: 333 | "@babel/helper-plugin-utils" "^7.16.7" 334 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 335 | 336 | "@babel/plugin-proposal-export-namespace-from@^7.16.7": 337 | "integrity" "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==" 338 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz" 339 | "version" "7.16.7" 340 | dependencies: 341 | "@babel/helper-plugin-utils" "^7.16.7" 342 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 343 | 344 | "@babel/plugin-proposal-json-strings@^7.16.7": 345 | "integrity" "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==" 346 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz" 347 | "version" "7.16.7" 348 | dependencies: 349 | "@babel/helper-plugin-utils" "^7.16.7" 350 | "@babel/plugin-syntax-json-strings" "^7.8.3" 351 | 352 | "@babel/plugin-proposal-logical-assignment-operators@^7.16.7": 353 | "integrity" "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==" 354 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz" 355 | "version" "7.16.7" 356 | dependencies: 357 | "@babel/helper-plugin-utils" "^7.16.7" 358 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 359 | 360 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7": 361 | "integrity" "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==" 362 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz" 363 | "version" "7.16.7" 364 | dependencies: 365 | "@babel/helper-plugin-utils" "^7.16.7" 366 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 367 | 368 | "@babel/plugin-proposal-numeric-separator@^7.16.7": 369 | "integrity" "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==" 370 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz" 371 | "version" "7.16.7" 372 | dependencies: 373 | "@babel/helper-plugin-utils" "^7.16.7" 374 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 375 | 376 | "@babel/plugin-proposal-object-rest-spread@^7.14.5", "@babel/plugin-proposal-object-rest-spread@^7.16.7": 377 | "integrity" "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==" 378 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz" 379 | "version" "7.17.3" 380 | dependencies: 381 | "@babel/compat-data" "^7.17.0" 382 | "@babel/helper-compilation-targets" "^7.16.7" 383 | "@babel/helper-plugin-utils" "^7.16.7" 384 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 385 | "@babel/plugin-transform-parameters" "^7.16.7" 386 | 387 | "@babel/plugin-proposal-optional-catch-binding@^7.16.7": 388 | "integrity" "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==" 389 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz" 390 | "version" "7.16.7" 391 | dependencies: 392 | "@babel/helper-plugin-utils" "^7.16.7" 393 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 394 | 395 | "@babel/plugin-proposal-optional-chaining@^7.16.7": 396 | "integrity" "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==" 397 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz" 398 | "version" "7.16.7" 399 | dependencies: 400 | "@babel/helper-plugin-utils" "^7.16.7" 401 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 402 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 403 | 404 | "@babel/plugin-proposal-private-methods@^7.16.11": 405 | "integrity" "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==" 406 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz" 407 | "version" "7.16.11" 408 | dependencies: 409 | "@babel/helper-create-class-features-plugin" "^7.16.10" 410 | "@babel/helper-plugin-utils" "^7.16.7" 411 | 412 | "@babel/plugin-proposal-private-property-in-object@^7.16.7": 413 | "integrity" "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==" 414 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz" 415 | "version" "7.16.7" 416 | dependencies: 417 | "@babel/helper-annotate-as-pure" "^7.16.7" 418 | "@babel/helper-create-class-features-plugin" "^7.16.7" 419 | "@babel/helper-plugin-utils" "^7.16.7" 420 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 421 | 422 | "@babel/plugin-proposal-unicode-property-regex@^7.16.7", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 423 | "integrity" "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==" 424 | "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz" 425 | "version" "7.16.7" 426 | dependencies: 427 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 428 | "@babel/helper-plugin-utils" "^7.16.7" 429 | 430 | "@babel/plugin-syntax-async-generators@^7.8.4": 431 | "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" 432 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" 433 | "version" "7.8.4" 434 | dependencies: 435 | "@babel/helper-plugin-utils" "^7.8.0" 436 | 437 | "@babel/plugin-syntax-class-properties@^7.12.13": 438 | "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" 439 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" 440 | "version" "7.12.13" 441 | dependencies: 442 | "@babel/helper-plugin-utils" "^7.12.13" 443 | 444 | "@babel/plugin-syntax-class-static-block@^7.14.5": 445 | "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" 446 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" 447 | "version" "7.14.5" 448 | dependencies: 449 | "@babel/helper-plugin-utils" "^7.14.5" 450 | 451 | "@babel/plugin-syntax-decorators@^7.17.0": 452 | "integrity" "sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==" 453 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz" 454 | "version" "7.17.0" 455 | dependencies: 456 | "@babel/helper-plugin-utils" "^7.16.7" 457 | 458 | "@babel/plugin-syntax-dynamic-import@^7.8.3": 459 | "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" 460 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" 461 | "version" "7.8.3" 462 | dependencies: 463 | "@babel/helper-plugin-utils" "^7.8.0" 464 | 465 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 466 | "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" 467 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" 468 | "version" "7.8.3" 469 | dependencies: 470 | "@babel/helper-plugin-utils" "^7.8.3" 471 | 472 | "@babel/plugin-syntax-json-strings@^7.8.3": 473 | "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" 474 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" 475 | "version" "7.8.3" 476 | dependencies: 477 | "@babel/helper-plugin-utils" "^7.8.0" 478 | 479 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 480 | "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" 481 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" 482 | "version" "7.10.4" 483 | dependencies: 484 | "@babel/helper-plugin-utils" "^7.10.4" 485 | 486 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 487 | "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" 488 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" 489 | "version" "7.8.3" 490 | dependencies: 491 | "@babel/helper-plugin-utils" "^7.8.0" 492 | 493 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 494 | "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" 495 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" 496 | "version" "7.10.4" 497 | dependencies: 498 | "@babel/helper-plugin-utils" "^7.10.4" 499 | 500 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 501 | "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" 502 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" 503 | "version" "7.8.3" 504 | dependencies: 505 | "@babel/helper-plugin-utils" "^7.8.0" 506 | 507 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 508 | "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" 509 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" 510 | "version" "7.8.3" 511 | dependencies: 512 | "@babel/helper-plugin-utils" "^7.8.0" 513 | 514 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 515 | "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" 516 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" 517 | "version" "7.8.3" 518 | dependencies: 519 | "@babel/helper-plugin-utils" "^7.8.0" 520 | 521 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": 522 | "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" 523 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" 524 | "version" "7.14.5" 525 | dependencies: 526 | "@babel/helper-plugin-utils" "^7.14.5" 527 | 528 | "@babel/plugin-syntax-top-level-await@^7.14.5": 529 | "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" 530 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" 531 | "version" "7.14.5" 532 | dependencies: 533 | "@babel/helper-plugin-utils" "^7.14.5" 534 | 535 | "@babel/plugin-syntax-typescript@^7.16.7": 536 | "integrity" "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==" 537 | "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz" 538 | "version" "7.16.7" 539 | dependencies: 540 | "@babel/helper-plugin-utils" "^7.16.7" 541 | 542 | "@babel/plugin-transform-arrow-functions@^7.16.7": 543 | "integrity" "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==" 544 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz" 545 | "version" "7.16.7" 546 | dependencies: 547 | "@babel/helper-plugin-utils" "^7.16.7" 548 | 549 | "@babel/plugin-transform-async-to-generator@^7.16.8": 550 | "integrity" "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==" 551 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz" 552 | "version" "7.16.8" 553 | dependencies: 554 | "@babel/helper-module-imports" "^7.16.7" 555 | "@babel/helper-plugin-utils" "^7.16.7" 556 | "@babel/helper-remap-async-to-generator" "^7.16.8" 557 | 558 | "@babel/plugin-transform-block-scoped-functions@^7.16.7": 559 | "integrity" "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==" 560 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz" 561 | "version" "7.16.7" 562 | dependencies: 563 | "@babel/helper-plugin-utils" "^7.16.7" 564 | 565 | "@babel/plugin-transform-block-scoping@^7.16.7": 566 | "integrity" "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==" 567 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz" 568 | "version" "7.16.7" 569 | dependencies: 570 | "@babel/helper-plugin-utils" "^7.16.7" 571 | 572 | "@babel/plugin-transform-classes@^7.16.7": 573 | "integrity" "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==" 574 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz" 575 | "version" "7.16.7" 576 | dependencies: 577 | "@babel/helper-annotate-as-pure" "^7.16.7" 578 | "@babel/helper-environment-visitor" "^7.16.7" 579 | "@babel/helper-function-name" "^7.16.7" 580 | "@babel/helper-optimise-call-expression" "^7.16.7" 581 | "@babel/helper-plugin-utils" "^7.16.7" 582 | "@babel/helper-replace-supers" "^7.16.7" 583 | "@babel/helper-split-export-declaration" "^7.16.7" 584 | "globals" "^11.1.0" 585 | 586 | "@babel/plugin-transform-computed-properties@^7.16.7": 587 | "integrity" "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==" 588 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz" 589 | "version" "7.16.7" 590 | dependencies: 591 | "@babel/helper-plugin-utils" "^7.16.7" 592 | 593 | "@babel/plugin-transform-destructuring@^7.16.7": 594 | "integrity" "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==" 595 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz" 596 | "version" "7.17.7" 597 | dependencies: 598 | "@babel/helper-plugin-utils" "^7.16.7" 599 | 600 | "@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.4.4": 601 | "integrity" "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==" 602 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz" 603 | "version" "7.16.7" 604 | dependencies: 605 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 606 | "@babel/helper-plugin-utils" "^7.16.7" 607 | 608 | "@babel/plugin-transform-duplicate-keys@^7.16.7": 609 | "integrity" "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==" 610 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz" 611 | "version" "7.16.7" 612 | dependencies: 613 | "@babel/helper-plugin-utils" "^7.16.7" 614 | 615 | "@babel/plugin-transform-exponentiation-operator@^7.16.7": 616 | "integrity" "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==" 617 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz" 618 | "version" "7.16.7" 619 | dependencies: 620 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7" 621 | "@babel/helper-plugin-utils" "^7.16.7" 622 | 623 | "@babel/plugin-transform-for-of@^7.16.7": 624 | "integrity" "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==" 625 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz" 626 | "version" "7.16.7" 627 | dependencies: 628 | "@babel/helper-plugin-utils" "^7.16.7" 629 | 630 | "@babel/plugin-transform-function-name@^7.16.7": 631 | "integrity" "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==" 632 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz" 633 | "version" "7.16.7" 634 | dependencies: 635 | "@babel/helper-compilation-targets" "^7.16.7" 636 | "@babel/helper-function-name" "^7.16.7" 637 | "@babel/helper-plugin-utils" "^7.16.7" 638 | 639 | "@babel/plugin-transform-literals@^7.16.7": 640 | "integrity" "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==" 641 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz" 642 | "version" "7.16.7" 643 | dependencies: 644 | "@babel/helper-plugin-utils" "^7.16.7" 645 | 646 | "@babel/plugin-transform-member-expression-literals@^7.16.7": 647 | "integrity" "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==" 648 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz" 649 | "version" "7.16.7" 650 | dependencies: 651 | "@babel/helper-plugin-utils" "^7.16.7" 652 | 653 | "@babel/plugin-transform-modules-amd@^7.16.7": 654 | "integrity" "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==" 655 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz" 656 | "version" "7.16.7" 657 | dependencies: 658 | "@babel/helper-module-transforms" "^7.16.7" 659 | "@babel/helper-plugin-utils" "^7.16.7" 660 | "babel-plugin-dynamic-import-node" "^2.3.3" 661 | 662 | "@babel/plugin-transform-modules-commonjs@^7.16.8": 663 | "integrity" "sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==" 664 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz" 665 | "version" "7.17.7" 666 | dependencies: 667 | "@babel/helper-module-transforms" "^7.17.7" 668 | "@babel/helper-plugin-utils" "^7.16.7" 669 | "@babel/helper-simple-access" "^7.17.7" 670 | "babel-plugin-dynamic-import-node" "^2.3.3" 671 | 672 | "@babel/plugin-transform-modules-systemjs@^7.16.7": 673 | "integrity" "sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==" 674 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz" 675 | "version" "7.17.8" 676 | dependencies: 677 | "@babel/helper-hoist-variables" "^7.16.7" 678 | "@babel/helper-module-transforms" "^7.17.7" 679 | "@babel/helper-plugin-utils" "^7.16.7" 680 | "@babel/helper-validator-identifier" "^7.16.7" 681 | "babel-plugin-dynamic-import-node" "^2.3.3" 682 | 683 | "@babel/plugin-transform-modules-umd@^7.16.7": 684 | "integrity" "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==" 685 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz" 686 | "version" "7.16.7" 687 | dependencies: 688 | "@babel/helper-module-transforms" "^7.16.7" 689 | "@babel/helper-plugin-utils" "^7.16.7" 690 | 691 | "@babel/plugin-transform-named-capturing-groups-regex@^7.16.8": 692 | "integrity" "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==" 693 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz" 694 | "version" "7.16.8" 695 | dependencies: 696 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 697 | 698 | "@babel/plugin-transform-new-target@^7.16.7": 699 | "integrity" "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==" 700 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz" 701 | "version" "7.16.7" 702 | dependencies: 703 | "@babel/helper-plugin-utils" "^7.16.7" 704 | 705 | "@babel/plugin-transform-object-super@^7.16.7": 706 | "integrity" "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==" 707 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz" 708 | "version" "7.16.7" 709 | dependencies: 710 | "@babel/helper-plugin-utils" "^7.16.7" 711 | "@babel/helper-replace-supers" "^7.16.7" 712 | 713 | "@babel/plugin-transform-parameters@^7.16.7": 714 | "integrity" "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==" 715 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz" 716 | "version" "7.16.7" 717 | dependencies: 718 | "@babel/helper-plugin-utils" "^7.16.7" 719 | 720 | "@babel/plugin-transform-property-literals@^7.16.7": 721 | "integrity" "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==" 722 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz" 723 | "version" "7.16.7" 724 | dependencies: 725 | "@babel/helper-plugin-utils" "^7.16.7" 726 | 727 | "@babel/plugin-transform-regenerator@^7.16.7": 728 | "integrity" "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==" 729 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz" 730 | "version" "7.16.7" 731 | dependencies: 732 | "regenerator-transform" "^0.14.2" 733 | 734 | "@babel/plugin-transform-reserved-words@^7.16.7": 735 | "integrity" "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==" 736 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz" 737 | "version" "7.16.7" 738 | dependencies: 739 | "@babel/helper-plugin-utils" "^7.16.7" 740 | 741 | "@babel/plugin-transform-runtime@^7.14.5": 742 | "integrity" "sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==" 743 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz" 744 | "version" "7.17.0" 745 | dependencies: 746 | "@babel/helper-module-imports" "^7.16.7" 747 | "@babel/helper-plugin-utils" "^7.16.7" 748 | "babel-plugin-polyfill-corejs2" "^0.3.0" 749 | "babel-plugin-polyfill-corejs3" "^0.5.0" 750 | "babel-plugin-polyfill-regenerator" "^0.3.0" 751 | "semver" "^6.3.0" 752 | 753 | "@babel/plugin-transform-shorthand-properties@^7.16.7": 754 | "integrity" "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==" 755 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz" 756 | "version" "7.16.7" 757 | dependencies: 758 | "@babel/helper-plugin-utils" "^7.16.7" 759 | 760 | "@babel/plugin-transform-spread@^7.16.7": 761 | "integrity" "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==" 762 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz" 763 | "version" "7.16.7" 764 | dependencies: 765 | "@babel/helper-plugin-utils" "^7.16.7" 766 | "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 767 | 768 | "@babel/plugin-transform-sticky-regex@^7.16.7": 769 | "integrity" "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==" 770 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz" 771 | "version" "7.16.7" 772 | dependencies: 773 | "@babel/helper-plugin-utils" "^7.16.7" 774 | 775 | "@babel/plugin-transform-template-literals@^7.16.7": 776 | "integrity" "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==" 777 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz" 778 | "version" "7.16.7" 779 | dependencies: 780 | "@babel/helper-plugin-utils" "^7.16.7" 781 | 782 | "@babel/plugin-transform-typeof-symbol@^7.16.7": 783 | "integrity" "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==" 784 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz" 785 | "version" "7.16.7" 786 | dependencies: 787 | "@babel/helper-plugin-utils" "^7.16.7" 788 | 789 | "@babel/plugin-transform-typescript@^7.16.7": 790 | "integrity" "sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==" 791 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz" 792 | "version" "7.16.8" 793 | dependencies: 794 | "@babel/helper-create-class-features-plugin" "^7.16.7" 795 | "@babel/helper-plugin-utils" "^7.16.7" 796 | "@babel/plugin-syntax-typescript" "^7.16.7" 797 | 798 | "@babel/plugin-transform-unicode-escapes@^7.16.7": 799 | "integrity" "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==" 800 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz" 801 | "version" "7.16.7" 802 | dependencies: 803 | "@babel/helper-plugin-utils" "^7.16.7" 804 | 805 | "@babel/plugin-transform-unicode-regex@^7.16.7": 806 | "integrity" "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==" 807 | "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz" 808 | "version" "7.16.7" 809 | dependencies: 810 | "@babel/helper-create-regexp-features-plugin" "^7.16.7" 811 | "@babel/helper-plugin-utils" "^7.16.7" 812 | 813 | "@babel/preset-env@^7.14.5": 814 | "integrity" "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==" 815 | "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz" 816 | "version" "7.16.11" 817 | dependencies: 818 | "@babel/compat-data" "^7.16.8" 819 | "@babel/helper-compilation-targets" "^7.16.7" 820 | "@babel/helper-plugin-utils" "^7.16.7" 821 | "@babel/helper-validator-option" "^7.16.7" 822 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7" 823 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7" 824 | "@babel/plugin-proposal-async-generator-functions" "^7.16.8" 825 | "@babel/plugin-proposal-class-properties" "^7.16.7" 826 | "@babel/plugin-proposal-class-static-block" "^7.16.7" 827 | "@babel/plugin-proposal-dynamic-import" "^7.16.7" 828 | "@babel/plugin-proposal-export-namespace-from" "^7.16.7" 829 | "@babel/plugin-proposal-json-strings" "^7.16.7" 830 | "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7" 831 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7" 832 | "@babel/plugin-proposal-numeric-separator" "^7.16.7" 833 | "@babel/plugin-proposal-object-rest-spread" "^7.16.7" 834 | "@babel/plugin-proposal-optional-catch-binding" "^7.16.7" 835 | "@babel/plugin-proposal-optional-chaining" "^7.16.7" 836 | "@babel/plugin-proposal-private-methods" "^7.16.11" 837 | "@babel/plugin-proposal-private-property-in-object" "^7.16.7" 838 | "@babel/plugin-proposal-unicode-property-regex" "^7.16.7" 839 | "@babel/plugin-syntax-async-generators" "^7.8.4" 840 | "@babel/plugin-syntax-class-properties" "^7.12.13" 841 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 842 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 843 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 844 | "@babel/plugin-syntax-json-strings" "^7.8.3" 845 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 846 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 847 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 848 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 849 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 850 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 851 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 852 | "@babel/plugin-syntax-top-level-await" "^7.14.5" 853 | "@babel/plugin-transform-arrow-functions" "^7.16.7" 854 | "@babel/plugin-transform-async-to-generator" "^7.16.8" 855 | "@babel/plugin-transform-block-scoped-functions" "^7.16.7" 856 | "@babel/plugin-transform-block-scoping" "^7.16.7" 857 | "@babel/plugin-transform-classes" "^7.16.7" 858 | "@babel/plugin-transform-computed-properties" "^7.16.7" 859 | "@babel/plugin-transform-destructuring" "^7.16.7" 860 | "@babel/plugin-transform-dotall-regex" "^7.16.7" 861 | "@babel/plugin-transform-duplicate-keys" "^7.16.7" 862 | "@babel/plugin-transform-exponentiation-operator" "^7.16.7" 863 | "@babel/plugin-transform-for-of" "^7.16.7" 864 | "@babel/plugin-transform-function-name" "^7.16.7" 865 | "@babel/plugin-transform-literals" "^7.16.7" 866 | "@babel/plugin-transform-member-expression-literals" "^7.16.7" 867 | "@babel/plugin-transform-modules-amd" "^7.16.7" 868 | "@babel/plugin-transform-modules-commonjs" "^7.16.8" 869 | "@babel/plugin-transform-modules-systemjs" "^7.16.7" 870 | "@babel/plugin-transform-modules-umd" "^7.16.7" 871 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8" 872 | "@babel/plugin-transform-new-target" "^7.16.7" 873 | "@babel/plugin-transform-object-super" "^7.16.7" 874 | "@babel/plugin-transform-parameters" "^7.16.7" 875 | "@babel/plugin-transform-property-literals" "^7.16.7" 876 | "@babel/plugin-transform-regenerator" "^7.16.7" 877 | "@babel/plugin-transform-reserved-words" "^7.16.7" 878 | "@babel/plugin-transform-shorthand-properties" "^7.16.7" 879 | "@babel/plugin-transform-spread" "^7.16.7" 880 | "@babel/plugin-transform-sticky-regex" "^7.16.7" 881 | "@babel/plugin-transform-template-literals" "^7.16.7" 882 | "@babel/plugin-transform-typeof-symbol" "^7.16.7" 883 | "@babel/plugin-transform-unicode-escapes" "^7.16.7" 884 | "@babel/plugin-transform-unicode-regex" "^7.16.7" 885 | "@babel/preset-modules" "^0.1.5" 886 | "@babel/types" "^7.16.8" 887 | "babel-plugin-polyfill-corejs2" "^0.3.0" 888 | "babel-plugin-polyfill-corejs3" "^0.5.0" 889 | "babel-plugin-polyfill-regenerator" "^0.3.0" 890 | "core-js-compat" "^3.20.2" 891 | "semver" "^6.3.0" 892 | 893 | "@babel/preset-modules@^0.1.5": 894 | "integrity" "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" 895 | "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz" 896 | "version" "0.1.5" 897 | dependencies: 898 | "@babel/helper-plugin-utils" "^7.0.0" 899 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 900 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 901 | "@babel/types" "^7.4.4" 902 | "esutils" "^2.0.2" 903 | 904 | "@babel/preset-typescript@^7.14.5": 905 | "integrity" "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==" 906 | "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz" 907 | "version" "7.16.7" 908 | dependencies: 909 | "@babel/helper-plugin-utils" "^7.16.7" 910 | "@babel/helper-validator-option" "^7.16.7" 911 | "@babel/plugin-transform-typescript" "^7.16.7" 912 | 913 | "@babel/register@^7.14.5": 914 | "integrity" "sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==" 915 | "resolved" "https://registry.npmjs.org/@babel/register/-/register-7.17.7.tgz" 916 | "version" "7.17.7" 917 | dependencies: 918 | "clone-deep" "^4.0.1" 919 | "find-cache-dir" "^2.0.0" 920 | "make-dir" "^2.1.0" 921 | "pirates" "^4.0.5" 922 | "source-map-support" "^0.5.16" 923 | 924 | "@babel/runtime@^7.14.5", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4": 925 | "integrity" "sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==" 926 | "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz" 927 | "version" "7.17.8" 928 | dependencies: 929 | "regenerator-runtime" "^0.13.4" 930 | 931 | "@babel/template@^7.16.7": 932 | "integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==" 933 | "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz" 934 | "version" "7.16.7" 935 | dependencies: 936 | "@babel/code-frame" "^7.16.7" 937 | "@babel/parser" "^7.16.7" 938 | "@babel/types" "^7.16.7" 939 | 940 | "@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.3": 941 | "integrity" "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==" 942 | "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz" 943 | "version" "7.17.3" 944 | dependencies: 945 | "@babel/code-frame" "^7.16.7" 946 | "@babel/generator" "^7.17.3" 947 | "@babel/helper-environment-visitor" "^7.16.7" 948 | "@babel/helper-function-name" "^7.16.7" 949 | "@babel/helper-hoist-variables" "^7.16.7" 950 | "@babel/helper-split-export-declaration" "^7.16.7" 951 | "@babel/parser" "^7.17.3" 952 | "@babel/types" "^7.17.0" 953 | "debug" "^4.1.0" 954 | "globals" "^11.1.0" 955 | 956 | "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.4.4": 957 | "integrity" "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==" 958 | "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz" 959 | "version" "7.17.0" 960 | dependencies: 961 | "@babel/helper-validator-identifier" "^7.16.7" 962 | "to-fast-properties" "^2.0.0" 963 | 964 | "@hapi/address@^4.0.1": 965 | "integrity" "sha512-SkszZf13HVgGmChdHo/PxchnSaCJ6cetVqLzyciudzZRT0jcOouIF/Q93mgjw8cce+D+4F4C1Z/WrfFN+O3VHQ==" 966 | "resolved" "https://registry.npmjs.org/@hapi/address/-/address-4.1.0.tgz" 967 | "version" "4.1.0" 968 | dependencies: 969 | "@hapi/hoek" "^9.0.0" 970 | 971 | "@hapi/formula@^2.0.0": 972 | "integrity" "sha512-V87P8fv7PI0LH7LiVi8Lkf3x+KCO7pQozXRssAHNXXL9L1K+uyu4XypLXwxqVDKgyQai6qj3/KteNlrqDx4W5A==" 973 | "resolved" "https://registry.npmjs.org/@hapi/formula/-/formula-2.0.0.tgz" 974 | "version" "2.0.0" 975 | 976 | "@hapi/hoek@^9.0.0": 977 | "integrity" "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==" 978 | "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz" 979 | "version" "9.2.1" 980 | 981 | "@hapi/joi@17.1.1": 982 | "integrity" "sha512-p4DKeZAoeZW4g3u7ZeRo+vCDuSDgSvtsB/NpfjXEHTUjSeINAi/RrVOWiVQ1isaoLzMvFEhe8n5065mQq1AdQg==" 983 | "resolved" "https://registry.npmjs.org/@hapi/joi/-/joi-17.1.1.tgz" 984 | "version" "17.1.1" 985 | dependencies: 986 | "@hapi/address" "^4.0.1" 987 | "@hapi/formula" "^2.0.0" 988 | "@hapi/hoek" "^9.0.0" 989 | "@hapi/pinpoint" "^2.0.0" 990 | "@hapi/topo" "^5.0.0" 991 | 992 | "@hapi/pinpoint@^2.0.0": 993 | "integrity" "sha512-vzXR5MY7n4XeIvLpfl3HtE3coZYO4raKXW766R6DZw/6aLqR26iuZ109K7a0NtF2Db0jxqh7xz2AxkUwpUFybw==" 994 | "resolved" "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-2.0.0.tgz" 995 | "version" "2.0.0" 996 | 997 | "@hapi/topo@^5.0.0": 998 | "integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" 999 | "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz" 1000 | "version" "5.1.0" 1001 | dependencies: 1002 | "@hapi/hoek" "^9.0.0" 1003 | 1004 | "@jridgewell/resolve-uri@^3.0.3": 1005 | "integrity" "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==" 1006 | "resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz" 1007 | "version" "3.0.5" 1008 | 1009 | "@jridgewell/sourcemap-codec@^1.4.10": 1010 | "integrity" "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" 1011 | "resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz" 1012 | "version" "1.4.11" 1013 | 1014 | "@jridgewell/trace-mapping@^0.3.0": 1015 | "integrity" "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==" 1016 | "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz" 1017 | "version" "0.3.4" 1018 | dependencies: 1019 | "@jridgewell/resolve-uri" "^3.0.3" 1020 | "@jridgewell/sourcemap-codec" "^1.4.10" 1021 | 1022 | "@rollup/pluginutils@^3.1.0": 1023 | "resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz" 1024 | "version" "3.1.0" 1025 | dependencies: 1026 | "@types/estree" "0.0.39" 1027 | "estree-walker" "^1.0.1" 1028 | "picomatch" "^2.2.2" 1029 | 1030 | "@stencil/core@2.9.0": 1031 | "integrity" "sha512-kY3xYolZoJO1MKslL0NQccHy72R3TIl1prHgfmIrEoGcnMgc6uiskdWaGMuI5/sCGz9T+QuTVz76B1H2ySyBZg==" 1032 | "resolved" "https://registry.npmjs.org/@stencil/core/-/core-2.9.0.tgz" 1033 | "version" "2.9.0" 1034 | 1035 | "@tarojs/api@3.4.4": 1036 | "integrity" "sha512-gQrJssV3yVkk9SdgTGhh6jgMealvj9kZOlk+InfxcwinT6AzOgaL/yrUFQZXJCD1HXK0gz0FLYxinvYi6ApUSw==" 1037 | "resolved" "https://registry.npmjs.org/@tarojs/api/-/api-3.4.4.tgz" 1038 | "version" "3.4.4" 1039 | dependencies: 1040 | "@babel/runtime" "^7.14.5" 1041 | "@tarojs/runtime" "3.4.4" 1042 | 1043 | "@tarojs/components@3.4.4": 1044 | "integrity" "sha512-7vyPT7n/H+a9HKNKsBnGo1Nj3hhoPh+mR2m83mxnBiOHx1FIodWVB701kJd63afKvm9U9H5l0a6Y2U/Qc/+cNw==" 1045 | "resolved" "https://registry.npmjs.org/@tarojs/components/-/components-3.4.4.tgz" 1046 | "version" "3.4.4" 1047 | dependencies: 1048 | "@stencil/core" "2.9.0" 1049 | "@tarojs/taro" "3.4.4" 1050 | "better-scroll" "^1.14.1" 1051 | "classnames" "^2.2.5" 1052 | "intersection-observer" "^0.7.0" 1053 | "omit.js" "^1.0.0" 1054 | "resolve-pathname" "^3.0.0" 1055 | "swiper" "6.8.0" 1056 | "weui" "^1.1.2" 1057 | 1058 | "@tarojs/helper@3.4.4": 1059 | "integrity" "sha512-X8BryEm4aBJTOUwqJqJ6ug8SCNC6VWeOn/dxfqcpo3JClWhQzMnobABD1QBar7CSqB7L1bUZs6QXZTmMB8QUhA==" 1060 | "resolved" "https://registry.npmjs.org/@tarojs/helper/-/helper-3.4.4.tgz" 1061 | "version" "3.4.4" 1062 | dependencies: 1063 | "@babel/core" "^7.14.5" 1064 | "@babel/plugin-proposal-decorators" "^7.14.5" 1065 | "@babel/plugin-proposal-object-rest-spread" "^7.14.5" 1066 | "@babel/plugin-transform-runtime" "^7.14.5" 1067 | "@babel/preset-env" "^7.14.5" 1068 | "@babel/preset-typescript" "^7.14.5" 1069 | "@babel/register" "^7.14.5" 1070 | "@babel/runtime" "^7.14.5" 1071 | "@tarojs/taro" "3.4.4" 1072 | "chalk" "3.0.0" 1073 | "chokidar" "^3.3.1" 1074 | "cross-spawn" "^7.0.3" 1075 | "debug" "4.1.1" 1076 | "find-yarn-workspace-root" "2.0.0" 1077 | "fs-extra" "^8.0.1" 1078 | "lodash" "^4.17.21" 1079 | "resolve" "^1.6.0" 1080 | "yauzl" "2.10.0" 1081 | 1082 | "@tarojs/plugin-platform-weapp@^3.1.3": 1083 | "integrity" "sha512-7n2UKgGG9FqRilLT1PVeiD1x5ecU2hGeLz5N3Vb2WjpGPzu5Rztto9U+3dVTMa2DKNW4xuWmnbNePTEB8BwXNg==" 1084 | "resolved" "https://registry.npmjs.org/@tarojs/plugin-platform-weapp/-/plugin-platform-weapp-3.4.4.tgz" 1085 | "version" "3.4.4" 1086 | dependencies: 1087 | "@tarojs/components" "3.4.4" 1088 | "@tarojs/service" "3.4.4" 1089 | "@tarojs/shared" "3.4.4" 1090 | 1091 | "@tarojs/router@3.4.4": 1092 | "integrity" "sha512-NAuJSu796+5c4aQd+4DOzqfgQTeV7Rd8A6F68/0EE2ndNtxlW5HOb+MH3UqEu6NNLdWEogo5/YPwsyaXmijJzA==" 1093 | "resolved" "https://registry.npmjs.org/@tarojs/router/-/router-3.4.4.tgz" 1094 | "version" "3.4.4" 1095 | dependencies: 1096 | "@tarojs/runtime" "3.4.4" 1097 | "@tarojs/taro" "3.4.4" 1098 | "history" "^5.1.0" 1099 | "query-string" "^6.13.8" 1100 | "universal-router" "^8.3.0" 1101 | "url-parse" "^1.4.7" 1102 | 1103 | "@tarojs/runtime@3.4.4": 1104 | "integrity" "sha512-9mz/kUf8QAe9sETpPzErBF3tiuPSb2eN16O4ljT5V4qbuMbFPHbPdecO3q+UozMsR8Z5+ZikMvNK9RUp+WSbrw==" 1105 | "resolved" "https://registry.npmjs.org/@tarojs/runtime/-/runtime-3.4.4.tgz" 1106 | "version" "3.4.4" 1107 | dependencies: 1108 | "@tarojs/shared" "3.4.4" 1109 | "inversify" "5.1.1" 1110 | "lodash-es" "4.17.15" 1111 | "reflect-metadata" "^0.1.13" 1112 | 1113 | "@tarojs/service@^3.1.3", "@tarojs/service@3.4.4": 1114 | "integrity" "sha512-HSkOfeyXrw8jdySGdelr/mTxQF2d0JK6lJzyDXnGXoBIMMDT0XkZegBiig/pzaQOxLpNNMMF/5MoqN6DcIdK3w==" 1115 | "resolved" "https://registry.npmjs.org/@tarojs/service/-/service-3.4.4.tgz" 1116 | "version" "3.4.4" 1117 | dependencies: 1118 | "@hapi/joi" "17.1.1" 1119 | "@tarojs/helper" "3.4.4" 1120 | "@tarojs/shared" "3.4.4" 1121 | "@tarojs/taro" "3.4.4" 1122 | "fs-extra" "^8.0.1" 1123 | "lodash" "^4.17.21" 1124 | "resolve" "^1.6.0" 1125 | "tapable" "^1.1.3" 1126 | "webpack-merge" "^4.2.2" 1127 | 1128 | "@tarojs/shared@^3.1.3", "@tarojs/shared@3.4.4": 1129 | "integrity" "sha512-4KV0QHyWNm3obQosUo5kMb3NzhKbcx3kYEq0ZQU4Qp6axXyi/afGZXX5C1sYHm5D6OQ6OPfLkDfH7z6hVRzK3g==" 1130 | "resolved" "https://registry.npmjs.org/@tarojs/shared/-/shared-3.4.4.tgz" 1131 | "version" "3.4.4" 1132 | 1133 | "@tarojs/taro-h5@3.4.4": 1134 | "integrity" "sha512-CvS3aQ51CTKVKkZCI/hdxvjZNOhzSag/llBjmJ8r1FIXBbFvEaYqx+DobMrWYRdWwQvvj97Jz1h8ZAV1FHcEMw==" 1135 | "resolved" "https://registry.npmjs.org/@tarojs/taro-h5/-/taro-h5-3.4.4.tgz" 1136 | "version" "3.4.4" 1137 | dependencies: 1138 | "@tarojs/api" "3.4.4" 1139 | "@tarojs/router" "3.4.4" 1140 | "@tarojs/runtime" "3.4.4" 1141 | "@tarojs/taro" "3.4.4" 1142 | "base64-js" "^1.3.0" 1143 | "jsonp-retry" "^1.0.3" 1144 | "mobile-detect" "^1.4.2" 1145 | "whatwg-fetch" "^3.4.0" 1146 | 1147 | "@tarojs/taro@3.4.4": 1148 | "integrity" "sha512-IJg2XgUNvRcs6ba/r32wLIR4Oue7yNOiw/m4wsJ6K52uMR0mu0VWWqxQc7fyOOQ4mHI/uefVaMqbX+wSKJJpVQ==" 1149 | "resolved" "https://registry.npmjs.org/@tarojs/taro/-/taro-3.4.4.tgz" 1150 | "version" "3.4.4" 1151 | dependencies: 1152 | "@tarojs/api" "3.4.4" 1153 | "@tarojs/runtime" "3.4.4" 1154 | "@tarojs/taro-h5" "3.4.4" 1155 | 1156 | "@types/estree@0.0.39": 1157 | "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz" 1158 | "version" "0.0.39" 1159 | 1160 | "ansi-styles@^3.2.1": 1161 | "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" 1162 | "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 1163 | "version" "3.2.1" 1164 | dependencies: 1165 | "color-convert" "^1.9.0" 1166 | 1167 | "ansi-styles@^4.1.0": 1168 | "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" 1169 | "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 1170 | "version" "4.3.0" 1171 | dependencies: 1172 | "color-convert" "^2.0.1" 1173 | 1174 | "anymatch@~3.1.2": 1175 | "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" 1176 | "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" 1177 | "version" "3.1.2" 1178 | dependencies: 1179 | "normalize-path" "^3.0.0" 1180 | "picomatch" "^2.0.4" 1181 | 1182 | "babel-plugin-dynamic-import-node@^2.3.3": 1183 | "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" 1184 | "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" 1185 | "version" "2.3.3" 1186 | dependencies: 1187 | "object.assign" "^4.1.0" 1188 | 1189 | "babel-plugin-polyfill-corejs2@^0.3.0": 1190 | "integrity" "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==" 1191 | "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz" 1192 | "version" "0.3.1" 1193 | dependencies: 1194 | "@babel/compat-data" "^7.13.11" 1195 | "@babel/helper-define-polyfill-provider" "^0.3.1" 1196 | "semver" "^6.1.1" 1197 | 1198 | "babel-plugin-polyfill-corejs3@^0.5.0": 1199 | "integrity" "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==" 1200 | "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz" 1201 | "version" "0.5.2" 1202 | dependencies: 1203 | "@babel/helper-define-polyfill-provider" "^0.3.1" 1204 | "core-js-compat" "^3.21.0" 1205 | 1206 | "babel-plugin-polyfill-regenerator@^0.3.0": 1207 | "integrity" "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==" 1208 | "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz" 1209 | "version" "0.3.1" 1210 | dependencies: 1211 | "@babel/helper-define-polyfill-provider" "^0.3.1" 1212 | 1213 | "babel-runtime@^6.0.0", "babel-runtime@^6.23.0": 1214 | "integrity" "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" 1215 | "resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz" 1216 | "version" "6.26.0" 1217 | dependencies: 1218 | "core-js" "^2.4.0" 1219 | "regenerator-runtime" "^0.11.0" 1220 | 1221 | "base64-js@^1.3.0": 1222 | "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" 1223 | "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" 1224 | "version" "1.5.1" 1225 | 1226 | "better-scroll@^1.14.1": 1227 | "integrity" "sha512-sSY2N8I9/B+YX/9JpIz6pMQYnmBuvspBqZG4UxYaQEfz/ZWrnxwdyKLL4t6IKpFmxqtZadVypXw7vSSHxBZpBQ==" 1228 | "resolved" "https://registry.npmjs.org/better-scroll/-/better-scroll-1.15.2.tgz" 1229 | "version" "1.15.2" 1230 | dependencies: 1231 | "babel-runtime" "^6.0.0" 1232 | 1233 | "binary-extensions@^2.0.0": 1234 | "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" 1235 | "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" 1236 | "version" "2.2.0" 1237 | 1238 | "braces@^3.0.2", "braces@~3.0.2": 1239 | "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" 1240 | "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 1241 | "version" "3.0.2" 1242 | dependencies: 1243 | "fill-range" "^7.0.1" 1244 | 1245 | "browserslist@^4.17.5", "browserslist@^4.19.1": 1246 | "integrity" "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==" 1247 | "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz" 1248 | "version" "4.20.2" 1249 | dependencies: 1250 | "caniuse-lite" "^1.0.30001317" 1251 | "electron-to-chromium" "^1.4.84" 1252 | "escalade" "^3.1.1" 1253 | "node-releases" "^2.0.2" 1254 | "picocolors" "^1.0.0" 1255 | 1256 | "buffer-crc32@~0.2.3": 1257 | "integrity" "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" 1258 | "resolved" "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz" 1259 | "version" "0.2.13" 1260 | 1261 | "buffer-from@^1.0.0": 1262 | "integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" 1263 | "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" 1264 | "version" "1.1.2" 1265 | 1266 | "call-bind@^1.0.0": 1267 | "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" 1268 | "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 1269 | "version" "1.0.2" 1270 | dependencies: 1271 | "function-bind" "^1.1.1" 1272 | "get-intrinsic" "^1.0.2" 1273 | 1274 | "caniuse-lite@^1.0.30001317": 1275 | "integrity" "sha512-neRmrmIrCGuMnxGSoh+x7zYtQFFgnSY2jaomjU56sCkTA6JINqQrxutF459JpWcWRajvoyn95sOXq4Pqrnyjew==" 1276 | "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001322.tgz" 1277 | "version" "1.0.30001322" 1278 | 1279 | "chalk@^2.0.0": 1280 | "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" 1281 | "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 1282 | "version" "2.4.2" 1283 | dependencies: 1284 | "ansi-styles" "^3.2.1" 1285 | "escape-string-regexp" "^1.0.5" 1286 | "supports-color" "^5.3.0" 1287 | 1288 | "chalk@3.0.0": 1289 | "integrity" "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" 1290 | "resolved" "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" 1291 | "version" "3.0.0" 1292 | dependencies: 1293 | "ansi-styles" "^4.1.0" 1294 | "supports-color" "^7.1.0" 1295 | 1296 | "charcodes@^0.2.0": 1297 | "integrity" "sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==" 1298 | "resolved" "https://registry.npmjs.org/charcodes/-/charcodes-0.2.0.tgz" 1299 | "version" "0.2.0" 1300 | 1301 | "chokidar@^3.3.1": 1302 | "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" 1303 | "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" 1304 | "version" "3.5.3" 1305 | dependencies: 1306 | "anymatch" "~3.1.2" 1307 | "braces" "~3.0.2" 1308 | "glob-parent" "~5.1.2" 1309 | "is-binary-path" "~2.1.0" 1310 | "is-glob" "~4.0.1" 1311 | "normalize-path" "~3.0.0" 1312 | "readdirp" "~3.6.0" 1313 | optionalDependencies: 1314 | "fsevents" "~2.3.2" 1315 | 1316 | "classnames@^2.2.5": 1317 | "integrity" "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" 1318 | "resolved" "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz" 1319 | "version" "2.3.1" 1320 | 1321 | "clone-deep@^4.0.1": 1322 | "integrity" "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" 1323 | "resolved" "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" 1324 | "version" "4.0.1" 1325 | dependencies: 1326 | "is-plain-object" "^2.0.4" 1327 | "kind-of" "^6.0.2" 1328 | "shallow-clone" "^3.0.0" 1329 | 1330 | "color-convert@^1.9.0": 1331 | "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" 1332 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 1333 | "version" "1.9.3" 1334 | dependencies: 1335 | "color-name" "1.1.3" 1336 | 1337 | "color-convert@^2.0.1": 1338 | "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" 1339 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 1340 | "version" "2.0.1" 1341 | dependencies: 1342 | "color-name" "~1.1.4" 1343 | 1344 | "color-name@~1.1.4": 1345 | "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1346 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 1347 | "version" "1.1.4" 1348 | 1349 | "color-name@1.1.3": 1350 | "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 1351 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 1352 | "version" "1.1.3" 1353 | 1354 | "commondir@^1.0.1": 1355 | "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" 1356 | "version" "1.0.1" 1357 | 1358 | "convert-source-map@^1.7.0": 1359 | "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" 1360 | "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" 1361 | "version" "1.8.0" 1362 | dependencies: 1363 | "safe-buffer" "~5.1.1" 1364 | 1365 | "core-js-compat@^3.20.2", "core-js-compat@^3.21.0": 1366 | "integrity" "sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==" 1367 | "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz" 1368 | "version" "3.21.1" 1369 | dependencies: 1370 | "browserslist" "^4.19.1" 1371 | "semver" "7.0.0" 1372 | 1373 | "core-js@^2.4.0": 1374 | "integrity" "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" 1375 | "resolved" "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz" 1376 | "version" "2.6.12" 1377 | 1378 | "cross-spawn@^7.0.3": 1379 | "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" 1380 | "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 1381 | "version" "7.0.3" 1382 | dependencies: 1383 | "path-key" "^3.1.0" 1384 | "shebang-command" "^2.0.0" 1385 | "which" "^2.0.1" 1386 | 1387 | "debug@^4.1.0", "debug@^4.1.1", "debug@4.1.1": 1388 | "integrity" "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" 1389 | "resolved" "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz" 1390 | "version" "4.1.1" 1391 | dependencies: 1392 | "ms" "^2.1.1" 1393 | 1394 | "decode-uri-component@^0.2.0": 1395 | "integrity" "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" 1396 | "resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz" 1397 | "version" "0.2.0" 1398 | 1399 | "define-properties@^1.1.3": 1400 | "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" 1401 | "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" 1402 | "version" "1.1.3" 1403 | dependencies: 1404 | "object-keys" "^1.0.12" 1405 | 1406 | "dom7@^3.0.0": 1407 | "integrity" "sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==" 1408 | "resolved" "https://registry.npmjs.org/dom7/-/dom7-3.0.0.tgz" 1409 | "version" "3.0.0" 1410 | dependencies: 1411 | "ssr-window" "^3.0.0-alpha.1" 1412 | 1413 | "electron-to-chromium@^1.4.84": 1414 | "integrity" "sha512-pNrSE2naf8fizl6/Uxq8UbKb8hU9EiYW4OzCYswosXoLV5NTMOUVKECNzDaHiUubsPq/kAckOzZd7zd8S8CHVw==" 1415 | "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.100.tgz" 1416 | "version" "1.4.100" 1417 | 1418 | "escalade@^3.1.1": 1419 | "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" 1420 | "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 1421 | "version" "3.1.1" 1422 | 1423 | "escape-string-regexp@^1.0.5": 1424 | "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 1425 | "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1426 | "version" "1.0.5" 1427 | 1428 | "estree-walker@^1.0.1": 1429 | "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz" 1430 | "version" "1.0.1" 1431 | 1432 | "esutils@^2.0.2": 1433 | "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" 1434 | "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1435 | "version" "2.0.3" 1436 | 1437 | "fd-slicer@~1.1.0": 1438 | "integrity" "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=" 1439 | "resolved" "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz" 1440 | "version" "1.1.0" 1441 | dependencies: 1442 | "pend" "~1.2.0" 1443 | 1444 | "fill-range@^7.0.1": 1445 | "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" 1446 | "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1447 | "version" "7.0.1" 1448 | dependencies: 1449 | "to-regex-range" "^5.0.1" 1450 | 1451 | "filter-obj@^1.1.0": 1452 | "integrity" "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=" 1453 | "resolved" "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz" 1454 | "version" "1.1.0" 1455 | 1456 | "find-cache-dir@^2.0.0": 1457 | "integrity" "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" 1458 | "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz" 1459 | "version" "2.1.0" 1460 | dependencies: 1461 | "commondir" "^1.0.1" 1462 | "make-dir" "^2.0.0" 1463 | "pkg-dir" "^3.0.0" 1464 | 1465 | "find-cache-dir@^3.3.1": 1466 | "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" 1467 | "version" "3.3.1" 1468 | dependencies: 1469 | "commondir" "^1.0.1" 1470 | "make-dir" "^3.0.2" 1471 | "pkg-dir" "^4.1.0" 1472 | 1473 | "find-up@^3.0.0": 1474 | "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" 1475 | "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" 1476 | "version" "3.0.0" 1477 | dependencies: 1478 | "locate-path" "^3.0.0" 1479 | 1480 | "find-up@^4.0.0": 1481 | "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" 1482 | "version" "4.1.0" 1483 | dependencies: 1484 | "locate-path" "^5.0.0" 1485 | "path-exists" "^4.0.0" 1486 | 1487 | "find-yarn-workspace-root@2.0.0": 1488 | "integrity" "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" 1489 | "resolved" "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz" 1490 | "version" "2.0.0" 1491 | dependencies: 1492 | "micromatch" "^4.0.2" 1493 | 1494 | "fs-extra@^8.0.1", "fs-extra@8.1.0": 1495 | "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" 1496 | "version" "8.1.0" 1497 | dependencies: 1498 | "graceful-fs" "^4.2.0" 1499 | "jsonfile" "^4.0.0" 1500 | "universalify" "^0.1.0" 1501 | 1502 | "fsevents@~2.3.1", "fsevents@~2.3.2": 1503 | "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" 1504 | "version" "2.3.2" 1505 | 1506 | "function-bind@^1.1.1": 1507 | "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1508 | "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1509 | "version" "1.1.1" 1510 | 1511 | "gensync@^1.0.0-beta.2": 1512 | "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" 1513 | "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" 1514 | "version" "1.0.0-beta.2" 1515 | 1516 | "get-intrinsic@^1.0.2": 1517 | "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" 1518 | "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" 1519 | "version" "1.1.1" 1520 | dependencies: 1521 | "function-bind" "^1.1.1" 1522 | "has" "^1.0.3" 1523 | "has-symbols" "^1.0.1" 1524 | 1525 | "glob-parent@~5.1.2": 1526 | "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" 1527 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1528 | "version" "5.1.2" 1529 | dependencies: 1530 | "is-glob" "^4.0.1" 1531 | 1532 | "globals@^11.1.0": 1533 | "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" 1534 | "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" 1535 | "version" "11.12.0" 1536 | 1537 | "graceful-fs@^4.1.6", "graceful-fs@^4.2.0": 1538 | "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.5.tgz" 1539 | "version" "4.2.5" 1540 | 1541 | "has-flag@^3.0.0": 1542 | "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1543 | "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1544 | "version" "3.0.0" 1545 | 1546 | "has-flag@^4.0.0": 1547 | "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 1548 | "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1549 | "version" "4.0.0" 1550 | 1551 | "has-symbols@^1.0.1": 1552 | "integrity" "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" 1553 | "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 1554 | "version" "1.0.3" 1555 | 1556 | "has@^1.0.3": 1557 | "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" 1558 | "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1559 | "version" "1.0.3" 1560 | dependencies: 1561 | "function-bind" "^1.1.1" 1562 | 1563 | "history@^5.1.0": 1564 | "integrity" "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==" 1565 | "resolved" "https://registry.npmjs.org/history/-/history-5.3.0.tgz" 1566 | "version" "5.3.0" 1567 | dependencies: 1568 | "@babel/runtime" "^7.7.6" 1569 | 1570 | "intersection-observer@^0.7.0": 1571 | "integrity" "sha512-Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg==" 1572 | "resolved" "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.7.0.tgz" 1573 | "version" "0.7.0" 1574 | 1575 | "inversify@5.1.1": 1576 | "integrity" "sha512-j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ==" 1577 | "resolved" "https://registry.npmjs.org/inversify/-/inversify-5.1.1.tgz" 1578 | "version" "5.1.1" 1579 | 1580 | "is-binary-path@~2.1.0": 1581 | "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" 1582 | "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" 1583 | "version" "2.1.0" 1584 | dependencies: 1585 | "binary-extensions" "^2.0.0" 1586 | 1587 | "is-extglob@^2.1.1": 1588 | "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" 1589 | "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1590 | "version" "2.1.1" 1591 | 1592 | "is-glob@^4.0.1", "is-glob@~4.0.1": 1593 | "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" 1594 | "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1595 | "version" "4.0.3" 1596 | dependencies: 1597 | "is-extglob" "^2.1.1" 1598 | 1599 | "is-number@^7.0.0": 1600 | "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" 1601 | "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1602 | "version" "7.0.0" 1603 | 1604 | "is-plain-object@^2.0.4": 1605 | "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" 1606 | "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" 1607 | "version" "2.0.4" 1608 | dependencies: 1609 | "isobject" "^3.0.1" 1610 | 1611 | "isexe@^2.0.0": 1612 | "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" 1613 | "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1614 | "version" "2.0.0" 1615 | 1616 | "isobject@^3.0.1": 1617 | "integrity" "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" 1618 | "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" 1619 | "version" "3.0.1" 1620 | 1621 | "js-tokens@^4.0.0": 1622 | "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 1623 | "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1624 | "version" "4.0.0" 1625 | 1626 | "jsesc@^2.5.1": 1627 | "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" 1628 | "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" 1629 | "version" "2.5.2" 1630 | 1631 | "jsesc@~0.5.0": 1632 | "integrity" "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" 1633 | "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" 1634 | "version" "0.5.0" 1635 | 1636 | "json5@^2.1.2": 1637 | "integrity" "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" 1638 | "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" 1639 | "version" "2.2.1" 1640 | 1641 | "jsonfile@^4.0.0": 1642 | "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" 1643 | "version" "4.0.0" 1644 | optionalDependencies: 1645 | "graceful-fs" "^4.1.6" 1646 | 1647 | "jsonp-retry@^1.0.3": 1648 | "integrity" "sha512-/jmE9+shtKP+oIt2AWO9Wx+C27NTGpLCEw4QHOqpoV2X6ta374HE9C+EEdgu8r3iLKgFMx7u5j0mCwxWN8UdlA==" 1649 | "resolved" "https://registry.npmjs.org/jsonp-retry/-/jsonp-retry-1.0.3.tgz" 1650 | "version" "1.0.3" 1651 | dependencies: 1652 | "object-assign" "^4.1.1" 1653 | 1654 | "kind-of@^6.0.2": 1655 | "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" 1656 | "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" 1657 | "version" "6.0.3" 1658 | 1659 | "locate-path@^3.0.0": 1660 | "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" 1661 | "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" 1662 | "version" "3.0.0" 1663 | dependencies: 1664 | "p-locate" "^3.0.0" 1665 | "path-exists" "^3.0.0" 1666 | 1667 | "locate-path@^5.0.0": 1668 | "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" 1669 | "version" "5.0.0" 1670 | dependencies: 1671 | "p-locate" "^4.1.0" 1672 | 1673 | "lodash-es@4.17.15": 1674 | "integrity" "sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ==" 1675 | "resolved" "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.15.tgz" 1676 | "version" "4.17.15" 1677 | 1678 | "lodash.debounce@^4.0.8": 1679 | "integrity" "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" 1680 | "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" 1681 | "version" "4.0.8" 1682 | 1683 | "lodash@^4.17.15", "lodash@^4.17.21": 1684 | "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 1685 | "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 1686 | "version" "4.17.21" 1687 | 1688 | "make-dir@^2.0.0", "make-dir@^2.1.0": 1689 | "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" 1690 | "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" 1691 | "version" "2.1.0" 1692 | dependencies: 1693 | "pify" "^4.0.1" 1694 | "semver" "^5.6.0" 1695 | 1696 | "make-dir@^3.0.2": 1697 | "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" 1698 | "version" "3.1.0" 1699 | dependencies: 1700 | "semver" "^6.0.0" 1701 | 1702 | "micromatch@^4.0.2": 1703 | "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" 1704 | "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" 1705 | "version" "4.0.5" 1706 | dependencies: 1707 | "braces" "^3.0.2" 1708 | "picomatch" "^2.3.1" 1709 | 1710 | "mobile-detect@^1.4.2": 1711 | "integrity" "sha512-yc0LhH6tItlvfLBugVUEtgawwFU2sIe+cSdmRJJCTMZ5GEJyLxNyC/NIOAOGk67Fa8GNpOttO3Xz/1bHpXFD/g==" 1712 | "resolved" "https://registry.npmjs.org/mobile-detect/-/mobile-detect-1.4.5.tgz" 1713 | "version" "1.4.5" 1714 | 1715 | "ms@^2.1.1": 1716 | "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1717 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" 1718 | "version" "2.1.3" 1719 | 1720 | "node-releases@^2.0.2": 1721 | "integrity" "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==" 1722 | "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz" 1723 | "version" "2.0.2" 1724 | 1725 | "normalize-path@^3.0.0", "normalize-path@~3.0.0": 1726 | "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" 1727 | "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 1728 | "version" "3.0.0" 1729 | 1730 | "object-assign@^4.1.1": 1731 | "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 1732 | "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 1733 | "version" "4.1.1" 1734 | 1735 | "object-keys@^1.0.12", "object-keys@^1.1.1": 1736 | "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" 1737 | "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 1738 | "version" "1.1.1" 1739 | 1740 | "object.assign@^4.1.0": 1741 | "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" 1742 | "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" 1743 | "version" "4.1.2" 1744 | dependencies: 1745 | "call-bind" "^1.0.0" 1746 | "define-properties" "^1.1.3" 1747 | "has-symbols" "^1.0.1" 1748 | "object-keys" "^1.1.1" 1749 | 1750 | "omit.js@^1.0.0": 1751 | "integrity" "sha512-/QPc6G2NS+8d4L/cQhbk6Yit1WTB6Us2g84A7A/1+w9d/eRGHyEqC5kkQtHVoHZ5NFWGG7tUGgrhVZwgZanKrQ==" 1752 | "resolved" "https://registry.npmjs.org/omit.js/-/omit.js-1.0.2.tgz" 1753 | "version" "1.0.2" 1754 | dependencies: 1755 | "babel-runtime" "^6.23.0" 1756 | 1757 | "p-limit@^2.0.0", "p-limit@^2.2.0": 1758 | "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 1759 | "version" "2.3.0" 1760 | dependencies: 1761 | "p-try" "^2.0.0" 1762 | 1763 | "p-locate@^3.0.0": 1764 | "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" 1765 | "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" 1766 | "version" "3.0.0" 1767 | dependencies: 1768 | "p-limit" "^2.0.0" 1769 | 1770 | "p-locate@^4.1.0": 1771 | "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" 1772 | "version" "4.1.0" 1773 | dependencies: 1774 | "p-limit" "^2.2.0" 1775 | 1776 | "p-try@^2.0.0": 1777 | "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 1778 | "version" "2.2.0" 1779 | 1780 | "path-exists@^3.0.0": 1781 | "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" 1782 | "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" 1783 | "version" "3.0.0" 1784 | 1785 | "path-exists@^4.0.0": 1786 | "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 1787 | "version" "4.0.0" 1788 | 1789 | "path-key@^3.1.0": 1790 | "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" 1791 | "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 1792 | "version" "3.1.1" 1793 | 1794 | "path-parse@^1.0.6": 1795 | "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" 1796 | "version" "1.0.6" 1797 | 1798 | "path-to-regexp@^3.1.0": 1799 | "integrity" "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" 1800 | "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz" 1801 | "version" "3.2.0" 1802 | 1803 | "pend@~1.2.0": 1804 | "integrity" "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" 1805 | "resolved" "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz" 1806 | "version" "1.2.0" 1807 | 1808 | "picocolors@^1.0.0": 1809 | "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 1810 | "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 1811 | "version" "1.0.0" 1812 | 1813 | "picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.2", "picomatch@^2.3.1": 1814 | "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" 1815 | "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 1816 | "version" "2.3.1" 1817 | 1818 | "pify@^4.0.1": 1819 | "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" 1820 | "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" 1821 | "version" "4.0.1" 1822 | 1823 | "pirates@^4.0.5": 1824 | "integrity" "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" 1825 | "resolved" "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz" 1826 | "version" "4.0.5" 1827 | 1828 | "pkg-dir@^3.0.0": 1829 | "integrity" "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" 1830 | "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" 1831 | "version" "3.0.0" 1832 | dependencies: 1833 | "find-up" "^3.0.0" 1834 | 1835 | "pkg-dir@^4.1.0": 1836 | "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" 1837 | "version" "4.2.0" 1838 | dependencies: 1839 | "find-up" "^4.0.0" 1840 | 1841 | "query-string@^6.13.8": 1842 | "integrity" "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" 1843 | "resolved" "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz" 1844 | "version" "6.14.1" 1845 | dependencies: 1846 | "decode-uri-component" "^0.2.0" 1847 | "filter-obj" "^1.1.0" 1848 | "split-on-first" "^1.0.0" 1849 | "strict-uri-encode" "^2.0.0" 1850 | 1851 | "querystringify@^2.1.1": 1852 | "integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" 1853 | "resolved" "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" 1854 | "version" "2.2.0" 1855 | 1856 | "readdirp@~3.6.0": 1857 | "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" 1858 | "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" 1859 | "version" "3.6.0" 1860 | dependencies: 1861 | "picomatch" "^2.2.1" 1862 | 1863 | "reflect-metadata@^0.1.13": 1864 | "integrity" "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" 1865 | "resolved" "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz" 1866 | "version" "0.1.13" 1867 | 1868 | "regenerate-unicode-properties@^10.0.1": 1869 | "integrity" "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==" 1870 | "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz" 1871 | "version" "10.0.1" 1872 | dependencies: 1873 | "regenerate" "^1.4.2" 1874 | 1875 | "regenerate@^1.4.2": 1876 | "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" 1877 | "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" 1878 | "version" "1.4.2" 1879 | 1880 | "regenerator-runtime@^0.11.0": 1881 | "integrity" "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" 1882 | "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz" 1883 | "version" "0.11.1" 1884 | 1885 | "regenerator-runtime@^0.13.4": 1886 | "integrity" "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" 1887 | "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" 1888 | "version" "0.13.9" 1889 | 1890 | "regenerator-transform@^0.14.2": 1891 | "integrity" "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==" 1892 | "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" 1893 | "version" "0.14.5" 1894 | dependencies: 1895 | "@babel/runtime" "^7.8.4" 1896 | 1897 | "regexpu-core@^5.0.1": 1898 | "integrity" "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==" 1899 | "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz" 1900 | "version" "5.0.1" 1901 | dependencies: 1902 | "regenerate" "^1.4.2" 1903 | "regenerate-unicode-properties" "^10.0.1" 1904 | "regjsgen" "^0.6.0" 1905 | "regjsparser" "^0.8.2" 1906 | "unicode-match-property-ecmascript" "^2.0.0" 1907 | "unicode-match-property-value-ecmascript" "^2.0.0" 1908 | 1909 | "regjsgen@^0.6.0": 1910 | "integrity" "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" 1911 | "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz" 1912 | "version" "0.6.0" 1913 | 1914 | "regjsparser@^0.8.2": 1915 | "integrity" "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==" 1916 | "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz" 1917 | "version" "0.8.4" 1918 | dependencies: 1919 | "jsesc" "~0.5.0" 1920 | 1921 | "requires-port@^1.0.0": 1922 | "integrity" "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" 1923 | "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" 1924 | "version" "1.0.0" 1925 | 1926 | "resolve-pathname@^3.0.0": 1927 | "integrity" "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" 1928 | "resolved" "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" 1929 | "version" "3.0.0" 1930 | 1931 | "resolve@^1.14.2", "resolve@^1.6.0", "resolve@1.17.0": 1932 | "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz" 1933 | "version" "1.17.0" 1934 | dependencies: 1935 | "path-parse" "^1.0.6" 1936 | 1937 | "rollup-plugin-typescript2@^0.27.3": 1938 | "resolved" "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.27.3.tgz" 1939 | "version" "0.27.3" 1940 | dependencies: 1941 | "@rollup/pluginutils" "^3.1.0" 1942 | "find-cache-dir" "^3.3.1" 1943 | "fs-extra" "8.1.0" 1944 | "resolve" "1.17.0" 1945 | "tslib" "2.0.1" 1946 | 1947 | "rollup@^1.20.0||^2.0.0", "rollup@^2.29.0", "rollup@>=1.26.3": 1948 | "resolved" "https://registry.npmjs.org/rollup/-/rollup-2.38.5.tgz" 1949 | "version" "2.38.5" 1950 | optionalDependencies: 1951 | "fsevents" "~2.3.1" 1952 | 1953 | "safe-buffer@~5.1.1": 1954 | "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 1955 | "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" 1956 | "version" "5.1.2" 1957 | 1958 | "semver@^5.6.0": 1959 | "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" 1960 | "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" 1961 | "version" "5.7.1" 1962 | 1963 | "semver@^6.0.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0": 1964 | "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 1965 | "version" "6.3.0" 1966 | 1967 | "semver@7.0.0": 1968 | "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" 1969 | "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" 1970 | "version" "7.0.0" 1971 | 1972 | "shallow-clone@^3.0.0": 1973 | "integrity" "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" 1974 | "resolved" "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" 1975 | "version" "3.0.1" 1976 | dependencies: 1977 | "kind-of" "^6.0.2" 1978 | 1979 | "shebang-command@^2.0.0": 1980 | "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" 1981 | "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 1982 | "version" "2.0.0" 1983 | dependencies: 1984 | "shebang-regex" "^3.0.0" 1985 | 1986 | "shebang-regex@^3.0.0": 1987 | "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" 1988 | "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 1989 | "version" "3.0.0" 1990 | 1991 | "source-map-support@^0.5.16": 1992 | "integrity" "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" 1993 | "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" 1994 | "version" "0.5.21" 1995 | dependencies: 1996 | "buffer-from" "^1.0.0" 1997 | "source-map" "^0.6.0" 1998 | 1999 | "source-map@^0.5.0": 2000 | "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" 2001 | "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" 2002 | "version" "0.5.7" 2003 | 2004 | "source-map@^0.6.0": 2005 | "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" 2006 | "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 2007 | "version" "0.6.1" 2008 | 2009 | "split-on-first@^1.0.0": 2010 | "integrity" "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" 2011 | "resolved" "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz" 2012 | "version" "1.1.0" 2013 | 2014 | "ssr-window@^3.0.0", "ssr-window@^3.0.0-alpha.1": 2015 | "integrity" "sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==" 2016 | "resolved" "https://registry.npmjs.org/ssr-window/-/ssr-window-3.0.0.tgz" 2017 | "version" "3.0.0" 2018 | 2019 | "strict-uri-encode@^2.0.0": 2020 | "integrity" "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=" 2021 | "resolved" "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz" 2022 | "version" "2.0.0" 2023 | 2024 | "supports-color@^5.3.0": 2025 | "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" 2026 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 2027 | "version" "5.5.0" 2028 | dependencies: 2029 | "has-flag" "^3.0.0" 2030 | 2031 | "supports-color@^7.1.0": 2032 | "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" 2033 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 2034 | "version" "7.2.0" 2035 | dependencies: 2036 | "has-flag" "^4.0.0" 2037 | 2038 | "swiper@6.8.0": 2039 | "integrity" "sha512-6H3e7VOihasMp8sPXNhRDkc61UD0XeFlefbWfUHecBLBTtmA+9WxJiKDBMdzgetK1cny+5+mKfVcsmxYgnEDSw==" 2040 | "resolved" "https://registry.npmjs.org/swiper/-/swiper-6.8.0.tgz" 2041 | "version" "6.8.0" 2042 | dependencies: 2043 | "dom7" "^3.0.0" 2044 | "ssr-window" "^3.0.0" 2045 | 2046 | "tapable@^1.1.3": 2047 | "integrity" "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" 2048 | "resolved" "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" 2049 | "version" "1.1.3" 2050 | 2051 | "to-fast-properties@^2.0.0": 2052 | "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" 2053 | "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" 2054 | "version" "2.0.0" 2055 | 2056 | "to-regex-range@^5.0.1": 2057 | "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" 2058 | "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2059 | "version" "5.0.1" 2060 | dependencies: 2061 | "is-number" "^7.0.0" 2062 | 2063 | "tslib@2.0.1": 2064 | "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz" 2065 | "version" "2.0.1" 2066 | 2067 | "typescript@^4.0.3", "typescript@>=2.4.0": 2068 | "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz" 2069 | "version" "4.1.3" 2070 | 2071 | "unicode-canonical-property-names-ecmascript@^2.0.0": 2072 | "integrity" "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" 2073 | "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" 2074 | "version" "2.0.0" 2075 | 2076 | "unicode-match-property-ecmascript@^2.0.0": 2077 | "integrity" "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" 2078 | "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" 2079 | "version" "2.0.0" 2080 | dependencies: 2081 | "unicode-canonical-property-names-ecmascript" "^2.0.0" 2082 | "unicode-property-aliases-ecmascript" "^2.0.0" 2083 | 2084 | "unicode-match-property-value-ecmascript@^2.0.0": 2085 | "integrity" "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" 2086 | "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz" 2087 | "version" "2.0.0" 2088 | 2089 | "unicode-property-aliases-ecmascript@^2.0.0": 2090 | "integrity" "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" 2091 | "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz" 2092 | "version" "2.0.0" 2093 | 2094 | "universal-router@^8.3.0": 2095 | "integrity" "sha512-cBkihRoHvRQAjdUnDE1GGuuw/TPAIi8z2pEsSmUVAWLeZdgjHzzAb1+0VOO6NvBOvySItOTQikzaGlRxRdJBnA==" 2096 | "resolved" "https://registry.npmjs.org/universal-router/-/universal-router-8.3.0.tgz" 2097 | "version" "8.3.0" 2098 | dependencies: 2099 | "path-to-regexp" "^3.1.0" 2100 | 2101 | "universalify@^0.1.0": 2102 | "resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" 2103 | "version" "0.1.2" 2104 | 2105 | "url-parse@^1.4.7": 2106 | "integrity" "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" 2107 | "resolved" "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz" 2108 | "version" "1.5.10" 2109 | dependencies: 2110 | "querystringify" "^2.1.1" 2111 | "requires-port" "^1.0.0" 2112 | 2113 | "webpack-merge@^4.2.2": 2114 | "integrity" "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==" 2115 | "resolved" "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz" 2116 | "version" "4.2.2" 2117 | dependencies: 2118 | "lodash" "^4.17.15" 2119 | 2120 | "weui@^1.1.2": 2121 | "integrity" "sha512-vC6eWUvG1MYoE8yLsvBBmLB2+4DZWynQOL47MUscHMwPVltOZPGsiRb2PE7y3z+w3ElF1SsmJsyhr40wiXgP5A==" 2122 | "resolved" "https://registry.npmjs.org/weui/-/weui-1.1.3.tgz" 2123 | "version" "1.1.3" 2124 | 2125 | "whatwg-fetch@^3.4.0": 2126 | "integrity" "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" 2127 | "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz" 2128 | "version" "3.6.2" 2129 | 2130 | "which@^2.0.1": 2131 | "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" 2132 | "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 2133 | "version" "2.0.2" 2134 | dependencies: 2135 | "isexe" "^2.0.0" 2136 | 2137 | "yauzl@2.10.0": 2138 | "integrity" "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=" 2139 | "resolved" "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz" 2140 | "version" "2.10.0" 2141 | dependencies: 2142 | "buffer-crc32" "~0.2.3" 2143 | "fd-slicer" "~1.1.0" 2144 | --------------------------------------------------------------------------------