Commit 4e4ce944bcab4aaab677112b7cba9d86501e416c
1 parent
b63f7d17
feat: support dev https
Showing
5 changed files
with
1283 additions
and
1303 deletions
build/vite/plugin/index.ts
1 | -import type { Plugin } from 'vite'; | ||
2 | import vue from '@vitejs/plugin-vue'; | 1 | import vue from '@vitejs/plugin-vue'; |
3 | import vueJsx from '@vitejs/plugin-vue-jsx'; | 2 | import vueJsx from '@vitejs/plugin-vue-jsx'; |
4 | import legacy from '@vitejs/plugin-legacy'; | 3 | import legacy from '@vitejs/plugin-legacy'; |
5 | import purgeIcons from 'vite-plugin-purge-icons'; | 4 | import purgeIcons from 'vite-plugin-purge-icons'; |
6 | import windiCSS from 'vite-plugin-windicss'; | 5 | import windiCSS from 'vite-plugin-windicss'; |
6 | +import VitePluginCertificate from 'vite-plugin-mkcert'; | ||
7 | import vueSetupExtend from 'vite-plugin-vue-setup-extend'; | 7 | import vueSetupExtend from 'vite-plugin-vue-setup-extend'; |
8 | import { configHtmlPlugin } from './html'; | 8 | import { configHtmlPlugin } from './html'; |
9 | import { configPwaConfig } from './pwa'; | 9 | import { configPwaConfig } from './pwa'; |
@@ -24,13 +24,16 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { | @@ -24,13 +24,16 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { | ||
24 | VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE, | 24 | VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE, |
25 | } = viteEnv; | 25 | } = viteEnv; |
26 | 26 | ||
27 | - const vitePlugins: (Plugin | Plugin[])[] = [ | 27 | + const vitePlugins = [ |
28 | // have to | 28 | // have to |
29 | vue(), | 29 | vue(), |
30 | // have to | 30 | // have to |
31 | vueJsx(), | 31 | vueJsx(), |
32 | // support name | 32 | // support name |
33 | vueSetupExtend(), | 33 | vueSetupExtend(), |
34 | + VitePluginCertificate({ | ||
35 | + source: 'coding', | ||
36 | + }), | ||
34 | ]; | 37 | ]; |
35 | 38 | ||
36 | // vite-plugin-windicss | 39 | // vite-plugin-windicss |
package.json
@@ -35,15 +35,15 @@ | @@ -35,15 +35,15 @@ | ||
35 | "dependencies": { | 35 | "dependencies": { |
36 | "@ant-design/colors": "^6.0.0", | 36 | "@ant-design/colors": "^6.0.0", |
37 | "@ant-design/icons-vue": "^6.0.1", | 37 | "@ant-design/icons-vue": "^6.0.1", |
38 | - "@iconify/iconify": "^2.1.0", | ||
39 | - "@logicflow/core": "^0.7.16", | ||
40 | - "@logicflow/extension": "^0.7.16", | ||
41 | - "@vue/runtime-core": "^3.2.26", | ||
42 | - "@vue/shared": "^3.2.26", | ||
43 | - "@vueuse/core": "^7.4.1", | ||
44 | - "@vueuse/shared": "^7.4.1", | 38 | + "@iconify/iconify": "^2.1.1", |
39 | + "@logicflow/core": "^1.0.7", | ||
40 | + "@logicflow/extension": "^1.0.7", | ||
41 | + "@vue/runtime-core": "^3.2.27", | ||
42 | + "@vue/shared": "^3.2.27", | ||
43 | + "@vueuse/core": "^7.5.3", | ||
44 | + "@vueuse/shared": "^7.5.3", | ||
45 | "@zxcvbn-ts/core": "^1.2.0", | 45 | "@zxcvbn-ts/core": "^1.2.0", |
46 | - "ant-design-vue": "3.0.0-beta.3", | 46 | + "ant-design-vue": "3.0.0-beta.7", |
47 | "axios": "^0.24.0", | 47 | "axios": "^0.24.0", |
48 | "codemirror": "^5.65.0", | 48 | "codemirror": "^5.65.0", |
49 | "cropperjs": "^1.5.12", | 49 | "cropperjs": "^1.5.12", |
@@ -58,93 +58,94 @@ | @@ -58,93 +58,94 @@ | ||
58 | "pinia": "2.0.9", | 58 | "pinia": "2.0.9", |
59 | "print-js": "^1.6.0", | 59 | "print-js": "^1.6.0", |
60 | "qrcode": "^1.5.0", | 60 | "qrcode": "^1.5.0", |
61 | - "qs": "^6.10.2", | 61 | + "qs": "^6.10.3", |
62 | "resize-observer-polyfill": "^1.5.1", | 62 | "resize-observer-polyfill": "^1.5.1", |
63 | "showdown": "^1.9.1", | 63 | "showdown": "^1.9.1", |
64 | "sortablejs": "^1.14.0", | 64 | "sortablejs": "^1.14.0", |
65 | "tinymce": "^5.10.2", | 65 | "tinymce": "^5.10.2", |
66 | "vditor": "^3.8.10", | 66 | "vditor": "^3.8.10", |
67 | - "vue": "^3.2.26", | 67 | + "vue": "^3.2.27", |
68 | "vue-i18n": "^9.1.9", | 68 | "vue-i18n": "^9.1.9", |
69 | "vue-json-pretty": "^1.8.2", | 69 | "vue-json-pretty": "^1.8.2", |
70 | "vue-router": "^4.0.12", | 70 | "vue-router": "^4.0.12", |
71 | "vue-types": "^4.1.1", | 71 | "vue-types": "^4.1.1", |
72 | - "xlsx": "^0.17.4" | 72 | + "xlsx": "^0.17.5" |
73 | }, | 73 | }, |
74 | "devDependencies": { | 74 | "devDependencies": { |
75 | - "@commitlint/cli": "^16.0.1", | 75 | + "@commitlint/cli": "^16.0.2", |
76 | "@commitlint/config-conventional": "^16.0.0", | 76 | "@commitlint/config-conventional": "^16.0.0", |
77 | - "@iconify/json": "^2.0.16", | 77 | + "@iconify/json": "^2.0.25", |
78 | "@purge-icons/generated": "^0.7.0", | 78 | "@purge-icons/generated": "^0.7.0", |
79 | "@types/codemirror": "^5.60.5", | 79 | "@types/codemirror": "^5.60.5", |
80 | - "@types/crypto-js": "^4.0.2", | 80 | + "@types/crypto-js": "^4.1.0", |
81 | "@types/fs-extra": "^9.0.13", | 81 | "@types/fs-extra": "^9.0.13", |
82 | "@types/inquirer": "^8.1.3", | 82 | "@types/inquirer": "^8.1.3", |
83 | "@types/intro.js": "^3.0.2", | 83 | "@types/intro.js": "^3.0.2", |
84 | - "@types/jest": "^27.0.3", | 84 | + "@types/jest": "^27.4.0", |
85 | "@types/lodash-es": "^4.17.5", | 85 | "@types/lodash-es": "^4.17.5", |
86 | - "@types/mockjs": "^1.0.4", | ||
87 | - "@types/node": "^17.0.5", | 86 | + "@types/mockjs": "^1.0.6", |
87 | + "@types/node": "^17.0.9", | ||
88 | "@types/nprogress": "^0.2.0", | 88 | "@types/nprogress": "^0.2.0", |
89 | "@types/qrcode": "^1.4.2", | 89 | "@types/qrcode": "^1.4.2", |
90 | "@types/qs": "^6.9.7", | 90 | "@types/qs": "^6.9.7", |
91 | "@types/showdown": "^1.9.4", | 91 | "@types/showdown": "^1.9.4", |
92 | "@types/sortablejs": "^1.10.7", | 92 | "@types/sortablejs": "^1.10.7", |
93 | - "@typescript-eslint/eslint-plugin": "^5.8.1", | ||
94 | - "@typescript-eslint/parser": "^5.8.1", | 93 | + "@typescript-eslint/eslint-plugin": "^5.10.0", |
94 | + "@typescript-eslint/parser": "^5.10.0", | ||
95 | "@vitejs/plugin-legacy": "^1.6.4", | 95 | "@vitejs/plugin-legacy": "^1.6.4", |
96 | "@vitejs/plugin-vue": "^2.0.1", | 96 | "@vitejs/plugin-vue": "^2.0.1", |
97 | "@vitejs/plugin-vue-jsx": "^1.3.3", | 97 | "@vitejs/plugin-vue-jsx": "^1.3.3", |
98 | - "@vue/compiler-sfc": "3.2.26", | 98 | + "@vue/compiler-sfc": "3.2.27", |
99 | "@vue/test-utils": "^2.0.0-rc.18", | 99 | "@vue/test-utils": "^2.0.0-rc.18", |
100 | - "autoprefixer": "^10.4.0", | 100 | + "autoprefixer": "^10.4.2", |
101 | "commitizen": "^4.2.4", | 101 | "commitizen": "^4.2.4", |
102 | "conventional-changelog-cli": "^2.2.2", | 102 | "conventional-changelog-cli": "^2.2.2", |
103 | "cross-env": "^7.0.3", | 103 | "cross-env": "^7.0.3", |
104 | - "dotenv": "^10.0.0", | ||
105 | - "eslint": "^8.5.0", | 104 | + "dotenv": "^14.2.0", |
105 | + "eslint": "^8.7.0", | ||
106 | "eslint-config-prettier": "^8.3.0", | 106 | "eslint-config-prettier": "^8.3.0", |
107 | - "eslint-define-config": "^1.2.1", | ||
108 | - "eslint-plugin-jest": "^25.3.2", | 107 | + "eslint-define-config": "^1.2.2", |
108 | + "eslint-plugin-jest": "^25.7.0", | ||
109 | "eslint-plugin-prettier": "^4.0.0", | 109 | "eslint-plugin-prettier": "^4.0.0", |
110 | - "eslint-plugin-vue": "^8.2.0", | ||
111 | - "esno": "^0.13.0", | 110 | + "eslint-plugin-vue": "^8.3.0", |
111 | + "esno": "^0.14.0", | ||
112 | "fs-extra": "^10.0.0", | 112 | "fs-extra": "^10.0.0", |
113 | "husky": "^7.0.4", | 113 | "husky": "^7.0.4", |
114 | "inquirer": "^8.2.0", | 114 | "inquirer": "^8.2.0", |
115 | - "jest": "^27.4.5", | 115 | + "jest": "^27.4.7", |
116 | "less": "^4.1.2", | 116 | "less": "^4.1.2", |
117 | - "lint-staged": "12.1.4", | 117 | + "lint-staged": "12.1.7", |
118 | "npm-run-all": "^4.1.5", | 118 | "npm-run-all": "^4.1.5", |
119 | "postcss": "^8.4.5", | 119 | "postcss": "^8.4.5", |
120 | "postcss-html": "^1.3.0", | 120 | "postcss-html": "^1.3.0", |
121 | - "postcss-less": "^5.0.0", | 121 | + "postcss-less": "^6.0.0", |
122 | "prettier": "^2.5.1", | 122 | "prettier": "^2.5.1", |
123 | "rimraf": "^3.0.2", | 123 | "rimraf": "^3.0.2", |
124 | - "rollup-plugin-visualizer": "^5.5.2", | 124 | + "rollup-plugin-visualizer": "^5.5.4", |
125 | "stylelint": "^14.2.0", | 125 | "stylelint": "^14.2.0", |
126 | "stylelint-config-html": "^1.0.0", | 126 | "stylelint-config-html": "^1.0.0", |
127 | "stylelint-config-prettier": "^9.0.3", | 127 | "stylelint-config-prettier": "^9.0.3", |
128 | "stylelint-config-recommended": "^6.0.0", | 128 | "stylelint-config-recommended": "^6.0.0", |
129 | "stylelint-config-standard": "^24.0.0", | 129 | "stylelint-config-standard": "^24.0.0", |
130 | "stylelint-order": "^5.0.0", | 130 | "stylelint-order": "^5.0.0", |
131 | - "ts-jest": "^27.1.2", | 131 | + "ts-jest": "^27.1.3", |
132 | "ts-node": "^10.4.0", | 132 | "ts-node": "^10.4.0", |
133 | "typescript": "^4.5.4", | 133 | "typescript": "^4.5.4", |
134 | - "vite": "^2.7.8", | 134 | + "vite": "^2.8.0-beta.2", |
135 | "vite-plugin-compression": "^0.4.0", | 135 | "vite-plugin-compression": "^0.4.0", |
136 | "vite-plugin-html": "^2.1.2", | 136 | "vite-plugin-html": "^2.1.2", |
137 | "vite-plugin-imagemin": "^0.5.1", | 137 | "vite-plugin-imagemin": "^0.5.1", |
138 | + "vite-plugin-mkcert": "^1.5.2", | ||
138 | "vite-plugin-mock": "^2.9.6", | 139 | "vite-plugin-mock": "^2.9.6", |
139 | "vite-plugin-purge-icons": "^0.7.0", | 140 | "vite-plugin-purge-icons": "^0.7.0", |
140 | - "vite-plugin-pwa": "^0.11.12", | 141 | + "vite-plugin-pwa": "^0.11.13", |
141 | "vite-plugin-style-import": "^1.4.1", | 142 | "vite-plugin-style-import": "^1.4.1", |
142 | - "vite-plugin-svg-icons": "^1.0.5", | 143 | + "vite-plugin-svg-icons": "^1.1.0", |
143 | "vite-plugin-theme": "^0.8.1", | 144 | "vite-plugin-theme": "^0.8.1", |
144 | "vite-plugin-vue-setup-extend": "^0.3.0", | 145 | "vite-plugin-vue-setup-extend": "^0.3.0", |
145 | - "vite-plugin-windicss": "^1.6.1", | 146 | + "vite-plugin-windicss": "^1.6.3", |
146 | "vue-eslint-parser": "^8.0.1", | 147 | "vue-eslint-parser": "^8.0.1", |
147 | - "vue-tsc": "^0.30.1" | 148 | + "vue-tsc": "^0.30.5" |
148 | }, | 149 | }, |
149 | "resolutions": { | 150 | "resolutions": { |
150 | "bin-wrapper": "npm:bin-wrapper-china", | 151 | "bin-wrapper": "npm:bin-wrapper-china", |
pnpm-lock.yaml
@@ -8,41 +8,41 @@ overrides: | @@ -8,41 +8,41 @@ overrides: | ||
8 | specifiers: | 8 | specifiers: |
9 | '@ant-design/colors': ^6.0.0 | 9 | '@ant-design/colors': ^6.0.0 |
10 | '@ant-design/icons-vue': ^6.0.1 | 10 | '@ant-design/icons-vue': ^6.0.1 |
11 | - '@commitlint/cli': ^16.0.1 | 11 | + '@commitlint/cli': ^16.0.2 |
12 | '@commitlint/config-conventional': ^16.0.0 | 12 | '@commitlint/config-conventional': ^16.0.0 |
13 | - '@iconify/iconify': ^2.1.0 | ||
14 | - '@iconify/json': ^2.0.16 | ||
15 | - '@logicflow/core': ^0.7.16 | ||
16 | - '@logicflow/extension': ^0.7.16 | 13 | + '@iconify/iconify': ^2.1.1 |
14 | + '@iconify/json': ^2.0.25 | ||
15 | + '@logicflow/core': ^1.0.7 | ||
16 | + '@logicflow/extension': ^1.0.7 | ||
17 | '@purge-icons/generated': ^0.7.0 | 17 | '@purge-icons/generated': ^0.7.0 |
18 | '@types/codemirror': ^5.60.5 | 18 | '@types/codemirror': ^5.60.5 |
19 | - '@types/crypto-js': ^4.0.2 | 19 | + '@types/crypto-js': ^4.1.0 |
20 | '@types/fs-extra': ^9.0.13 | 20 | '@types/fs-extra': ^9.0.13 |
21 | '@types/inquirer': ^8.1.3 | 21 | '@types/inquirer': ^8.1.3 |
22 | '@types/intro.js': ^3.0.2 | 22 | '@types/intro.js': ^3.0.2 |
23 | - '@types/jest': ^27.0.3 | 23 | + '@types/jest': ^27.4.0 |
24 | '@types/lodash-es': ^4.17.5 | 24 | '@types/lodash-es': ^4.17.5 |
25 | - '@types/mockjs': ^1.0.4 | ||
26 | - '@types/node': ^17.0.5 | 25 | + '@types/mockjs': ^1.0.6 |
26 | + '@types/node': ^17.0.9 | ||
27 | '@types/nprogress': ^0.2.0 | 27 | '@types/nprogress': ^0.2.0 |
28 | '@types/qrcode': ^1.4.2 | 28 | '@types/qrcode': ^1.4.2 |
29 | '@types/qs': ^6.9.7 | 29 | '@types/qs': ^6.9.7 |
30 | '@types/showdown': ^1.9.4 | 30 | '@types/showdown': ^1.9.4 |
31 | '@types/sortablejs': ^1.10.7 | 31 | '@types/sortablejs': ^1.10.7 |
32 | - '@typescript-eslint/eslint-plugin': ^5.8.1 | ||
33 | - '@typescript-eslint/parser': ^5.8.1 | 32 | + '@typescript-eslint/eslint-plugin': ^5.10.0 |
33 | + '@typescript-eslint/parser': ^5.10.0 | ||
34 | '@vitejs/plugin-legacy': ^1.6.4 | 34 | '@vitejs/plugin-legacy': ^1.6.4 |
35 | '@vitejs/plugin-vue': ^2.0.1 | 35 | '@vitejs/plugin-vue': ^2.0.1 |
36 | '@vitejs/plugin-vue-jsx': ^1.3.3 | 36 | '@vitejs/plugin-vue-jsx': ^1.3.3 |
37 | - '@vue/compiler-sfc': 3.2.26 | ||
38 | - '@vue/runtime-core': ^3.2.26 | ||
39 | - '@vue/shared': ^3.2.26 | 37 | + '@vue/compiler-sfc': 3.2.27 |
38 | + '@vue/runtime-core': ^3.2.27 | ||
39 | + '@vue/shared': ^3.2.27 | ||
40 | '@vue/test-utils': ^2.0.0-rc.18 | 40 | '@vue/test-utils': ^2.0.0-rc.18 |
41 | - '@vueuse/core': ^7.4.1 | ||
42 | - '@vueuse/shared': ^7.4.1 | 41 | + '@vueuse/core': ^7.5.3 |
42 | + '@vueuse/shared': ^7.5.3 | ||
43 | '@zxcvbn-ts/core': ^1.2.0 | 43 | '@zxcvbn-ts/core': ^1.2.0 |
44 | - ant-design-vue: 3.0.0-beta.3 | ||
45 | - autoprefixer: ^10.4.0 | 44 | + ant-design-vue: 3.0.0-beta.7 |
45 | + autoprefixer: ^10.4.2 | ||
46 | axios: ^0.24.0 | 46 | axios: ^0.24.0 |
47 | codemirror: ^5.65.0 | 47 | codemirror: ^5.65.0 |
48 | commitizen: ^4.2.4 | 48 | commitizen: ^4.2.4 |
@@ -51,22 +51,22 @@ specifiers: | @@ -51,22 +51,22 @@ specifiers: | ||
51 | cross-env: ^7.0.3 | 51 | cross-env: ^7.0.3 |
52 | crypto-js: ^4.1.1 | 52 | crypto-js: ^4.1.1 |
53 | dayjs: ^1.10.7 | 53 | dayjs: ^1.10.7 |
54 | - dotenv: ^10.0.0 | 54 | + dotenv: ^14.2.0 |
55 | echarts: ^5.2.2 | 55 | echarts: ^5.2.2 |
56 | - eslint: ^8.5.0 | 56 | + eslint: ^8.7.0 |
57 | eslint-config-prettier: ^8.3.0 | 57 | eslint-config-prettier: ^8.3.0 |
58 | - eslint-define-config: ^1.2.1 | ||
59 | - eslint-plugin-jest: ^25.3.2 | 58 | + eslint-define-config: ^1.2.2 |
59 | + eslint-plugin-jest: ^25.7.0 | ||
60 | eslint-plugin-prettier: ^4.0.0 | 60 | eslint-plugin-prettier: ^4.0.0 |
61 | - eslint-plugin-vue: ^8.2.0 | ||
62 | - esno: ^0.13.0 | 61 | + eslint-plugin-vue: ^8.3.0 |
62 | + esno: ^0.14.0 | ||
63 | fs-extra: ^10.0.0 | 63 | fs-extra: ^10.0.0 |
64 | husky: ^7.0.4 | 64 | husky: ^7.0.4 |
65 | inquirer: ^8.2.0 | 65 | inquirer: ^8.2.0 |
66 | intro.js: ^4.3.0 | 66 | intro.js: ^4.3.0 |
67 | - jest: ^27.4.5 | 67 | + jest: ^27.4.7 |
68 | less: ^4.1.2 | 68 | less: ^4.1.2 |
69 | - lint-staged: 12.1.4 | 69 | + lint-staged: 12.1.7 |
70 | lodash-es: ^4.17.21 | 70 | lodash-es: ^4.17.21 |
71 | mockjs: ^1.1.0 | 71 | mockjs: ^1.1.0 |
72 | npm-run-all: ^4.1.5 | 72 | npm-run-all: ^4.1.5 |
@@ -75,14 +75,14 @@ specifiers: | @@ -75,14 +75,14 @@ specifiers: | ||
75 | pinia: 2.0.9 | 75 | pinia: 2.0.9 |
76 | postcss: ^8.4.5 | 76 | postcss: ^8.4.5 |
77 | postcss-html: ^1.3.0 | 77 | postcss-html: ^1.3.0 |
78 | - postcss-less: ^5.0.0 | 78 | + postcss-less: ^6.0.0 |
79 | prettier: ^2.5.1 | 79 | prettier: ^2.5.1 |
80 | print-js: ^1.6.0 | 80 | print-js: ^1.6.0 |
81 | qrcode: ^1.5.0 | 81 | qrcode: ^1.5.0 |
82 | - qs: ^6.10.2 | 82 | + qs: ^6.10.3 |
83 | resize-observer-polyfill: ^1.5.1 | 83 | resize-observer-polyfill: ^1.5.1 |
84 | rimraf: ^3.0.2 | 84 | rimraf: ^3.0.2 |
85 | - rollup-plugin-visualizer: ^5.5.2 | 85 | + rollup-plugin-visualizer: ^5.5.4 |
86 | showdown: ^1.9.1 | 86 | showdown: ^1.9.1 |
87 | sortablejs: ^1.14.0 | 87 | sortablejs: ^1.14.0 |
88 | stylelint: ^14.2.0 | 88 | stylelint: ^14.2.0 |
@@ -92,43 +92,44 @@ specifiers: | @@ -92,43 +92,44 @@ specifiers: | ||
92 | stylelint-config-standard: ^24.0.0 | 92 | stylelint-config-standard: ^24.0.0 |
93 | stylelint-order: ^5.0.0 | 93 | stylelint-order: ^5.0.0 |
94 | tinymce: ^5.10.2 | 94 | tinymce: ^5.10.2 |
95 | - ts-jest: ^27.1.2 | 95 | + ts-jest: ^27.1.3 |
96 | ts-node: ^10.4.0 | 96 | ts-node: ^10.4.0 |
97 | typescript: ^4.5.4 | 97 | typescript: ^4.5.4 |
98 | vditor: ^3.8.10 | 98 | vditor: ^3.8.10 |
99 | - vite: ^2.7.8 | 99 | + vite: ^2.8.0-beta.2 |
100 | vite-plugin-compression: ^0.4.0 | 100 | vite-plugin-compression: ^0.4.0 |
101 | vite-plugin-html: ^2.1.2 | 101 | vite-plugin-html: ^2.1.2 |
102 | vite-plugin-imagemin: ^0.5.1 | 102 | vite-plugin-imagemin: ^0.5.1 |
103 | + vite-plugin-mkcert: ^1.5.2 | ||
103 | vite-plugin-mock: ^2.9.6 | 104 | vite-plugin-mock: ^2.9.6 |
104 | vite-plugin-purge-icons: ^0.7.0 | 105 | vite-plugin-purge-icons: ^0.7.0 |
105 | - vite-plugin-pwa: ^0.11.12 | 106 | + vite-plugin-pwa: ^0.11.13 |
106 | vite-plugin-style-import: ^1.4.1 | 107 | vite-plugin-style-import: ^1.4.1 |
107 | - vite-plugin-svg-icons: ^1.0.5 | 108 | + vite-plugin-svg-icons: ^1.1.0 |
108 | vite-plugin-theme: ^0.8.1 | 109 | vite-plugin-theme: ^0.8.1 |
109 | vite-plugin-vue-setup-extend: ^0.3.0 | 110 | vite-plugin-vue-setup-extend: ^0.3.0 |
110 | - vite-plugin-windicss: ^1.6.1 | ||
111 | - vue: ^3.2.26 | 111 | + vite-plugin-windicss: ^1.6.3 |
112 | + vue: ^3.2.27 | ||
112 | vue-eslint-parser: ^8.0.1 | 113 | vue-eslint-parser: ^8.0.1 |
113 | vue-i18n: ^9.1.9 | 114 | vue-i18n: ^9.1.9 |
114 | vue-json-pretty: ^1.8.2 | 115 | vue-json-pretty: ^1.8.2 |
115 | vue-router: ^4.0.12 | 116 | vue-router: ^4.0.12 |
116 | - vue-tsc: ^0.30.1 | 117 | + vue-tsc: ^0.30.5 |
117 | vue-types: ^4.1.1 | 118 | vue-types: ^4.1.1 |
118 | - xlsx: ^0.17.4 | 119 | + xlsx: ^0.17.5 |
119 | 120 | ||
120 | dependencies: | 121 | dependencies: |
121 | '@ant-design/colors': 6.0.0 | 122 | '@ant-design/colors': 6.0.0 |
122 | - '@ant-design/icons-vue': 6.0.1_vue@3.2.26 | ||
123 | - '@iconify/iconify': 2.1.0 | ||
124 | - '@logicflow/core': 0.7.16 | ||
125 | - '@logicflow/extension': 0.7.16 | ||
126 | - '@vue/runtime-core': 3.2.26 | ||
127 | - '@vue/shared': 3.2.26 | ||
128 | - '@vueuse/core': 7.4.1_vue@3.2.26 | ||
129 | - '@vueuse/shared': 7.4.1_vue@3.2.26 | 123 | + '@ant-design/icons-vue': 6.0.1_vue@3.2.27 |
124 | + '@iconify/iconify': 2.1.1 | ||
125 | + '@logicflow/core': 1.0.7 | ||
126 | + '@logicflow/extension': 1.0.7 | ||
127 | + '@vue/runtime-core': 3.2.27 | ||
128 | + '@vue/shared': 3.2.27 | ||
129 | + '@vueuse/core': 7.5.3_vue@3.2.27 | ||
130 | + '@vueuse/shared': 7.5.3_vue@3.2.27 | ||
130 | '@zxcvbn-ts/core': 1.2.0 | 131 | '@zxcvbn-ts/core': 1.2.0 |
131 | - ant-design-vue: 3.0.0-beta.3_ae87cbba5ec93a01f3fe1197df446ca3 | 132 | + ant-design-vue: 3.0.0-beta.7_1d3c0f59c01af099101b44516eefc99f |
132 | axios: 0.24.0 | 133 | axios: 0.24.0 |
133 | codemirror: 5.65.0 | 134 | codemirror: 5.65.0 |
134 | cropperjs: 1.5.12 | 135 | cropperjs: 1.5.12 |
@@ -140,96 +141,97 @@ dependencies: | @@ -140,96 +141,97 @@ dependencies: | ||
140 | mockjs: 1.1.0 | 141 | mockjs: 1.1.0 |
141 | nprogress: 0.2.0 | 142 | nprogress: 0.2.0 |
142 | path-to-regexp: 6.2.0 | 143 | path-to-regexp: 6.2.0 |
143 | - pinia: 2.0.9_typescript@4.5.4+vue@3.2.26 | 144 | + pinia: 2.0.9_typescript@4.5.4+vue@3.2.27 |
144 | print-js: 1.6.0 | 145 | print-js: 1.6.0 |
145 | qrcode: 1.5.0 | 146 | qrcode: 1.5.0 |
146 | - qs: 6.10.2 | 147 | + qs: 6.10.3 |
147 | resize-observer-polyfill: 1.5.1 | 148 | resize-observer-polyfill: 1.5.1 |
148 | showdown: 1.9.1 | 149 | showdown: 1.9.1 |
149 | sortablejs: 1.14.0 | 150 | sortablejs: 1.14.0 |
150 | tinymce: 5.10.2 | 151 | tinymce: 5.10.2 |
151 | vditor: 3.8.10 | 152 | vditor: 3.8.10 |
152 | - vue: 3.2.26 | ||
153 | - vue-i18n: 9.1.9_vue@3.2.26 | 153 | + vue: 3.2.27 |
154 | + vue-i18n: 9.1.9_vue@3.2.27 | ||
154 | vue-json-pretty: 1.8.2 | 155 | vue-json-pretty: 1.8.2 |
155 | - vue-router: 4.0.12_vue@3.2.26 | ||
156 | - vue-types: 4.1.1_vue@3.2.26 | ||
157 | - xlsx: 0.17.4 | 156 | + vue-router: 4.0.12_vue@3.2.27 |
157 | + vue-types: 4.1.1_vue@3.2.27 | ||
158 | + xlsx: 0.17.5 | ||
158 | 159 | ||
159 | devDependencies: | 160 | devDependencies: |
160 | - '@commitlint/cli': 16.0.1_@types+node@17.0.5 | 161 | + '@commitlint/cli': 16.0.2_@types+node@17.0.9 |
161 | '@commitlint/config-conventional': 16.0.0 | 162 | '@commitlint/config-conventional': 16.0.0 |
162 | - '@iconify/json': 2.0.16 | 163 | + '@iconify/json': 2.0.25 |
163 | '@purge-icons/generated': 0.7.0 | 164 | '@purge-icons/generated': 0.7.0 |
164 | '@types/codemirror': 5.60.5 | 165 | '@types/codemirror': 5.60.5 |
165 | - '@types/crypto-js': 4.0.2 | 166 | + '@types/crypto-js': 4.1.0 |
166 | '@types/fs-extra': 9.0.13 | 167 | '@types/fs-extra': 9.0.13 |
167 | '@types/inquirer': 8.1.3 | 168 | '@types/inquirer': 8.1.3 |
168 | '@types/intro.js': 3.0.2 | 169 | '@types/intro.js': 3.0.2 |
169 | - '@types/jest': 27.0.3 | 170 | + '@types/jest': 27.4.0 |
170 | '@types/lodash-es': 4.17.5 | 171 | '@types/lodash-es': 4.17.5 |
171 | - '@types/mockjs': 1.0.4 | ||
172 | - '@types/node': 17.0.5 | 172 | + '@types/mockjs': 1.0.6 |
173 | + '@types/node': 17.0.9 | ||
173 | '@types/nprogress': 0.2.0 | 174 | '@types/nprogress': 0.2.0 |
174 | '@types/qrcode': 1.4.2 | 175 | '@types/qrcode': 1.4.2 |
175 | '@types/qs': 6.9.7 | 176 | '@types/qs': 6.9.7 |
176 | '@types/showdown': 1.9.4 | 177 | '@types/showdown': 1.9.4 |
177 | '@types/sortablejs': 1.10.7 | 178 | '@types/sortablejs': 1.10.7 |
178 | - '@typescript-eslint/eslint-plugin': 5.8.1_3a47348159e115370aa4cba56aba33b6 | ||
179 | - '@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4 | ||
180 | - '@vitejs/plugin-legacy': 1.6.4_vite@2.7.8 | ||
181 | - '@vitejs/plugin-vue': 2.0.1_vite@2.7.8+vue@3.2.26 | 179 | + '@typescript-eslint/eslint-plugin': 5.10.0_3b6b276e93ead7cf6063f183a5e18d1f |
180 | + '@typescript-eslint/parser': 5.10.0_eslint@8.7.0+typescript@4.5.4 | ||
181 | + '@vitejs/plugin-legacy': 1.6.4_vite@2.8.0-beta.2 | ||
182 | + '@vitejs/plugin-vue': 2.0.1_vite@2.8.0-beta.2+vue@3.2.27 | ||
182 | '@vitejs/plugin-vue-jsx': 1.3.3 | 183 | '@vitejs/plugin-vue-jsx': 1.3.3 |
183 | - '@vue/compiler-sfc': 3.2.26 | ||
184 | - '@vue/test-utils': 2.0.0-rc.18_vue@3.2.26 | ||
185 | - autoprefixer: 10.4.0_postcss@8.4.5 | ||
186 | - commitizen: 4.2.4_@types+node@17.0.5 | 184 | + '@vue/compiler-sfc': 3.2.27 |
185 | + '@vue/test-utils': 2.0.0-rc.18_vue@3.2.27 | ||
186 | + autoprefixer: 10.4.2_postcss@8.4.5 | ||
187 | + commitizen: 4.2.4_@types+node@17.0.9 | ||
187 | conventional-changelog-cli: 2.2.2 | 188 | conventional-changelog-cli: 2.2.2 |
188 | cross-env: 7.0.3 | 189 | cross-env: 7.0.3 |
189 | - dotenv: 10.0.0 | ||
190 | - eslint: 8.5.0 | ||
191 | - eslint-config-prettier: 8.3.0_eslint@8.5.0 | ||
192 | - eslint-define-config: 1.2.1 | ||
193 | - eslint-plugin-jest: 25.3.2_8e4587ffdbad7ecbf6b0774bd21bf51b | ||
194 | - eslint-plugin-prettier: 4.0.0_94e1b6d3ce6ea916847122712570e9ae | ||
195 | - eslint-plugin-vue: 8.2.0_eslint@8.5.0 | ||
196 | - esno: 0.13.0_typescript@4.5.4 | 190 | + dotenv: 14.2.0 |
191 | + eslint: 8.7.0 | ||
192 | + eslint-config-prettier: 8.3.0_eslint@8.7.0 | ||
193 | + eslint-define-config: 1.2.2 | ||
194 | + eslint-plugin-jest: 25.7.0_044a69ce56423e5a462f0eb0c643b7d7 | ||
195 | + eslint-plugin-prettier: 4.0.0_4660519532e4c3b0a9e5bb6623cfedf6 | ||
196 | + eslint-plugin-vue: 8.3.0_eslint@8.7.0 | ||
197 | + esno: 0.14.0_typescript@4.5.4 | ||
197 | fs-extra: 10.0.0 | 198 | fs-extra: 10.0.0 |
198 | husky: 7.0.4 | 199 | husky: 7.0.4 |
199 | inquirer: 8.2.0 | 200 | inquirer: 8.2.0 |
200 | - jest: 27.4.5_ts-node@10.4.0 | 201 | + jest: 27.4.7_ts-node@10.4.0 |
201 | less: 4.1.2 | 202 | less: 4.1.2 |
202 | - lint-staged: 12.1.4 | 203 | + lint-staged: 12.1.7 |
203 | npm-run-all: 4.1.5 | 204 | npm-run-all: 4.1.5 |
204 | postcss: 8.4.5 | 205 | postcss: 8.4.5 |
205 | postcss-html: 1.3.0 | 206 | postcss-html: 1.3.0 |
206 | - postcss-less: 5.0.0 | 207 | + postcss-less: 6.0.0_postcss@8.4.5 |
207 | prettier: 2.5.1 | 208 | prettier: 2.5.1 |
208 | rimraf: 3.0.2 | 209 | rimraf: 3.0.2 |
209 | - rollup-plugin-visualizer: 5.5.2 | 210 | + rollup-plugin-visualizer: 5.5.4 |
210 | stylelint: 14.2.0 | 211 | stylelint: 14.2.0 |
211 | stylelint-config-html: 1.0.0_2d1bcf73d0f2e8e613ccd6d821b0344f | 212 | stylelint-config-html: 1.0.0_2d1bcf73d0f2e8e613ccd6d821b0344f |
212 | stylelint-config-prettier: 9.0.3_stylelint@14.2.0 | 213 | stylelint-config-prettier: 9.0.3_stylelint@14.2.0 |
213 | stylelint-config-recommended: 6.0.0_stylelint@14.2.0 | 214 | stylelint-config-recommended: 6.0.0_stylelint@14.2.0 |
214 | stylelint-config-standard: 24.0.0_stylelint@14.2.0 | 215 | stylelint-config-standard: 24.0.0_stylelint@14.2.0 |
215 | stylelint-order: 5.0.0_stylelint@14.2.0 | 216 | stylelint-order: 5.0.0_stylelint@14.2.0 |
216 | - ts-jest: 27.1.2_b65cae1b46840061996b6cc0ea16ca56 | ||
217 | - ts-node: 10.4.0_bad060d5f9aca5284661d88d739ba15b | 217 | + ts-jest: 27.1.3_9364f2ad0b7b67f00a4d081c662c6871 |
218 | + ts-node: 10.4.0_58ff8c2ecf784f4683a8548a58a2b611 | ||
218 | typescript: 4.5.4 | 219 | typescript: 4.5.4 |
219 | - vite: 2.7.8_less@4.1.2 | ||
220 | - vite-plugin-compression: 0.4.0_vite@2.7.8 | ||
221 | - vite-plugin-html: 2.1.2_vite@2.7.8 | ||
222 | - vite-plugin-imagemin: 0.5.1_vite@2.7.8 | ||
223 | - vite-plugin-mock: 2.9.6_mockjs@1.1.0+vite@2.7.8 | ||
224 | - vite-plugin-purge-icons: 0.7.0_vite@2.7.8 | ||
225 | - vite-plugin-pwa: 0.11.12_vite@2.7.8 | ||
226 | - vite-plugin-style-import: 1.4.1_vite@2.7.8 | ||
227 | - vite-plugin-svg-icons: 1.0.5_vite@2.7.8 | ||
228 | - vite-plugin-theme: 0.8.1_vite@2.7.8 | ||
229 | - vite-plugin-vue-setup-extend: 0.3.0_vite@2.7.8 | ||
230 | - vite-plugin-windicss: 1.6.1_vite@2.7.8 | ||
231 | - vue-eslint-parser: 8.0.1_eslint@8.5.0 | ||
232 | - vue-tsc: 0.30.1_typescript@4.5.4 | 220 | + vite: 2.8.0-beta.2_less@4.1.2 |
221 | + vite-plugin-compression: 0.4.0_vite@2.8.0-beta.2 | ||
222 | + vite-plugin-html: 2.1.2_vite@2.8.0-beta.2 | ||
223 | + vite-plugin-imagemin: 0.5.1_vite@2.8.0-beta.2 | ||
224 | + vite-plugin-mkcert: 1.5.2 | ||
225 | + vite-plugin-mock: 2.9.6_mockjs@1.1.0+vite@2.8.0-beta.2 | ||
226 | + vite-plugin-purge-icons: 0.7.0_vite@2.8.0-beta.2 | ||
227 | + vite-plugin-pwa: 0.11.13_vite@2.8.0-beta.2 | ||
228 | + vite-plugin-style-import: 1.4.1_vite@2.8.0-beta.2 | ||
229 | + vite-plugin-svg-icons: 1.1.0_vite@2.8.0-beta.2 | ||
230 | + vite-plugin-theme: 0.8.1_vite@2.8.0-beta.2 | ||
231 | + vite-plugin-vue-setup-extend: 0.3.0_vite@2.8.0-beta.2 | ||
232 | + vite-plugin-windicss: 1.6.3_vite@2.8.0-beta.2 | ||
233 | + vue-eslint-parser: 8.0.1_eslint@8.7.0 | ||
234 | + vue-tsc: 0.30.5_typescript@4.5.4 | ||
233 | 235 | ||
234 | packages: | 236 | packages: |
235 | 237 | ||
@@ -249,7 +251,7 @@ packages: | @@ -249,7 +251,7 @@ packages: | ||
249 | resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} | 251 | resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} |
250 | dev: false | 252 | dev: false |
251 | 253 | ||
252 | - /@ant-design/icons-vue/6.0.1_vue@3.2.26: | 254 | + /@ant-design/icons-vue/6.0.1_vue@3.2.27: |
253 | resolution: {integrity: sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q==} | 255 | resolution: {integrity: sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q==} |
254 | peerDependencies: | 256 | peerDependencies: |
255 | vue: '>=3.0.3' | 257 | vue: '>=3.0.3' |
@@ -258,11 +260,11 @@ packages: | @@ -258,11 +260,11 @@ packages: | ||
258 | '@ant-design/icons-svg': 4.2.1 | 260 | '@ant-design/icons-svg': 4.2.1 |
259 | '@types/lodash': 4.14.177 | 261 | '@types/lodash': 4.14.177 |
260 | lodash: 4.17.21 | 262 | lodash: 4.17.21 |
261 | - vue: 3.2.26 | 263 | + vue: 3.2.27 |
262 | dev: false | 264 | dev: false |
263 | 265 | ||
264 | - /@antfu/utils/0.3.0: | ||
265 | - resolution: {integrity: sha512-UU8TLr/EoXdg7OjMp0h9oDoIAVr+Z/oW9cpOxQQyrsz6Qzd2ms/1CdWx8fl2OQdFpxGmq5Vc4TwfLHId6nAZjA==} | 266 | + /@antfu/utils/0.4.0: |
267 | + resolution: {integrity: sha512-gqkpvjkgFUu+s3kP+Ly33OKpo5zvVY3FDFhv5BIb98SncS3KD6DNxPfNDjwHIoyXbz1leWo1j8DtRLZ1D2Jv+Q==} | ||
266 | dependencies: | 268 | dependencies: |
267 | '@types/throttle-debounce': 2.1.0 | 269 | '@types/throttle-debounce': 2.1.0 |
268 | dev: true | 270 | dev: true |
@@ -291,29 +293,6 @@ packages: | @@ -291,29 +293,6 @@ packages: | ||
291 | engines: {node: '>=6.9.0'} | 293 | engines: {node: '>=6.9.0'} |
292 | dev: true | 294 | dev: true |
293 | 295 | ||
294 | - /@babel/core/7.16.0: | ||
295 | - resolution: {integrity: sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==} | ||
296 | - engines: {node: '>=6.9.0'} | ||
297 | - dependencies: | ||
298 | - '@babel/code-frame': 7.16.0 | ||
299 | - '@babel/generator': 7.16.0 | ||
300 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | ||
301 | - '@babel/helper-module-transforms': 7.16.0 | ||
302 | - '@babel/helpers': 7.16.3 | ||
303 | - '@babel/parser': 7.16.4 | ||
304 | - '@babel/template': 7.16.0 | ||
305 | - '@babel/traverse': 7.16.3 | ||
306 | - '@babel/types': 7.16.0 | ||
307 | - convert-source-map: 1.8.0 | ||
308 | - debug: 4.3.3 | ||
309 | - gensync: 1.0.0-beta.2 | ||
310 | - json5: 2.2.0 | ||
311 | - semver: 6.3.0 | ||
312 | - source-map: 0.5.7 | ||
313 | - transitivePeerDependencies: | ||
314 | - - supports-color | ||
315 | - dev: true | ||
316 | - | ||
317 | /@babel/core/7.16.5: | 296 | /@babel/core/7.16.5: |
318 | resolution: {integrity: sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==} | 297 | resolution: {integrity: sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==} |
319 | engines: {node: '>=6.9.0'} | 298 | engines: {node: '>=6.9.0'} |
@@ -370,19 +349,6 @@ packages: | @@ -370,19 +349,6 @@ packages: | ||
370 | '@babel/types': 7.16.0 | 349 | '@babel/types': 7.16.0 |
371 | dev: true | 350 | dev: true |
372 | 351 | ||
373 | - /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: | ||
374 | - resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} | ||
375 | - engines: {node: '>=6.9.0'} | ||
376 | - peerDependencies: | ||
377 | - '@babel/core': ^7.0.0 | ||
378 | - dependencies: | ||
379 | - '@babel/compat-data': 7.16.4 | ||
380 | - '@babel/core': 7.16.0 | ||
381 | - '@babel/helper-validator-option': 7.14.5 | ||
382 | - browserslist: 4.18.1 | ||
383 | - semver: 6.3.0 | ||
384 | - dev: true | ||
385 | - | ||
386 | /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.5: | 352 | /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.5: |
387 | resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} | 353 | resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} |
388 | engines: {node: '>=6.9.0'} | 354 | engines: {node: '>=6.9.0'} |
@@ -396,23 +362,6 @@ packages: | @@ -396,23 +362,6 @@ packages: | ||
396 | semver: 6.3.0 | 362 | semver: 6.3.0 |
397 | dev: true | 363 | dev: true |
398 | 364 | ||
399 | - /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0: | ||
400 | - resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} | ||
401 | - engines: {node: '>=6.9.0'} | ||
402 | - peerDependencies: | ||
403 | - '@babel/core': ^7.0.0 | ||
404 | - dependencies: | ||
405 | - '@babel/core': 7.16.0 | ||
406 | - '@babel/helper-annotate-as-pure': 7.16.0 | ||
407 | - '@babel/helper-function-name': 7.16.0 | ||
408 | - '@babel/helper-member-expression-to-functions': 7.16.0 | ||
409 | - '@babel/helper-optimise-call-expression': 7.16.0 | ||
410 | - '@babel/helper-replace-supers': 7.16.0 | ||
411 | - '@babel/helper-split-export-declaration': 7.16.0 | ||
412 | - transitivePeerDependencies: | ||
413 | - - supports-color | ||
414 | - dev: true | ||
415 | - | ||
416 | /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.5: | 365 | /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.5: |
417 | resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} | 366 | resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} |
418 | engines: {node: '>=6.9.0'} | 367 | engines: {node: '>=6.9.0'} |
@@ -430,27 +379,27 @@ packages: | @@ -430,27 +379,27 @@ packages: | ||
430 | - supports-color | 379 | - supports-color |
431 | dev: true | 380 | dev: true |
432 | 381 | ||
433 | - /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0: | 382 | + /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.5: |
434 | resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==} | 383 | resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==} |
435 | engines: {node: '>=6.9.0'} | 384 | engines: {node: '>=6.9.0'} |
436 | peerDependencies: | 385 | peerDependencies: |
437 | '@babel/core': ^7.0.0 | 386 | '@babel/core': ^7.0.0 |
438 | dependencies: | 387 | dependencies: |
439 | - '@babel/core': 7.16.0 | 388 | + '@babel/core': 7.16.5 |
440 | '@babel/helper-annotate-as-pure': 7.16.0 | 389 | '@babel/helper-annotate-as-pure': 7.16.0 |
441 | regexpu-core: 4.8.0 | 390 | regexpu-core: 4.8.0 |
442 | dev: true | 391 | dev: true |
443 | 392 | ||
444 | - /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.16.0: | 393 | + /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.16.5: |
445 | resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==} | 394 | resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==} |
446 | peerDependencies: | 395 | peerDependencies: |
447 | '@babel/core': ^7.4.0-0 | 396 | '@babel/core': ^7.4.0-0 |
448 | dependencies: | 397 | dependencies: |
449 | - '@babel/core': 7.16.0 | ||
450 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | 398 | + '@babel/core': 7.16.5 |
399 | + '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 | ||
451 | '@babel/helper-module-imports': 7.16.0 | 400 | '@babel/helper-module-imports': 7.16.0 |
452 | '@babel/helper-plugin-utils': 7.14.5 | 401 | '@babel/helper-plugin-utils': 7.14.5 |
453 | - '@babel/traverse': 7.16.3 | 402 | + '@babel/traverse': 7.16.5 |
454 | debug: 4.3.3 | 403 | debug: 4.3.3 |
455 | lodash.debounce: 4.0.8 | 404 | lodash.debounce: 4.0.8 |
456 | resolve: 1.20.0 | 405 | resolve: 1.20.0 |
@@ -510,22 +459,6 @@ packages: | @@ -510,22 +459,6 @@ packages: | ||
510 | '@babel/types': 7.16.0 | 459 | '@babel/types': 7.16.0 |
511 | dev: true | 460 | dev: true |
512 | 461 | ||
513 | - /@babel/helper-module-transforms/7.16.0: | ||
514 | - resolution: {integrity: sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==} | ||
515 | - engines: {node: '>=6.9.0'} | ||
516 | - dependencies: | ||
517 | - '@babel/helper-module-imports': 7.16.0 | ||
518 | - '@babel/helper-replace-supers': 7.16.0 | ||
519 | - '@babel/helper-simple-access': 7.16.0 | ||
520 | - '@babel/helper-split-export-declaration': 7.16.0 | ||
521 | - '@babel/helper-validator-identifier': 7.15.7 | ||
522 | - '@babel/template': 7.16.0 | ||
523 | - '@babel/traverse': 7.16.3 | ||
524 | - '@babel/types': 7.16.0 | ||
525 | - transitivePeerDependencies: | ||
526 | - - supports-color | ||
527 | - dev: true | ||
528 | - | ||
529 | /@babel/helper-module-transforms/7.16.5: | 462 | /@babel/helper-module-transforms/7.16.5: |
530 | resolution: {integrity: sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==} | 463 | resolution: {integrity: sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==} |
531 | engines: {node: '>=6.9.0'} | 464 | engines: {node: '>=6.9.0'} |
@@ -614,18 +547,7 @@ packages: | @@ -614,18 +547,7 @@ packages: | ||
614 | dependencies: | 547 | dependencies: |
615 | '@babel/helper-function-name': 7.16.0 | 548 | '@babel/helper-function-name': 7.16.0 |
616 | '@babel/template': 7.16.0 | 549 | '@babel/template': 7.16.0 |
617 | - '@babel/traverse': 7.16.3 | ||
618 | - '@babel/types': 7.16.0 | ||
619 | - transitivePeerDependencies: | ||
620 | - - supports-color | ||
621 | - dev: true | ||
622 | - | ||
623 | - /@babel/helpers/7.16.3: | ||
624 | - resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==} | ||
625 | - engines: {node: '>=6.9.0'} | ||
626 | - dependencies: | ||
627 | - '@babel/template': 7.16.0 | ||
628 | - '@babel/traverse': 7.16.3 | 550 | + '@babel/traverse': 7.16.5 |
629 | '@babel/types': 7.16.0 | 551 | '@babel/types': 7.16.0 |
630 | transitivePeerDependencies: | 552 | transitivePeerDependencies: |
631 | - supports-color | 553 | - supports-color |
@@ -655,224 +577,215 @@ packages: | @@ -655,224 +577,215 @@ packages: | ||
655 | resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==} | 577 | resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==} |
656 | engines: {node: '>=6.0.0'} | 578 | engines: {node: '>=6.0.0'} |
657 | hasBin: true | 579 | hasBin: true |
580 | + dev: true | ||
658 | 581 | ||
659 | /@babel/parser/7.16.6: | 582 | /@babel/parser/7.16.6: |
660 | resolution: {integrity: sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==} | 583 | resolution: {integrity: sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==} |
661 | engines: {node: '>=6.0.0'} | 584 | engines: {node: '>=6.0.0'} |
662 | hasBin: true | 585 | hasBin: true |
663 | - dev: true | ||
664 | 586 | ||
665 | - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0: | 587 | + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.5: |
666 | resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==} | 588 | resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==} |
667 | engines: {node: '>=6.9.0'} | 589 | engines: {node: '>=6.9.0'} |
668 | peerDependencies: | 590 | peerDependencies: |
669 | '@babel/core': ^7.0.0 | 591 | '@babel/core': ^7.0.0 |
670 | dependencies: | 592 | dependencies: |
671 | - '@babel/core': 7.16.0 | 593 | + '@babel/core': 7.16.5 |
672 | '@babel/helper-plugin-utils': 7.14.5 | 594 | '@babel/helper-plugin-utils': 7.14.5 |
673 | dev: true | 595 | dev: true |
674 | 596 | ||
675 | - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0: | 597 | + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.5: |
676 | resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==} | 598 | resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==} |
677 | engines: {node: '>=6.9.0'} | 599 | engines: {node: '>=6.9.0'} |
678 | peerDependencies: | 600 | peerDependencies: |
679 | '@babel/core': ^7.13.0 | 601 | '@babel/core': ^7.13.0 |
680 | dependencies: | 602 | dependencies: |
681 | - '@babel/core': 7.16.0 | 603 | + '@babel/core': 7.16.5 |
682 | '@babel/helper-plugin-utils': 7.14.5 | 604 | '@babel/helper-plugin-utils': 7.14.5 |
683 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 | 605 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 |
684 | - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 | 606 | + '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.5 |
685 | dev: true | 607 | dev: true |
686 | 608 | ||
687 | - /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.0: | 609 | + /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.5: |
688 | resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==} | 610 | resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==} |
689 | engines: {node: '>=6.9.0'} | 611 | engines: {node: '>=6.9.0'} |
690 | peerDependencies: | 612 | peerDependencies: |
691 | '@babel/core': ^7.0.0-0 | 613 | '@babel/core': ^7.0.0-0 |
692 | dependencies: | 614 | dependencies: |
693 | - '@babel/core': 7.16.0 | 615 | + '@babel/core': 7.16.5 |
694 | '@babel/helper-plugin-utils': 7.14.5 | 616 | '@babel/helper-plugin-utils': 7.14.5 |
695 | '@babel/helper-remap-async-to-generator': 7.16.4 | 617 | '@babel/helper-remap-async-to-generator': 7.16.4 |
696 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 | 618 | + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.5 |
697 | transitivePeerDependencies: | 619 | transitivePeerDependencies: |
698 | - supports-color | 620 | - supports-color |
699 | dev: true | 621 | dev: true |
700 | 622 | ||
701 | - /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0: | 623 | + /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.5: |
702 | resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==} | 624 | resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==} |
703 | engines: {node: '>=6.9.0'} | 625 | engines: {node: '>=6.9.0'} |
704 | peerDependencies: | 626 | peerDependencies: |
705 | '@babel/core': ^7.0.0-0 | 627 | '@babel/core': ^7.0.0-0 |
706 | dependencies: | 628 | dependencies: |
707 | - '@babel/core': 7.16.0 | ||
708 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | 629 | + '@babel/core': 7.16.5 |
630 | + '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
709 | '@babel/helper-plugin-utils': 7.14.5 | 631 | '@babel/helper-plugin-utils': 7.14.5 |
710 | transitivePeerDependencies: | 632 | transitivePeerDependencies: |
711 | - supports-color | 633 | - supports-color |
712 | dev: true | 634 | dev: true |
713 | 635 | ||
714 | - /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0: | 636 | + /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.5: |
715 | resolution: {integrity: sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==} | 637 | resolution: {integrity: sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==} |
716 | engines: {node: '>=6.9.0'} | 638 | engines: {node: '>=6.9.0'} |
717 | peerDependencies: | 639 | peerDependencies: |
718 | '@babel/core': ^7.12.0 | 640 | '@babel/core': ^7.12.0 |
719 | dependencies: | 641 | dependencies: |
720 | - '@babel/core': 7.16.0 | ||
721 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | 642 | + '@babel/core': 7.16.5 |
643 | + '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
722 | '@babel/helper-plugin-utils': 7.14.5 | 644 | '@babel/helper-plugin-utils': 7.14.5 |
723 | - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 | 645 | + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.5 |
724 | transitivePeerDependencies: | 646 | transitivePeerDependencies: |
725 | - supports-color | 647 | - supports-color |
726 | dev: true | 648 | dev: true |
727 | 649 | ||
728 | - /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0: | 650 | + /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.5: |
729 | resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==} | 651 | resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==} |
730 | engines: {node: '>=6.9.0'} | 652 | engines: {node: '>=6.9.0'} |
731 | peerDependencies: | 653 | peerDependencies: |
732 | '@babel/core': ^7.0.0-0 | 654 | '@babel/core': ^7.0.0-0 |
733 | dependencies: | 655 | dependencies: |
734 | - '@babel/core': 7.16.0 | 656 | + '@babel/core': 7.16.5 |
735 | '@babel/helper-plugin-utils': 7.14.5 | 657 | '@babel/helper-plugin-utils': 7.14.5 |
736 | - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 | 658 | + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.5 |
737 | dev: true | 659 | dev: true |
738 | 660 | ||
739 | - /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0: | 661 | + /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.5: |
740 | resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==} | 662 | resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==} |
741 | engines: {node: '>=6.9.0'} | 663 | engines: {node: '>=6.9.0'} |
742 | peerDependencies: | 664 | peerDependencies: |
743 | '@babel/core': ^7.0.0-0 | 665 | '@babel/core': ^7.0.0-0 |
744 | dependencies: | 666 | dependencies: |
745 | - '@babel/core': 7.16.0 | 667 | + '@babel/core': 7.16.5 |
746 | '@babel/helper-plugin-utils': 7.14.5 | 668 | '@babel/helper-plugin-utils': 7.14.5 |
747 | - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 | 669 | + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.5 |
748 | dev: true | 670 | dev: true |
749 | 671 | ||
750 | - /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0: | 672 | + /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.5: |
751 | resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==} | 673 | resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==} |
752 | engines: {node: '>=6.9.0'} | 674 | engines: {node: '>=6.9.0'} |
753 | peerDependencies: | 675 | peerDependencies: |
754 | '@babel/core': ^7.0.0-0 | 676 | '@babel/core': ^7.0.0-0 |
755 | dependencies: | 677 | dependencies: |
756 | - '@babel/core': 7.16.0 | 678 | + '@babel/core': 7.16.5 |
757 | '@babel/helper-plugin-utils': 7.14.5 | 679 | '@babel/helper-plugin-utils': 7.14.5 |
758 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 | 680 | + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.5 |
759 | dev: true | 681 | dev: true |
760 | 682 | ||
761 | - /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0: | 683 | + /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.5: |
762 | resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==} | 684 | resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==} |
763 | engines: {node: '>=6.9.0'} | 685 | engines: {node: '>=6.9.0'} |
764 | peerDependencies: | 686 | peerDependencies: |
765 | '@babel/core': ^7.0.0-0 | 687 | '@babel/core': ^7.0.0-0 |
766 | dependencies: | 688 | dependencies: |
767 | - '@babel/core': 7.16.0 | 689 | + '@babel/core': 7.16.5 |
768 | '@babel/helper-plugin-utils': 7.14.5 | 690 | '@babel/helper-plugin-utils': 7.14.5 |
769 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 | 691 | + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.5 |
770 | dev: true | 692 | dev: true |
771 | 693 | ||
772 | - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0: | 694 | + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.5: |
773 | resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==} | 695 | resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==} |
774 | engines: {node: '>=6.9.0'} | 696 | engines: {node: '>=6.9.0'} |
775 | peerDependencies: | 697 | peerDependencies: |
776 | '@babel/core': ^7.0.0-0 | 698 | '@babel/core': ^7.0.0-0 |
777 | dependencies: | 699 | dependencies: |
778 | - '@babel/core': 7.16.0 | 700 | + '@babel/core': 7.16.5 |
779 | '@babel/helper-plugin-utils': 7.14.5 | 701 | '@babel/helper-plugin-utils': 7.14.5 |
780 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 | 702 | + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.5 |
781 | dev: true | 703 | dev: true |
782 | 704 | ||
783 | - /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0: | 705 | + /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.5: |
784 | resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==} | 706 | resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==} |
785 | engines: {node: '>=6.9.0'} | 707 | engines: {node: '>=6.9.0'} |
786 | peerDependencies: | 708 | peerDependencies: |
787 | '@babel/core': ^7.0.0-0 | 709 | '@babel/core': ^7.0.0-0 |
788 | dependencies: | 710 | dependencies: |
789 | - '@babel/core': 7.16.0 | 711 | + '@babel/core': 7.16.5 |
790 | '@babel/helper-plugin-utils': 7.14.5 | 712 | '@babel/helper-plugin-utils': 7.14.5 |
791 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 | 713 | + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.5 |
792 | dev: true | 714 | dev: true |
793 | 715 | ||
794 | - /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0: | 716 | + /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.5: |
795 | resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==} | 717 | resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==} |
796 | engines: {node: '>=6.9.0'} | 718 | engines: {node: '>=6.9.0'} |
797 | peerDependencies: | 719 | peerDependencies: |
798 | '@babel/core': ^7.0.0-0 | 720 | '@babel/core': ^7.0.0-0 |
799 | dependencies: | 721 | dependencies: |
800 | '@babel/compat-data': 7.16.4 | 722 | '@babel/compat-data': 7.16.4 |
801 | - '@babel/core': 7.16.0 | ||
802 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | 723 | + '@babel/core': 7.16.5 |
724 | + '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 | ||
803 | '@babel/helper-plugin-utils': 7.14.5 | 725 | '@babel/helper-plugin-utils': 7.14.5 |
804 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 | ||
805 | - '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0 | 726 | + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.5 |
727 | + '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.5 | ||
806 | dev: true | 728 | dev: true |
807 | 729 | ||
808 | - /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0: | 730 | + /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.5: |
809 | resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==} | 731 | resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==} |
810 | engines: {node: '>=6.9.0'} | 732 | engines: {node: '>=6.9.0'} |
811 | peerDependencies: | 733 | peerDependencies: |
812 | '@babel/core': ^7.0.0-0 | 734 | '@babel/core': ^7.0.0-0 |
813 | dependencies: | 735 | dependencies: |
814 | - '@babel/core': 7.16.0 | 736 | + '@babel/core': 7.16.5 |
815 | '@babel/helper-plugin-utils': 7.14.5 | 737 | '@babel/helper-plugin-utils': 7.14.5 |
816 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 | 738 | + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.5 |
817 | dev: true | 739 | dev: true |
818 | 740 | ||
819 | - /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0: | 741 | + /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.5: |
820 | resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==} | 742 | resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==} |
821 | engines: {node: '>=6.9.0'} | 743 | engines: {node: '>=6.9.0'} |
822 | peerDependencies: | 744 | peerDependencies: |
823 | '@babel/core': ^7.0.0-0 | 745 | '@babel/core': ^7.0.0-0 |
824 | dependencies: | 746 | dependencies: |
825 | - '@babel/core': 7.16.0 | 747 | + '@babel/core': 7.16.5 |
826 | '@babel/helper-plugin-utils': 7.14.5 | 748 | '@babel/helper-plugin-utils': 7.14.5 |
827 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 | 749 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 |
828 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 | 750 | + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.5 |
829 | dev: true | 751 | dev: true |
830 | 752 | ||
831 | - /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0: | 753 | + /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.5: |
832 | resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==} | 754 | resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==} |
833 | engines: {node: '>=6.9.0'} | 755 | engines: {node: '>=6.9.0'} |
834 | peerDependencies: | 756 | peerDependencies: |
835 | '@babel/core': ^7.0.0-0 | 757 | '@babel/core': ^7.0.0-0 |
836 | dependencies: | 758 | dependencies: |
837 | - '@babel/core': 7.16.0 | ||
838 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | 759 | + '@babel/core': 7.16.5 |
760 | + '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
839 | '@babel/helper-plugin-utils': 7.14.5 | 761 | '@babel/helper-plugin-utils': 7.14.5 |
840 | transitivePeerDependencies: | 762 | transitivePeerDependencies: |
841 | - supports-color | 763 | - supports-color |
842 | dev: true | 764 | dev: true |
843 | 765 | ||
844 | - /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0: | 766 | + /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.5: |
845 | resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==} | 767 | resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==} |
846 | engines: {node: '>=6.9.0'} | 768 | engines: {node: '>=6.9.0'} |
847 | peerDependencies: | 769 | peerDependencies: |
848 | '@babel/core': ^7.0.0-0 | 770 | '@babel/core': ^7.0.0-0 |
849 | dependencies: | 771 | dependencies: |
850 | - '@babel/core': 7.16.0 | 772 | + '@babel/core': 7.16.5 |
851 | '@babel/helper-annotate-as-pure': 7.16.0 | 773 | '@babel/helper-annotate-as-pure': 7.16.0 |
852 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | 774 | + '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.5 |
853 | '@babel/helper-plugin-utils': 7.14.5 | 775 | '@babel/helper-plugin-utils': 7.14.5 |
854 | - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 | 776 | + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.5 |
855 | transitivePeerDependencies: | 777 | transitivePeerDependencies: |
856 | - supports-color | 778 | - supports-color |
857 | dev: true | 779 | dev: true |
858 | 780 | ||
859 | - /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0: | 781 | + /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.5: |
860 | resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==} | 782 | resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==} |
861 | engines: {node: '>=4'} | 783 | engines: {node: '>=4'} |
862 | peerDependencies: | 784 | peerDependencies: |
863 | '@babel/core': ^7.0.0-0 | 785 | '@babel/core': ^7.0.0-0 |
864 | dependencies: | 786 | dependencies: |
865 | - '@babel/core': 7.16.0 | ||
866 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | ||
867 | - '@babel/helper-plugin-utils': 7.14.5 | ||
868 | - dev: true | ||
869 | - | ||
870 | - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0: | ||
871 | - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} | ||
872 | - peerDependencies: | ||
873 | - '@babel/core': ^7.0.0-0 | ||
874 | - dependencies: | ||
875 | - '@babel/core': 7.16.0 | 787 | + '@babel/core': 7.16.5 |
788 | + '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
876 | '@babel/helper-plugin-utils': 7.14.5 | 789 | '@babel/helper-plugin-utils': 7.14.5 |
877 | dev: true | 790 | dev: true |
878 | 791 | ||
@@ -885,15 +798,6 @@ packages: | @@ -885,15 +798,6 @@ packages: | ||
885 | '@babel/helper-plugin-utils': 7.14.5 | 798 | '@babel/helper-plugin-utils': 7.14.5 |
886 | dev: true | 799 | dev: true |
887 | 800 | ||
888 | - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.0: | ||
889 | - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} | ||
890 | - peerDependencies: | ||
891 | - '@babel/core': ^7.0.0-0 | ||
892 | - dependencies: | ||
893 | - '@babel/core': 7.16.0 | ||
894 | - '@babel/helper-plugin-utils': 7.14.5 | ||
895 | - dev: true | ||
896 | - | ||
897 | /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.5: | 801 | /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.5: |
898 | resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} | 802 | resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} |
899 | peerDependencies: | 803 | peerDependencies: |
@@ -903,15 +807,6 @@ packages: | @@ -903,15 +807,6 @@ packages: | ||
903 | '@babel/helper-plugin-utils': 7.14.5 | 807 | '@babel/helper-plugin-utils': 7.14.5 |
904 | dev: true | 808 | dev: true |
905 | 809 | ||
906 | - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0: | ||
907 | - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} | ||
908 | - peerDependencies: | ||
909 | - '@babel/core': ^7.0.0-0 | ||
910 | - dependencies: | ||
911 | - '@babel/core': 7.16.0 | ||
912 | - '@babel/helper-plugin-utils': 7.14.5 | ||
913 | - dev: true | ||
914 | - | ||
915 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.5: | 810 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.5: |
916 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} | 811 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} |
917 | peerDependencies: | 812 | peerDependencies: |
@@ -921,40 +816,31 @@ packages: | @@ -921,40 +816,31 @@ packages: | ||
921 | '@babel/helper-plugin-utils': 7.14.5 | 816 | '@babel/helper-plugin-utils': 7.14.5 |
922 | dev: true | 817 | dev: true |
923 | 818 | ||
924 | - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0: | 819 | + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.5: |
925 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} | 820 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} |
926 | engines: {node: '>=6.9.0'} | 821 | engines: {node: '>=6.9.0'} |
927 | peerDependencies: | 822 | peerDependencies: |
928 | '@babel/core': ^7.0.0-0 | 823 | '@babel/core': ^7.0.0-0 |
929 | dependencies: | 824 | dependencies: |
930 | - '@babel/core': 7.16.0 | 825 | + '@babel/core': 7.16.5 |
931 | '@babel/helper-plugin-utils': 7.14.5 | 826 | '@babel/helper-plugin-utils': 7.14.5 |
932 | dev: true | 827 | dev: true |
933 | 828 | ||
934 | - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0: | 829 | + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.5: |
935 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} | 830 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} |
936 | peerDependencies: | 831 | peerDependencies: |
937 | '@babel/core': ^7.0.0-0 | 832 | '@babel/core': ^7.0.0-0 |
938 | dependencies: | 833 | dependencies: |
939 | - '@babel/core': 7.16.0 | 834 | + '@babel/core': 7.16.5 |
940 | '@babel/helper-plugin-utils': 7.14.5 | 835 | '@babel/helper-plugin-utils': 7.14.5 |
941 | dev: true | 836 | dev: true |
942 | 837 | ||
943 | - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0: | 838 | + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.5: |
944 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} | 839 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} |
945 | peerDependencies: | 840 | peerDependencies: |
946 | '@babel/core': ^7.0.0-0 | 841 | '@babel/core': ^7.0.0-0 |
947 | dependencies: | 842 | dependencies: |
948 | - '@babel/core': 7.16.0 | ||
949 | - '@babel/helper-plugin-utils': 7.14.5 | ||
950 | - dev: true | ||
951 | - | ||
952 | - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0: | ||
953 | - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} | ||
954 | - peerDependencies: | ||
955 | - '@babel/core': ^7.0.0-0 | ||
956 | - dependencies: | ||
957 | - '@babel/core': 7.16.0 | 843 | + '@babel/core': 7.16.5 |
958 | '@babel/helper-plugin-utils': 7.14.5 | 844 | '@babel/helper-plugin-utils': 7.14.5 |
959 | dev: true | 845 | dev: true |
960 | 846 | ||
@@ -967,15 +853,6 @@ packages: | @@ -967,15 +853,6 @@ packages: | ||
967 | '@babel/helper-plugin-utils': 7.14.5 | 853 | '@babel/helper-plugin-utils': 7.14.5 |
968 | dev: true | 854 | dev: true |
969 | 855 | ||
970 | - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0: | ||
971 | - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} | ||
972 | - peerDependencies: | ||
973 | - '@babel/core': ^7.0.0-0 | ||
974 | - dependencies: | ||
975 | - '@babel/core': 7.16.0 | ||
976 | - '@babel/helper-plugin-utils': 7.14.5 | ||
977 | - dev: true | ||
978 | - | ||
979 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.5: | 856 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.5: |
980 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} | 857 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} |
981 | peerDependencies: | 858 | peerDependencies: |
@@ -995,15 +872,6 @@ packages: | @@ -995,15 +872,6 @@ packages: | ||
995 | '@babel/helper-plugin-utils': 7.14.5 | 872 | '@babel/helper-plugin-utils': 7.14.5 |
996 | dev: true | 873 | dev: true |
997 | 874 | ||
998 | - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0: | ||
999 | - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} | ||
1000 | - peerDependencies: | ||
1001 | - '@babel/core': ^7.0.0-0 | ||
1002 | - dependencies: | ||
1003 | - '@babel/core': 7.16.0 | ||
1004 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1005 | - dev: true | ||
1006 | - | ||
1007 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.5: | 875 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.5: |
1008 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} | 876 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} |
1009 | peerDependencies: | 877 | peerDependencies: |
@@ -1013,15 +881,6 @@ packages: | @@ -1013,15 +881,6 @@ packages: | ||
1013 | '@babel/helper-plugin-utils': 7.14.5 | 881 | '@babel/helper-plugin-utils': 7.14.5 |
1014 | dev: true | 882 | dev: true |
1015 | 883 | ||
1016 | - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0: | ||
1017 | - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} | ||
1018 | - peerDependencies: | ||
1019 | - '@babel/core': ^7.0.0-0 | ||
1020 | - dependencies: | ||
1021 | - '@babel/core': 7.16.0 | ||
1022 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1023 | - dev: true | ||
1024 | - | ||
1025 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.5: | 884 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.5: |
1026 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} | 885 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} |
1027 | peerDependencies: | 886 | peerDependencies: |
@@ -1031,15 +890,6 @@ packages: | @@ -1031,15 +890,6 @@ packages: | ||
1031 | '@babel/helper-plugin-utils': 7.14.5 | 890 | '@babel/helper-plugin-utils': 7.14.5 |
1032 | dev: true | 891 | dev: true |
1033 | 892 | ||
1034 | - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0: | ||
1035 | - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} | ||
1036 | - peerDependencies: | ||
1037 | - '@babel/core': ^7.0.0-0 | ||
1038 | - dependencies: | ||
1039 | - '@babel/core': 7.16.0 | ||
1040 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1041 | - dev: true | ||
1042 | - | ||
1043 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.5: | 893 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.5: |
1044 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} | 894 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} |
1045 | peerDependencies: | 895 | peerDependencies: |
@@ -1049,15 +899,6 @@ packages: | @@ -1049,15 +899,6 @@ packages: | ||
1049 | '@babel/helper-plugin-utils': 7.14.5 | 899 | '@babel/helper-plugin-utils': 7.14.5 |
1050 | dev: true | 900 | dev: true |
1051 | 901 | ||
1052 | - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0: | ||
1053 | - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} | ||
1054 | - peerDependencies: | ||
1055 | - '@babel/core': ^7.0.0-0 | ||
1056 | - dependencies: | ||
1057 | - '@babel/core': 7.16.0 | ||
1058 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1059 | - dev: true | ||
1060 | - | ||
1061 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.5: | 902 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.5: |
1062 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} | 903 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} |
1063 | peerDependencies: | 904 | peerDependencies: |
@@ -1067,15 +908,6 @@ packages: | @@ -1067,15 +908,6 @@ packages: | ||
1067 | '@babel/helper-plugin-utils': 7.14.5 | 908 | '@babel/helper-plugin-utils': 7.14.5 |
1068 | dev: true | 909 | dev: true |
1069 | 910 | ||
1070 | - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0: | ||
1071 | - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} | ||
1072 | - peerDependencies: | ||
1073 | - '@babel/core': ^7.0.0-0 | ||
1074 | - dependencies: | ||
1075 | - '@babel/core': 7.16.0 | ||
1076 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1077 | - dev: true | ||
1078 | - | ||
1079 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.5: | 911 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.5: |
1080 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} | 912 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} |
1081 | peerDependencies: | 913 | peerDependencies: |
@@ -1085,15 +917,6 @@ packages: | @@ -1085,15 +917,6 @@ packages: | ||
1085 | '@babel/helper-plugin-utils': 7.14.5 | 917 | '@babel/helper-plugin-utils': 7.14.5 |
1086 | dev: true | 918 | dev: true |
1087 | 919 | ||
1088 | - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0: | ||
1089 | - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} | ||
1090 | - peerDependencies: | ||
1091 | - '@babel/core': ^7.0.0-0 | ||
1092 | - dependencies: | ||
1093 | - '@babel/core': 7.16.0 | ||
1094 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1095 | - dev: true | ||
1096 | - | ||
1097 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.5: | 920 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.5: |
1098 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} | 921 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} |
1099 | peerDependencies: | 922 | peerDependencies: |
@@ -1103,23 +926,13 @@ packages: | @@ -1103,23 +926,13 @@ packages: | ||
1103 | '@babel/helper-plugin-utils': 7.14.5 | 926 | '@babel/helper-plugin-utils': 7.14.5 |
1104 | dev: true | 927 | dev: true |
1105 | 928 | ||
1106 | - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0: | 929 | + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.5: |
1107 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} | 930 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} |
1108 | engines: {node: '>=6.9.0'} | 931 | engines: {node: '>=6.9.0'} |
1109 | peerDependencies: | 932 | peerDependencies: |
1110 | '@babel/core': ^7.0.0-0 | 933 | '@babel/core': ^7.0.0-0 |
1111 | dependencies: | 934 | dependencies: |
1112 | - '@babel/core': 7.16.0 | ||
1113 | - '@babel/helper-plugin-utils': 7.14.5 | ||
1114 | - dev: true | ||
1115 | - | ||
1116 | - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0: | ||
1117 | - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} | ||
1118 | - engines: {node: '>=6.9.0'} | ||
1119 | - peerDependencies: | ||
1120 | - '@babel/core': ^7.0.0-0 | ||
1121 | - dependencies: | ||
1122 | - '@babel/core': 7.16.0 | 935 | + '@babel/core': 7.16.5 |
1123 | '@babel/helper-plugin-utils': 7.14.5 | 936 | '@babel/helper-plugin-utils': 7.14.5 |
1124 | dev: true | 937 | dev: true |
1125 | 938 | ||
@@ -1143,23 +956,23 @@ packages: | @@ -1143,23 +956,23 @@ packages: | ||
1143 | '@babel/helper-plugin-utils': 7.14.5 | 956 | '@babel/helper-plugin-utils': 7.14.5 |
1144 | dev: true | 957 | dev: true |
1145 | 958 | ||
1146 | - /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0: | 959 | + /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.5: |
1147 | resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==} | 960 | resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==} |
1148 | engines: {node: '>=6.9.0'} | 961 | engines: {node: '>=6.9.0'} |
1149 | peerDependencies: | 962 | peerDependencies: |
1150 | '@babel/core': ^7.0.0-0 | 963 | '@babel/core': ^7.0.0-0 |
1151 | dependencies: | 964 | dependencies: |
1152 | - '@babel/core': 7.16.0 | 965 | + '@babel/core': 7.16.5 |
1153 | '@babel/helper-plugin-utils': 7.14.5 | 966 | '@babel/helper-plugin-utils': 7.14.5 |
1154 | dev: true | 967 | dev: true |
1155 | 968 | ||
1156 | - /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0: | 969 | + /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.5: |
1157 | resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==} | 970 | resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==} |
1158 | engines: {node: '>=6.9.0'} | 971 | engines: {node: '>=6.9.0'} |
1159 | peerDependencies: | 972 | peerDependencies: |
1160 | '@babel/core': ^7.0.0-0 | 973 | '@babel/core': ^7.0.0-0 |
1161 | dependencies: | 974 | dependencies: |
1162 | - '@babel/core': 7.16.0 | 975 | + '@babel/core': 7.16.5 |
1163 | '@babel/helper-module-imports': 7.16.0 | 976 | '@babel/helper-module-imports': 7.16.0 |
1164 | '@babel/helper-plugin-utils': 7.14.5 | 977 | '@babel/helper-plugin-utils': 7.14.5 |
1165 | '@babel/helper-remap-async-to-generator': 7.16.4 | 978 | '@babel/helper-remap-async-to-generator': 7.16.4 |
@@ -1167,33 +980,33 @@ packages: | @@ -1167,33 +980,33 @@ packages: | ||
1167 | - supports-color | 980 | - supports-color |
1168 | dev: true | 981 | dev: true |
1169 | 982 | ||
1170 | - /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0: | 983 | + /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.5: |
1171 | resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==} | 984 | resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==} |
1172 | engines: {node: '>=6.9.0'} | 985 | engines: {node: '>=6.9.0'} |
1173 | peerDependencies: | 986 | peerDependencies: |
1174 | '@babel/core': ^7.0.0-0 | 987 | '@babel/core': ^7.0.0-0 |
1175 | dependencies: | 988 | dependencies: |
1176 | - '@babel/core': 7.16.0 | 989 | + '@babel/core': 7.16.5 |
1177 | '@babel/helper-plugin-utils': 7.14.5 | 990 | '@babel/helper-plugin-utils': 7.14.5 |
1178 | dev: true | 991 | dev: true |
1179 | 992 | ||
1180 | - /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0: | 993 | + /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.5: |
1181 | resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==} | 994 | resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==} |
1182 | engines: {node: '>=6.9.0'} | 995 | engines: {node: '>=6.9.0'} |
1183 | peerDependencies: | 996 | peerDependencies: |
1184 | '@babel/core': ^7.0.0-0 | 997 | '@babel/core': ^7.0.0-0 |
1185 | dependencies: | 998 | dependencies: |
1186 | - '@babel/core': 7.16.0 | 999 | + '@babel/core': 7.16.5 |
1187 | '@babel/helper-plugin-utils': 7.14.5 | 1000 | '@babel/helper-plugin-utils': 7.14.5 |
1188 | dev: true | 1001 | dev: true |
1189 | 1002 | ||
1190 | - /@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0: | 1003 | + /@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.5: |
1191 | resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==} | 1004 | resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==} |
1192 | engines: {node: '>=6.9.0'} | 1005 | engines: {node: '>=6.9.0'} |
1193 | peerDependencies: | 1006 | peerDependencies: |
1194 | '@babel/core': ^7.0.0-0 | 1007 | '@babel/core': ^7.0.0-0 |
1195 | dependencies: | 1008 | dependencies: |
1196 | - '@babel/core': 7.16.0 | 1009 | + '@babel/core': 7.16.5 |
1197 | '@babel/helper-annotate-as-pure': 7.16.0 | 1010 | '@babel/helper-annotate-as-pure': 7.16.0 |
1198 | '@babel/helper-function-name': 7.16.0 | 1011 | '@babel/helper-function-name': 7.16.0 |
1199 | '@babel/helper-optimise-call-expression': 7.16.0 | 1012 | '@babel/helper-optimise-call-expression': 7.16.0 |
@@ -1205,121 +1018,121 @@ packages: | @@ -1205,121 +1018,121 @@ packages: | ||
1205 | - supports-color | 1018 | - supports-color |
1206 | dev: true | 1019 | dev: true |
1207 | 1020 | ||
1208 | - /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0: | 1021 | + /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.5: |
1209 | resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==} | 1022 | resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==} |
1210 | engines: {node: '>=6.9.0'} | 1023 | engines: {node: '>=6.9.0'} |
1211 | peerDependencies: | 1024 | peerDependencies: |
1212 | '@babel/core': ^7.0.0-0 | 1025 | '@babel/core': ^7.0.0-0 |
1213 | dependencies: | 1026 | dependencies: |
1214 | - '@babel/core': 7.16.0 | 1027 | + '@babel/core': 7.16.5 |
1215 | '@babel/helper-plugin-utils': 7.14.5 | 1028 | '@babel/helper-plugin-utils': 7.14.5 |
1216 | dev: true | 1029 | dev: true |
1217 | 1030 | ||
1218 | - /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0: | 1031 | + /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.5: |
1219 | resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==} | 1032 | resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==} |
1220 | engines: {node: '>=6.9.0'} | 1033 | engines: {node: '>=6.9.0'} |
1221 | peerDependencies: | 1034 | peerDependencies: |
1222 | '@babel/core': ^7.0.0-0 | 1035 | '@babel/core': ^7.0.0-0 |
1223 | dependencies: | 1036 | dependencies: |
1224 | - '@babel/core': 7.16.0 | 1037 | + '@babel/core': 7.16.5 |
1225 | '@babel/helper-plugin-utils': 7.14.5 | 1038 | '@babel/helper-plugin-utils': 7.14.5 |
1226 | dev: true | 1039 | dev: true |
1227 | 1040 | ||
1228 | - /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0: | 1041 | + /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.5: |
1229 | resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==} | 1042 | resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==} |
1230 | engines: {node: '>=6.9.0'} | 1043 | engines: {node: '>=6.9.0'} |
1231 | peerDependencies: | 1044 | peerDependencies: |
1232 | '@babel/core': ^7.0.0-0 | 1045 | '@babel/core': ^7.0.0-0 |
1233 | dependencies: | 1046 | dependencies: |
1234 | - '@babel/core': 7.16.0 | ||
1235 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | 1047 | + '@babel/core': 7.16.5 |
1048 | + '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
1236 | '@babel/helper-plugin-utils': 7.14.5 | 1049 | '@babel/helper-plugin-utils': 7.14.5 |
1237 | dev: true | 1050 | dev: true |
1238 | 1051 | ||
1239 | - /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0: | 1052 | + /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.5: |
1240 | resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==} | 1053 | resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==} |
1241 | engines: {node: '>=6.9.0'} | 1054 | engines: {node: '>=6.9.0'} |
1242 | peerDependencies: | 1055 | peerDependencies: |
1243 | '@babel/core': ^7.0.0-0 | 1056 | '@babel/core': ^7.0.0-0 |
1244 | dependencies: | 1057 | dependencies: |
1245 | - '@babel/core': 7.16.0 | 1058 | + '@babel/core': 7.16.5 |
1246 | '@babel/helper-plugin-utils': 7.14.5 | 1059 | '@babel/helper-plugin-utils': 7.14.5 |
1247 | dev: true | 1060 | dev: true |
1248 | 1061 | ||
1249 | - /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0: | 1062 | + /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.5: |
1250 | resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==} | 1063 | resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==} |
1251 | engines: {node: '>=6.9.0'} | 1064 | engines: {node: '>=6.9.0'} |
1252 | peerDependencies: | 1065 | peerDependencies: |
1253 | '@babel/core': ^7.0.0-0 | 1066 | '@babel/core': ^7.0.0-0 |
1254 | dependencies: | 1067 | dependencies: |
1255 | - '@babel/core': 7.16.0 | 1068 | + '@babel/core': 7.16.5 |
1256 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0 | 1069 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0 |
1257 | '@babel/helper-plugin-utils': 7.14.5 | 1070 | '@babel/helper-plugin-utils': 7.14.5 |
1258 | dev: true | 1071 | dev: true |
1259 | 1072 | ||
1260 | - /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0: | 1073 | + /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.5: |
1261 | resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==} | 1074 | resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==} |
1262 | engines: {node: '>=6.9.0'} | 1075 | engines: {node: '>=6.9.0'} |
1263 | peerDependencies: | 1076 | peerDependencies: |
1264 | '@babel/core': ^7.0.0-0 | 1077 | '@babel/core': ^7.0.0-0 |
1265 | dependencies: | 1078 | dependencies: |
1266 | - '@babel/core': 7.16.0 | 1079 | + '@babel/core': 7.16.5 |
1267 | '@babel/helper-plugin-utils': 7.14.5 | 1080 | '@babel/helper-plugin-utils': 7.14.5 |
1268 | dev: true | 1081 | dev: true |
1269 | 1082 | ||
1270 | - /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0: | 1083 | + /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.5: |
1271 | resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==} | 1084 | resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==} |
1272 | engines: {node: '>=6.9.0'} | 1085 | engines: {node: '>=6.9.0'} |
1273 | peerDependencies: | 1086 | peerDependencies: |
1274 | '@babel/core': ^7.0.0-0 | 1087 | '@babel/core': ^7.0.0-0 |
1275 | dependencies: | 1088 | dependencies: |
1276 | - '@babel/core': 7.16.0 | 1089 | + '@babel/core': 7.16.5 |
1277 | '@babel/helper-function-name': 7.16.0 | 1090 | '@babel/helper-function-name': 7.16.0 |
1278 | '@babel/helper-plugin-utils': 7.14.5 | 1091 | '@babel/helper-plugin-utils': 7.14.5 |
1279 | dev: true | 1092 | dev: true |
1280 | 1093 | ||
1281 | - /@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0: | 1094 | + /@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.5: |
1282 | resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==} | 1095 | resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==} |
1283 | engines: {node: '>=6.9.0'} | 1096 | engines: {node: '>=6.9.0'} |
1284 | peerDependencies: | 1097 | peerDependencies: |
1285 | '@babel/core': ^7.0.0-0 | 1098 | '@babel/core': ^7.0.0-0 |
1286 | dependencies: | 1099 | dependencies: |
1287 | - '@babel/core': 7.16.0 | 1100 | + '@babel/core': 7.16.5 |
1288 | '@babel/helper-plugin-utils': 7.14.5 | 1101 | '@babel/helper-plugin-utils': 7.14.5 |
1289 | dev: true | 1102 | dev: true |
1290 | 1103 | ||
1291 | - /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0: | 1104 | + /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.5: |
1292 | resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==} | 1105 | resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==} |
1293 | engines: {node: '>=6.9.0'} | 1106 | engines: {node: '>=6.9.0'} |
1294 | peerDependencies: | 1107 | peerDependencies: |
1295 | '@babel/core': ^7.0.0-0 | 1108 | '@babel/core': ^7.0.0-0 |
1296 | dependencies: | 1109 | dependencies: |
1297 | - '@babel/core': 7.16.0 | 1110 | + '@babel/core': 7.16.5 |
1298 | '@babel/helper-plugin-utils': 7.14.5 | 1111 | '@babel/helper-plugin-utils': 7.14.5 |
1299 | dev: true | 1112 | dev: true |
1300 | 1113 | ||
1301 | - /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0: | 1114 | + /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.5: |
1302 | resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==} | 1115 | resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==} |
1303 | engines: {node: '>=6.9.0'} | 1116 | engines: {node: '>=6.9.0'} |
1304 | peerDependencies: | 1117 | peerDependencies: |
1305 | '@babel/core': ^7.0.0-0 | 1118 | '@babel/core': ^7.0.0-0 |
1306 | dependencies: | 1119 | dependencies: |
1307 | - '@babel/core': 7.16.0 | ||
1308 | - '@babel/helper-module-transforms': 7.16.0 | 1120 | + '@babel/core': 7.16.5 |
1121 | + '@babel/helper-module-transforms': 7.16.5 | ||
1309 | '@babel/helper-plugin-utils': 7.14.5 | 1122 | '@babel/helper-plugin-utils': 7.14.5 |
1310 | babel-plugin-dynamic-import-node: 2.3.3 | 1123 | babel-plugin-dynamic-import-node: 2.3.3 |
1311 | transitivePeerDependencies: | 1124 | transitivePeerDependencies: |
1312 | - supports-color | 1125 | - supports-color |
1313 | dev: true | 1126 | dev: true |
1314 | 1127 | ||
1315 | - /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0: | 1128 | + /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.5: |
1316 | resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==} | 1129 | resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==} |
1317 | engines: {node: '>=6.9.0'} | 1130 | engines: {node: '>=6.9.0'} |
1318 | peerDependencies: | 1131 | peerDependencies: |
1319 | '@babel/core': ^7.0.0-0 | 1132 | '@babel/core': ^7.0.0-0 |
1320 | dependencies: | 1133 | dependencies: |
1321 | - '@babel/core': 7.16.0 | ||
1322 | - '@babel/helper-module-transforms': 7.16.0 | 1134 | + '@babel/core': 7.16.5 |
1135 | + '@babel/helper-module-transforms': 7.16.5 | ||
1323 | '@babel/helper-plugin-utils': 7.14.5 | 1136 | '@babel/helper-plugin-utils': 7.14.5 |
1324 | '@babel/helper-simple-access': 7.16.0 | 1137 | '@babel/helper-simple-access': 7.16.0 |
1325 | babel-plugin-dynamic-import-node: 2.3.3 | 1138 | babel-plugin-dynamic-import-node: 2.3.3 |
@@ -1327,15 +1140,15 @@ packages: | @@ -1327,15 +1140,15 @@ packages: | ||
1327 | - supports-color | 1140 | - supports-color |
1328 | dev: true | 1141 | dev: true |
1329 | 1142 | ||
1330 | - /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0: | 1143 | + /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.5: |
1331 | resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==} | 1144 | resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==} |
1332 | engines: {node: '>=6.9.0'} | 1145 | engines: {node: '>=6.9.0'} |
1333 | peerDependencies: | 1146 | peerDependencies: |
1334 | '@babel/core': ^7.0.0-0 | 1147 | '@babel/core': ^7.0.0-0 |
1335 | dependencies: | 1148 | dependencies: |
1336 | - '@babel/core': 7.16.0 | 1149 | + '@babel/core': 7.16.5 |
1337 | '@babel/helper-hoist-variables': 7.16.0 | 1150 | '@babel/helper-hoist-variables': 7.16.0 |
1338 | - '@babel/helper-module-transforms': 7.16.0 | 1151 | + '@babel/helper-module-transforms': 7.16.5 |
1339 | '@babel/helper-plugin-utils': 7.14.5 | 1152 | '@babel/helper-plugin-utils': 7.14.5 |
1340 | '@babel/helper-validator-identifier': 7.15.7 | 1153 | '@babel/helper-validator-identifier': 7.15.7 |
1341 | babel-plugin-dynamic-import-node: 2.3.3 | 1154 | babel-plugin-dynamic-import-node: 2.3.3 |
@@ -1343,140 +1156,140 @@ packages: | @@ -1343,140 +1156,140 @@ packages: | ||
1343 | - supports-color | 1156 | - supports-color |
1344 | dev: true | 1157 | dev: true |
1345 | 1158 | ||
1346 | - /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0: | 1159 | + /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.5: |
1347 | resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==} | 1160 | resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==} |
1348 | engines: {node: '>=6.9.0'} | 1161 | engines: {node: '>=6.9.0'} |
1349 | peerDependencies: | 1162 | peerDependencies: |
1350 | '@babel/core': ^7.0.0-0 | 1163 | '@babel/core': ^7.0.0-0 |
1351 | dependencies: | 1164 | dependencies: |
1352 | - '@babel/core': 7.16.0 | ||
1353 | - '@babel/helper-module-transforms': 7.16.0 | 1165 | + '@babel/core': 7.16.5 |
1166 | + '@babel/helper-module-transforms': 7.16.5 | ||
1354 | '@babel/helper-plugin-utils': 7.14.5 | 1167 | '@babel/helper-plugin-utils': 7.14.5 |
1355 | transitivePeerDependencies: | 1168 | transitivePeerDependencies: |
1356 | - supports-color | 1169 | - supports-color |
1357 | dev: true | 1170 | dev: true |
1358 | 1171 | ||
1359 | - /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0: | 1172 | + /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.5: |
1360 | resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==} | 1173 | resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==} |
1361 | engines: {node: '>=6.9.0'} | 1174 | engines: {node: '>=6.9.0'} |
1362 | peerDependencies: | 1175 | peerDependencies: |
1363 | '@babel/core': ^7.0.0 | 1176 | '@babel/core': ^7.0.0 |
1364 | dependencies: | 1177 | dependencies: |
1365 | - '@babel/core': 7.16.0 | ||
1366 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | 1178 | + '@babel/core': 7.16.5 |
1179 | + '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
1367 | dev: true | 1180 | dev: true |
1368 | 1181 | ||
1369 | - /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0: | 1182 | + /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.5: |
1370 | resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==} | 1183 | resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==} |
1371 | engines: {node: '>=6.9.0'} | 1184 | engines: {node: '>=6.9.0'} |
1372 | peerDependencies: | 1185 | peerDependencies: |
1373 | '@babel/core': ^7.0.0-0 | 1186 | '@babel/core': ^7.0.0-0 |
1374 | dependencies: | 1187 | dependencies: |
1375 | - '@babel/core': 7.16.0 | 1188 | + '@babel/core': 7.16.5 |
1376 | '@babel/helper-plugin-utils': 7.14.5 | 1189 | '@babel/helper-plugin-utils': 7.14.5 |
1377 | dev: true | 1190 | dev: true |
1378 | 1191 | ||
1379 | - /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0: | 1192 | + /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.5: |
1380 | resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==} | 1193 | resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==} |
1381 | engines: {node: '>=6.9.0'} | 1194 | engines: {node: '>=6.9.0'} |
1382 | peerDependencies: | 1195 | peerDependencies: |
1383 | '@babel/core': ^7.0.0-0 | 1196 | '@babel/core': ^7.0.0-0 |
1384 | dependencies: | 1197 | dependencies: |
1385 | - '@babel/core': 7.16.0 | 1198 | + '@babel/core': 7.16.5 |
1386 | '@babel/helper-plugin-utils': 7.14.5 | 1199 | '@babel/helper-plugin-utils': 7.14.5 |
1387 | '@babel/helper-replace-supers': 7.16.0 | 1200 | '@babel/helper-replace-supers': 7.16.0 |
1388 | transitivePeerDependencies: | 1201 | transitivePeerDependencies: |
1389 | - supports-color | 1202 | - supports-color |
1390 | dev: true | 1203 | dev: true |
1391 | 1204 | ||
1392 | - /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0: | 1205 | + /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.5: |
1393 | resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==} | 1206 | resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==} |
1394 | engines: {node: '>=6.9.0'} | 1207 | engines: {node: '>=6.9.0'} |
1395 | peerDependencies: | 1208 | peerDependencies: |
1396 | '@babel/core': ^7.0.0-0 | 1209 | '@babel/core': ^7.0.0-0 |
1397 | dependencies: | 1210 | dependencies: |
1398 | - '@babel/core': 7.16.0 | 1211 | + '@babel/core': 7.16.5 |
1399 | '@babel/helper-plugin-utils': 7.14.5 | 1212 | '@babel/helper-plugin-utils': 7.14.5 |
1400 | dev: true | 1213 | dev: true |
1401 | 1214 | ||
1402 | - /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0: | 1215 | + /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.5: |
1403 | resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==} | 1216 | resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==} |
1404 | engines: {node: '>=6.9.0'} | 1217 | engines: {node: '>=6.9.0'} |
1405 | peerDependencies: | 1218 | peerDependencies: |
1406 | '@babel/core': ^7.0.0-0 | 1219 | '@babel/core': ^7.0.0-0 |
1407 | dependencies: | 1220 | dependencies: |
1408 | - '@babel/core': 7.16.0 | 1221 | + '@babel/core': 7.16.5 |
1409 | '@babel/helper-plugin-utils': 7.14.5 | 1222 | '@babel/helper-plugin-utils': 7.14.5 |
1410 | dev: true | 1223 | dev: true |
1411 | 1224 | ||
1412 | - /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0: | 1225 | + /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.5: |
1413 | resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==} | 1226 | resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==} |
1414 | engines: {node: '>=6.9.0'} | 1227 | engines: {node: '>=6.9.0'} |
1415 | peerDependencies: | 1228 | peerDependencies: |
1416 | '@babel/core': ^7.0.0-0 | 1229 | '@babel/core': ^7.0.0-0 |
1417 | dependencies: | 1230 | dependencies: |
1418 | - '@babel/core': 7.16.0 | 1231 | + '@babel/core': 7.16.5 |
1419 | regenerator-transform: 0.14.5 | 1232 | regenerator-transform: 0.14.5 |
1420 | dev: true | 1233 | dev: true |
1421 | 1234 | ||
1422 | - /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0: | 1235 | + /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.5: |
1423 | resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==} | 1236 | resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==} |
1424 | engines: {node: '>=6.9.0'} | 1237 | engines: {node: '>=6.9.0'} |
1425 | peerDependencies: | 1238 | peerDependencies: |
1426 | '@babel/core': ^7.0.0-0 | 1239 | '@babel/core': ^7.0.0-0 |
1427 | dependencies: | 1240 | dependencies: |
1428 | - '@babel/core': 7.16.0 | 1241 | + '@babel/core': 7.16.5 |
1429 | '@babel/helper-plugin-utils': 7.14.5 | 1242 | '@babel/helper-plugin-utils': 7.14.5 |
1430 | dev: true | 1243 | dev: true |
1431 | 1244 | ||
1432 | - /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0: | 1245 | + /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.5: |
1433 | resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==} | 1246 | resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==} |
1434 | engines: {node: '>=6.9.0'} | 1247 | engines: {node: '>=6.9.0'} |
1435 | peerDependencies: | 1248 | peerDependencies: |
1436 | '@babel/core': ^7.0.0-0 | 1249 | '@babel/core': ^7.0.0-0 |
1437 | dependencies: | 1250 | dependencies: |
1438 | - '@babel/core': 7.16.0 | 1251 | + '@babel/core': 7.16.5 |
1439 | '@babel/helper-plugin-utils': 7.14.5 | 1252 | '@babel/helper-plugin-utils': 7.14.5 |
1440 | dev: true | 1253 | dev: true |
1441 | 1254 | ||
1442 | - /@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0: | 1255 | + /@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.5: |
1443 | resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==} | 1256 | resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==} |
1444 | engines: {node: '>=6.9.0'} | 1257 | engines: {node: '>=6.9.0'} |
1445 | peerDependencies: | 1258 | peerDependencies: |
1446 | '@babel/core': ^7.0.0-0 | 1259 | '@babel/core': ^7.0.0-0 |
1447 | dependencies: | 1260 | dependencies: |
1448 | - '@babel/core': 7.16.0 | 1261 | + '@babel/core': 7.16.5 |
1449 | '@babel/helper-plugin-utils': 7.14.5 | 1262 | '@babel/helper-plugin-utils': 7.14.5 |
1450 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 | 1263 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 |
1451 | dev: true | 1264 | dev: true |
1452 | 1265 | ||
1453 | - /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0: | 1266 | + /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.5: |
1454 | resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==} | 1267 | resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==} |
1455 | engines: {node: '>=6.9.0'} | 1268 | engines: {node: '>=6.9.0'} |
1456 | peerDependencies: | 1269 | peerDependencies: |
1457 | '@babel/core': ^7.0.0-0 | 1270 | '@babel/core': ^7.0.0-0 |
1458 | dependencies: | 1271 | dependencies: |
1459 | - '@babel/core': 7.16.0 | 1272 | + '@babel/core': 7.16.5 |
1460 | '@babel/helper-plugin-utils': 7.14.5 | 1273 | '@babel/helper-plugin-utils': 7.14.5 |
1461 | dev: true | 1274 | dev: true |
1462 | 1275 | ||
1463 | - /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0: | 1276 | + /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.5: |
1464 | resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==} | 1277 | resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==} |
1465 | engines: {node: '>=6.9.0'} | 1278 | engines: {node: '>=6.9.0'} |
1466 | peerDependencies: | 1279 | peerDependencies: |
1467 | '@babel/core': ^7.0.0-0 | 1280 | '@babel/core': ^7.0.0-0 |
1468 | dependencies: | 1281 | dependencies: |
1469 | - '@babel/core': 7.16.0 | 1282 | + '@babel/core': 7.16.5 |
1470 | '@babel/helper-plugin-utils': 7.14.5 | 1283 | '@babel/helper-plugin-utils': 7.14.5 |
1471 | dev: true | 1284 | dev: true |
1472 | 1285 | ||
1473 | - /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0: | 1286 | + /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.5: |
1474 | resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==} | 1287 | resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==} |
1475 | engines: {node: '>=6.9.0'} | 1288 | engines: {node: '>=6.9.0'} |
1476 | peerDependencies: | 1289 | peerDependencies: |
1477 | '@babel/core': ^7.0.0-0 | 1290 | '@babel/core': ^7.0.0-0 |
1478 | dependencies: | 1291 | dependencies: |
1479 | - '@babel/core': 7.16.0 | 1292 | + '@babel/core': 7.16.5 |
1480 | '@babel/helper-plugin-utils': 7.14.5 | 1293 | '@babel/helper-plugin-utils': 7.14.5 |
1481 | dev: true | 1294 | dev: true |
1482 | 1295 | ||
@@ -1494,121 +1307,121 @@ packages: | @@ -1494,121 +1307,121 @@ packages: | ||
1494 | - supports-color | 1307 | - supports-color |
1495 | dev: true | 1308 | dev: true |
1496 | 1309 | ||
1497 | - /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0: | 1310 | + /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.5: |
1498 | resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==} | 1311 | resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==} |
1499 | engines: {node: '>=6.9.0'} | 1312 | engines: {node: '>=6.9.0'} |
1500 | peerDependencies: | 1313 | peerDependencies: |
1501 | '@babel/core': ^7.0.0-0 | 1314 | '@babel/core': ^7.0.0-0 |
1502 | dependencies: | 1315 | dependencies: |
1503 | - '@babel/core': 7.16.0 | 1316 | + '@babel/core': 7.16.5 |
1504 | '@babel/helper-plugin-utils': 7.14.5 | 1317 | '@babel/helper-plugin-utils': 7.14.5 |
1505 | dev: true | 1318 | dev: true |
1506 | 1319 | ||
1507 | - /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0: | 1320 | + /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.5: |
1508 | resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==} | 1321 | resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==} |
1509 | engines: {node: '>=6.9.0'} | 1322 | engines: {node: '>=6.9.0'} |
1510 | peerDependencies: | 1323 | peerDependencies: |
1511 | '@babel/core': ^7.0.0-0 | 1324 | '@babel/core': ^7.0.0-0 |
1512 | dependencies: | 1325 | dependencies: |
1513 | - '@babel/core': 7.16.0 | ||
1514 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | 1326 | + '@babel/core': 7.16.5 |
1327 | + '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.5 | ||
1515 | '@babel/helper-plugin-utils': 7.14.5 | 1328 | '@babel/helper-plugin-utils': 7.14.5 |
1516 | dev: true | 1329 | dev: true |
1517 | 1330 | ||
1518 | - /@babel/preset-env/7.16.4_@babel+core@7.16.0: | 1331 | + /@babel/preset-env/7.16.4_@babel+core@7.16.5: |
1519 | resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==} | 1332 | resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==} |
1520 | engines: {node: '>=6.9.0'} | 1333 | engines: {node: '>=6.9.0'} |
1521 | peerDependencies: | 1334 | peerDependencies: |
1522 | '@babel/core': ^7.0.0-0 | 1335 | '@babel/core': ^7.0.0-0 |
1523 | dependencies: | 1336 | dependencies: |
1524 | '@babel/compat-data': 7.16.4 | 1337 | '@babel/compat-data': 7.16.4 |
1525 | - '@babel/core': 7.16.0 | ||
1526 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | 1338 | + '@babel/core': 7.16.5 |
1339 | + '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 | ||
1527 | '@babel/helper-plugin-utils': 7.14.5 | 1340 | '@babel/helper-plugin-utils': 7.14.5 |
1528 | '@babel/helper-validator-option': 7.14.5 | 1341 | '@babel/helper-validator-option': 7.14.5 |
1529 | - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.0 | ||
1530 | - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.0 | ||
1531 | - '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.16.0 | ||
1532 | - '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.0 | ||
1533 | - '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.16.0 | ||
1534 | - '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.16.0 | ||
1535 | - '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.16.0 | ||
1536 | - '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.16.0 | ||
1537 | - '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.16.0 | ||
1538 | - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.0 | ||
1539 | - '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.16.0 | ||
1540 | - '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0 | ||
1541 | - '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.16.0 | ||
1542 | - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 | ||
1543 | - '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.16.0 | ||
1544 | - '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.16.0 | ||
1545 | - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 | ||
1546 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 | ||
1547 | - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 | ||
1548 | - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 | ||
1549 | - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 | ||
1550 | - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 | ||
1551 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 | ||
1552 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 | ||
1553 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 | ||
1554 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 | ||
1555 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 | ||
1556 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 | ||
1557 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 | ||
1558 | - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 | ||
1559 | - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 | ||
1560 | - '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.16.0 | ||
1561 | - '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.16.0 | ||
1562 | - '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.16.0 | ||
1563 | - '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.16.0 | ||
1564 | - '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.16.0 | ||
1565 | - '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.16.0 | ||
1566 | - '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.16.0 | ||
1567 | - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 | ||
1568 | - '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.16.0 | ||
1569 | - '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.16.0 | ||
1570 | - '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.16.0 | ||
1571 | - '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.16.0 | ||
1572 | - '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.16.0 | ||
1573 | - '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.16.0 | ||
1574 | - '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.16.0 | ||
1575 | - '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.16.0 | ||
1576 | - '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.16.0 | ||
1577 | - '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.16.0 | ||
1578 | - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.16.0 | ||
1579 | - '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.16.0 | ||
1580 | - '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.16.0 | ||
1581 | - '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0 | ||
1582 | - '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.16.0 | ||
1583 | - '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.0 | ||
1584 | - '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.16.0 | ||
1585 | - '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.16.0 | ||
1586 | - '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.16.0 | ||
1587 | - '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.16.0 | ||
1588 | - '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 | ||
1589 | - '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.16.0 | ||
1590 | - '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.16.0 | ||
1591 | - '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.16.0 | ||
1592 | - '@babel/preset-modules': 0.1.5_@babel+core@7.16.0 | 1342 | + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.5 |
1343 | + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.5 | ||
1344 | + '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.16.5 | ||
1345 | + '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.5 | ||
1346 | + '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.16.5 | ||
1347 | + '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.16.5 | ||
1348 | + '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.16.5 | ||
1349 | + '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.16.5 | ||
1350 | + '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.16.5 | ||
1351 | + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.5 | ||
1352 | + '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.16.5 | ||
1353 | + '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.5 | ||
1354 | + '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.16.5 | ||
1355 | + '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.5 | ||
1356 | + '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.16.5 | ||
1357 | + '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.16.5 | ||
1358 | + '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.5 | ||
1359 | + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.5 | ||
1360 | + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.5 | ||
1361 | + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.5 | ||
1362 | + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.5 | ||
1363 | + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.5 | ||
1364 | + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.5 | ||
1365 | + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.5 | ||
1366 | + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.5 | ||
1367 | + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.5 | ||
1368 | + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.5 | ||
1369 | + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.5 | ||
1370 | + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.5 | ||
1371 | + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.5 | ||
1372 | + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.5 | ||
1373 | + '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.16.5 | ||
1374 | + '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.16.5 | ||
1375 | + '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.16.5 | ||
1376 | + '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.16.5 | ||
1377 | + '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.16.5 | ||
1378 | + '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.16.5 | ||
1379 | + '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.16.5 | ||
1380 | + '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.5 | ||
1381 | + '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.16.5 | ||
1382 | + '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.16.5 | ||
1383 | + '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.16.5 | ||
1384 | + '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.16.5 | ||
1385 | + '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.16.5 | ||
1386 | + '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.16.5 | ||
1387 | + '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.16.5 | ||
1388 | + '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.16.5 | ||
1389 | + '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.16.5 | ||
1390 | + '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.16.5 | ||
1391 | + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.16.5 | ||
1392 | + '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.16.5 | ||
1393 | + '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.16.5 | ||
1394 | + '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.5 | ||
1395 | + '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.16.5 | ||
1396 | + '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.5 | ||
1397 | + '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.16.5 | ||
1398 | + '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.16.5 | ||
1399 | + '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.16.5 | ||
1400 | + '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.16.5 | ||
1401 | + '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.5 | ||
1402 | + '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.16.5 | ||
1403 | + '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.16.5 | ||
1404 | + '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.16.5 | ||
1405 | + '@babel/preset-modules': 0.1.5_@babel+core@7.16.5 | ||
1593 | '@babel/types': 7.16.0 | 1406 | '@babel/types': 7.16.0 |
1594 | - babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.0 | ||
1595 | - babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.0 | ||
1596 | - babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.0 | 1407 | + babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.5 |
1408 | + babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.5 | ||
1409 | + babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.5 | ||
1597 | core-js-compat: 3.19.1 | 1410 | core-js-compat: 3.19.1 |
1598 | semver: 6.3.0 | 1411 | semver: 6.3.0 |
1599 | transitivePeerDependencies: | 1412 | transitivePeerDependencies: |
1600 | - supports-color | 1413 | - supports-color |
1601 | dev: true | 1414 | dev: true |
1602 | 1415 | ||
1603 | - /@babel/preset-modules/0.1.5_@babel+core@7.16.0: | 1416 | + /@babel/preset-modules/0.1.5_@babel+core@7.16.5: |
1604 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} | 1417 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} |
1605 | peerDependencies: | 1418 | peerDependencies: |
1606 | '@babel/core': ^7.0.0-0 | 1419 | '@babel/core': ^7.0.0-0 |
1607 | dependencies: | 1420 | dependencies: |
1608 | - '@babel/core': 7.16.0 | 1421 | + '@babel/core': 7.16.5 |
1609 | '@babel/helper-plugin-utils': 7.14.5 | 1422 | '@babel/helper-plugin-utils': 7.14.5 |
1610 | - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 | ||
1611 | - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 | 1423 | + '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.5 |
1424 | + '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.5 | ||
1612 | '@babel/types': 7.16.0 | 1425 | '@babel/types': 7.16.0 |
1613 | esutils: 2.0.3 | 1426 | esutils: 2.0.3 |
1614 | dev: true | 1427 | dev: true |
@@ -1680,14 +1493,14 @@ packages: | @@ -1680,14 +1493,14 @@ packages: | ||
1680 | resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} | 1493 | resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} |
1681 | dev: true | 1494 | dev: true |
1682 | 1495 | ||
1683 | - /@commitlint/cli/16.0.1_@types+node@17.0.5: | ||
1684 | - resolution: {integrity: sha512-61gGRy65WiVDRsqP0dAR2fAgE3qrTBW3fgz9MySv32y5Ib3ZXXDDq6bGyQqi2dSaPuDYzNCRwwlC7mmQM73T/g==} | 1496 | + /@commitlint/cli/16.0.2_@types+node@17.0.9: |
1497 | + resolution: {integrity: sha512-Jt7iaBjoLGC5Nq4dHPTvTYnqPGkElFPBtTXTvBpTgatZApczyjI2plE0oG4GYWPp1suHIS/VdVDOMpPZjGVusg==} | ||
1685 | engines: {node: '>=v12'} | 1498 | engines: {node: '>=v12'} |
1686 | hasBin: true | 1499 | hasBin: true |
1687 | dependencies: | 1500 | dependencies: |
1688 | '@commitlint/format': 16.0.0 | 1501 | '@commitlint/format': 16.0.0 |
1689 | '@commitlint/lint': 16.0.0 | 1502 | '@commitlint/lint': 16.0.0 |
1690 | - '@commitlint/load': 16.0.0_@types+node@17.0.5 | 1503 | + '@commitlint/load': 16.0.0_@types+node@17.0.9 |
1691 | '@commitlint/read': 16.0.0 | 1504 | '@commitlint/read': 16.0.0 |
1692 | '@commitlint/types': 16.0.0 | 1505 | '@commitlint/types': 16.0.0 |
1693 | lodash: 4.17.21 | 1506 | lodash: 4.17.21 |
@@ -1754,7 +1567,7 @@ packages: | @@ -1754,7 +1567,7 @@ packages: | ||
1754 | '@commitlint/types': 16.0.0 | 1567 | '@commitlint/types': 16.0.0 |
1755 | dev: true | 1568 | dev: true |
1756 | 1569 | ||
1757 | - /@commitlint/load/16.0.0_@types+node@17.0.5: | 1570 | + /@commitlint/load/16.0.0_@types+node@17.0.9: |
1758 | resolution: {integrity: sha512-7WhrGCkP6K/XfjBBguLkkI2XUdiiIyMGlNsSoSqgRNiD352EiffhFEApMy1/XOU+viwBBm/On0n5p0NC7e9/4A==} | 1571 | resolution: {integrity: sha512-7WhrGCkP6K/XfjBBguLkkI2XUdiiIyMGlNsSoSqgRNiD352EiffhFEApMy1/XOU+viwBBm/On0n5p0NC7e9/4A==} |
1759 | engines: {node: '>=v12'} | 1572 | engines: {node: '>=v12'} |
1760 | dependencies: | 1573 | dependencies: |
@@ -1764,7 +1577,7 @@ packages: | @@ -1764,7 +1577,7 @@ packages: | ||
1764 | '@commitlint/types': 16.0.0 | 1577 | '@commitlint/types': 16.0.0 |
1765 | chalk: 4.1.2 | 1578 | chalk: 4.1.2 |
1766 | cosmiconfig: 7.0.1 | 1579 | cosmiconfig: 7.0.1 |
1767 | - cosmiconfig-typescript-loader: 1.0.2_bad060d5f9aca5284661d88d739ba15b | 1580 | + cosmiconfig-typescript-loader: 1.0.2_58ff8c2ecf784f4683a8548a58a2b611 |
1768 | lodash: 4.17.21 | 1581 | lodash: 4.17.21 |
1769 | resolve-from: 5.0.0 | 1582 | resolve-from: 5.0.0 |
1770 | typescript: 4.5.4 | 1583 | typescript: 4.5.4 |
@@ -1879,7 +1692,7 @@ packages: | @@ -1879,7 +1692,7 @@ packages: | ||
1879 | dependencies: | 1692 | dependencies: |
1880 | ajv: 6.12.6 | 1693 | ajv: 6.12.6 |
1881 | debug: 4.3.3 | 1694 | debug: 4.3.3 |
1882 | - espree: 9.2.0 | 1695 | + espree: 9.3.0 |
1883 | globals: 13.12.0 | 1696 | globals: 13.12.0 |
1884 | ignore: 4.0.6 | 1697 | ignore: 4.0.6 |
1885 | import-fresh: 3.3.0 | 1698 | import-fresh: 3.3.0 |
@@ -1916,13 +1729,13 @@ packages: | @@ -1916,13 +1729,13 @@ packages: | ||
1916 | cross-fetch: 3.1.4 | 1729 | cross-fetch: 3.1.4 |
1917 | dev: true | 1730 | dev: true |
1918 | 1731 | ||
1919 | - /@iconify/iconify/2.1.0: | ||
1920 | - resolution: {integrity: sha512-YXKrDVXIGUeFIRqr6QC/l6MRj9kDOlES4sWx/ty8SXUk0pCZnBwsj0/to9Q3g79TAyh2wG3/yzrkf6fHKichwA==} | 1732 | + /@iconify/iconify/2.1.1: |
1733 | + resolution: {integrity: sha512-g3d9lxUdGtnqM0aZkZNjnZkgIzh8CeqkkSwcrgzYyWg8urPuQtryhpRHPaYEqmYct4e9Mo0LSP7BqfTU5WeaPw==} | ||
1921 | dependencies: | 1734 | dependencies: |
1922 | cross-fetch: 3.1.4 | 1735 | cross-fetch: 3.1.4 |
1923 | 1736 | ||
1924 | - /@iconify/json/2.0.16: | ||
1925 | - resolution: {integrity: sha512-XaXaATGRLBWZhhTniECn8p/fHOsZTDTWVSZ2zoLWZEDVoErJ/vVEY2TsXiN0DVdI14aqiAZZNXwTXf1ru88fGw==} | 1737 | + /@iconify/json/2.0.25: |
1738 | + resolution: {integrity: sha512-DQ4iRdMAXXdH3MwpNjlt3jtMfBCtiyKluY8p51XIR5AEznjPFa2v1AGDc77aKEKq9rFZwrWI8ristNVf4Vyr0g==} | ||
1926 | dependencies: | 1739 | dependencies: |
1927 | '@iconify/types': 1.0.12 | 1740 | '@iconify/types': 1.0.12 |
1928 | pathe: 0.0.2 | 1741 | pathe: 0.0.2 |
@@ -2004,20 +1817,20 @@ packages: | @@ -2004,20 +1817,20 @@ packages: | ||
2004 | engines: {node: '>=8'} | 1817 | engines: {node: '>=8'} |
2005 | dev: true | 1818 | dev: true |
2006 | 1819 | ||
2007 | - /@jest/console/27.4.2: | ||
2008 | - resolution: {integrity: sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg==} | 1820 | + /@jest/console/27.4.6: |
1821 | + resolution: {integrity: sha512-jauXyacQD33n47A44KrlOVeiXHEXDqapSdfb9kTekOchH/Pd18kBIO1+xxJQRLuG+LUuljFCwTG92ra4NW7SpA==} | ||
2009 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1822 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2010 | dependencies: | 1823 | dependencies: |
2011 | '@jest/types': 27.4.2 | 1824 | '@jest/types': 27.4.2 |
2012 | - '@types/node': 17.0.5 | 1825 | + '@types/node': 17.0.9 |
2013 | chalk: 4.1.2 | 1826 | chalk: 4.1.2 |
2014 | - jest-message-util: 27.4.2 | 1827 | + jest-message-util: 27.4.6 |
2015 | jest-util: 27.4.2 | 1828 | jest-util: 27.4.2 |
2016 | slash: 3.0.0 | 1829 | slash: 3.0.0 |
2017 | dev: true | 1830 | dev: true |
2018 | 1831 | ||
2019 | - /@jest/core/27.4.5_ts-node@10.4.0: | ||
2020 | - resolution: {integrity: sha512-3tm/Pevmi8bDsgvo73nX8p/WPng6KWlCyScW10FPEoN1HU4pwI83tJ3TsFvi1FfzsjwUlMNEPowgb/rPau/LTQ==} | 1832 | + /@jest/core/27.4.7_ts-node@10.4.0: |
1833 | + resolution: {integrity: sha512-n181PurSJkVMS+kClIFSX/LLvw9ExSb+4IMtD6YnfxZVerw9ANYtW0bPrm0MJu2pfe9SY9FJ9FtQ+MdZkrZwjg==} | ||
2021 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1834 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2022 | peerDependencies: | 1835 | peerDependencies: |
2023 | node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 | 1836 | node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 |
@@ -2025,30 +1838,30 @@ packages: | @@ -2025,30 +1838,30 @@ packages: | ||
2025 | node-notifier: | 1838 | node-notifier: |
2026 | optional: true | 1839 | optional: true |
2027 | dependencies: | 1840 | dependencies: |
2028 | - '@jest/console': 27.4.2 | ||
2029 | - '@jest/reporters': 27.4.5 | ||
2030 | - '@jest/test-result': 27.4.2 | ||
2031 | - '@jest/transform': 27.4.5 | 1841 | + '@jest/console': 27.4.6 |
1842 | + '@jest/reporters': 27.4.6 | ||
1843 | + '@jest/test-result': 27.4.6 | ||
1844 | + '@jest/transform': 27.4.6 | ||
2032 | '@jest/types': 27.4.2 | 1845 | '@jest/types': 27.4.2 |
2033 | - '@types/node': 17.0.5 | 1846 | + '@types/node': 17.0.9 |
2034 | ansi-escapes: 4.3.2 | 1847 | ansi-escapes: 4.3.2 |
2035 | chalk: 4.1.2 | 1848 | chalk: 4.1.2 |
2036 | emittery: 0.8.1 | 1849 | emittery: 0.8.1 |
2037 | exit: 0.1.2 | 1850 | exit: 0.1.2 |
2038 | graceful-fs: 4.2.8 | 1851 | graceful-fs: 4.2.8 |
2039 | jest-changed-files: 27.4.2 | 1852 | jest-changed-files: 27.4.2 |
2040 | - jest-config: 27.4.5_ts-node@10.4.0 | ||
2041 | - jest-haste-map: 27.4.5 | ||
2042 | - jest-message-util: 27.4.2 | 1853 | + jest-config: 27.4.7_ts-node@10.4.0 |
1854 | + jest-haste-map: 27.4.6 | ||
1855 | + jest-message-util: 27.4.6 | ||
2043 | jest-regex-util: 27.4.0 | 1856 | jest-regex-util: 27.4.0 |
2044 | - jest-resolve: 27.4.5 | ||
2045 | - jest-resolve-dependencies: 27.4.5 | ||
2046 | - jest-runner: 27.4.5 | ||
2047 | - jest-runtime: 27.4.5 | ||
2048 | - jest-snapshot: 27.4.5 | 1857 | + jest-resolve: 27.4.6 |
1858 | + jest-resolve-dependencies: 27.4.6 | ||
1859 | + jest-runner: 27.4.6 | ||
1860 | + jest-runtime: 27.4.6 | ||
1861 | + jest-snapshot: 27.4.6 | ||
2049 | jest-util: 27.4.2 | 1862 | jest-util: 27.4.2 |
2050 | - jest-validate: 27.4.2 | ||
2051 | - jest-watcher: 27.4.2 | 1863 | + jest-validate: 27.4.6 |
1864 | + jest-watcher: 27.4.6 | ||
2052 | micromatch: 4.0.4 | 1865 | micromatch: 4.0.4 |
2053 | rimraf: 3.0.2 | 1866 | rimraf: 3.0.2 |
2054 | slash: 3.0.0 | 1867 | slash: 3.0.0 |
@@ -2061,39 +1874,39 @@ packages: | @@ -2061,39 +1874,39 @@ packages: | ||
2061 | - utf-8-validate | 1874 | - utf-8-validate |
2062 | dev: true | 1875 | dev: true |
2063 | 1876 | ||
2064 | - /@jest/environment/27.4.4: | ||
2065 | - resolution: {integrity: sha512-q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ==} | 1877 | + /@jest/environment/27.4.6: |
1878 | + resolution: {integrity: sha512-E6t+RXPfATEEGVidr84WngLNWZ8ffCPky8RqqRK6u1Bn0LK92INe0MDttyPl/JOzaq92BmDzOeuqk09TvM22Sg==} | ||
2066 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1879 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2067 | dependencies: | 1880 | dependencies: |
2068 | - '@jest/fake-timers': 27.4.2 | 1881 | + '@jest/fake-timers': 27.4.6 |
2069 | '@jest/types': 27.4.2 | 1882 | '@jest/types': 27.4.2 |
2070 | - '@types/node': 17.0.5 | ||
2071 | - jest-mock: 27.4.2 | 1883 | + '@types/node': 17.0.9 |
1884 | + jest-mock: 27.4.6 | ||
2072 | dev: true | 1885 | dev: true |
2073 | 1886 | ||
2074 | - /@jest/fake-timers/27.4.2: | ||
2075 | - resolution: {integrity: sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==} | 1887 | + /@jest/fake-timers/27.4.6: |
1888 | + resolution: {integrity: sha512-mfaethuYF8scV8ntPpiVGIHQgS0XIALbpY2jt2l7wb/bvq4Q5pDLk4EP4D7SAvYT1QrPOPVZAtbdGAOOyIgs7A==} | ||
2076 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1889 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2077 | dependencies: | 1890 | dependencies: |
2078 | '@jest/types': 27.4.2 | 1891 | '@jest/types': 27.4.2 |
2079 | '@sinonjs/fake-timers': 8.1.0 | 1892 | '@sinonjs/fake-timers': 8.1.0 |
2080 | - '@types/node': 17.0.5 | ||
2081 | - jest-message-util: 27.4.2 | ||
2082 | - jest-mock: 27.4.2 | 1893 | + '@types/node': 17.0.9 |
1894 | + jest-message-util: 27.4.6 | ||
1895 | + jest-mock: 27.4.6 | ||
2083 | jest-util: 27.4.2 | 1896 | jest-util: 27.4.2 |
2084 | dev: true | 1897 | dev: true |
2085 | 1898 | ||
2086 | - /@jest/globals/27.4.4: | ||
2087 | - resolution: {integrity: sha512-bqpqQhW30BOreXM8bA8t8JbOQzsq/WnPTnBl+It3UxAD9J8yxEAaBEylHx1dtBapAr/UBk8GidXbzmqnee8tYQ==} | 1899 | + /@jest/globals/27.4.6: |
1900 | + resolution: {integrity: sha512-kAiwMGZ7UxrgPzu8Yv9uvWmXXxsy0GciNejlHvfPIfWkSxChzv6bgTS3YqBkGuHcis+ouMFI2696n2t+XYIeFw==} | ||
2088 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1901 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2089 | dependencies: | 1902 | dependencies: |
2090 | - '@jest/environment': 27.4.4 | 1903 | + '@jest/environment': 27.4.6 |
2091 | '@jest/types': 27.4.2 | 1904 | '@jest/types': 27.4.2 |
2092 | - expect: 27.4.2 | 1905 | + expect: 27.4.6 |
2093 | dev: true | 1906 | dev: true |
2094 | 1907 | ||
2095 | - /@jest/reporters/27.4.5: | ||
2096 | - resolution: {integrity: sha512-3orsG4vi8zXuBqEoy2LbnC1kuvkg1KQUgqNxmxpQgIOQEPeV0onvZu+qDQnEoX8qTQErtqn/xzcnbpeTuOLSiA==} | 1908 | + /@jest/reporters/27.4.6: |
1909 | + resolution: {integrity: sha512-+Zo9gV81R14+PSq4wzee4GC2mhAN9i9a7qgJWL90Gpx7fHYkWpTBvwWNZUXvJByYR9tAVBdc8VxDWqfJyIUrIQ==} | ||
2097 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1910 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2098 | peerDependencies: | 1911 | peerDependencies: |
2099 | node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 | 1912 | node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 |
@@ -2102,25 +1915,25 @@ packages: | @@ -2102,25 +1915,25 @@ packages: | ||
2102 | optional: true | 1915 | optional: true |
2103 | dependencies: | 1916 | dependencies: |
2104 | '@bcoe/v8-coverage': 0.2.3 | 1917 | '@bcoe/v8-coverage': 0.2.3 |
2105 | - '@jest/console': 27.4.2 | ||
2106 | - '@jest/test-result': 27.4.2 | ||
2107 | - '@jest/transform': 27.4.5 | 1918 | + '@jest/console': 27.4.6 |
1919 | + '@jest/test-result': 27.4.6 | ||
1920 | + '@jest/transform': 27.4.6 | ||
2108 | '@jest/types': 27.4.2 | 1921 | '@jest/types': 27.4.2 |
2109 | - '@types/node': 17.0.5 | 1922 | + '@types/node': 17.0.9 |
2110 | chalk: 4.1.2 | 1923 | chalk: 4.1.2 |
2111 | collect-v8-coverage: 1.0.1 | 1924 | collect-v8-coverage: 1.0.1 |
2112 | exit: 0.1.2 | 1925 | exit: 0.1.2 |
2113 | glob: 7.2.0 | 1926 | glob: 7.2.0 |
2114 | graceful-fs: 4.2.8 | 1927 | graceful-fs: 4.2.8 |
2115 | istanbul-lib-coverage: 3.2.0 | 1928 | istanbul-lib-coverage: 3.2.0 |
2116 | - istanbul-lib-instrument: 4.0.3 | 1929 | + istanbul-lib-instrument: 5.1.0 |
2117 | istanbul-lib-report: 3.0.0 | 1930 | istanbul-lib-report: 3.0.0 |
2118 | istanbul-lib-source-maps: 4.0.1 | 1931 | istanbul-lib-source-maps: 4.0.1 |
2119 | - istanbul-reports: 3.0.5 | ||
2120 | - jest-haste-map: 27.4.5 | ||
2121 | - jest-resolve: 27.4.5 | 1932 | + istanbul-reports: 3.1.3 |
1933 | + jest-haste-map: 27.4.6 | ||
1934 | + jest-resolve: 27.4.6 | ||
2122 | jest-util: 27.4.2 | 1935 | jest-util: 27.4.2 |
2123 | - jest-worker: 27.4.5 | 1936 | + jest-worker: 27.4.6 |
2124 | slash: 3.0.0 | 1937 | slash: 3.0.0 |
2125 | source-map: 0.6.1 | 1938 | source-map: 0.6.1 |
2126 | string-length: 4.0.2 | 1939 | string-length: 4.0.2 |
@@ -2139,30 +1952,30 @@ packages: | @@ -2139,30 +1952,30 @@ packages: | ||
2139 | source-map: 0.6.1 | 1952 | source-map: 0.6.1 |
2140 | dev: true | 1953 | dev: true |
2141 | 1954 | ||
2142 | - /@jest/test-result/27.4.2: | ||
2143 | - resolution: {integrity: sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA==} | 1955 | + /@jest/test-result/27.4.6: |
1956 | + resolution: {integrity: sha512-fi9IGj3fkOrlMmhQqa/t9xum8jaJOOAi/lZlm6JXSc55rJMXKHxNDN1oCP39B0/DhNOa2OMupF9BcKZnNtXMOQ==} | ||
2144 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1957 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2145 | dependencies: | 1958 | dependencies: |
2146 | - '@jest/console': 27.4.2 | 1959 | + '@jest/console': 27.4.6 |
2147 | '@jest/types': 27.4.2 | 1960 | '@jest/types': 27.4.2 |
2148 | '@types/istanbul-lib-coverage': 2.0.3 | 1961 | '@types/istanbul-lib-coverage': 2.0.3 |
2149 | collect-v8-coverage: 1.0.1 | 1962 | collect-v8-coverage: 1.0.1 |
2150 | dev: true | 1963 | dev: true |
2151 | 1964 | ||
2152 | - /@jest/test-sequencer/27.4.5: | ||
2153 | - resolution: {integrity: sha512-n5woIn/1v+FT+9hniymHPARA9upYUmfi5Pw9ewVwXCDlK4F5/Gkees9v8vdjGdAIJ2MPHLHodiajLpZZanWzEQ==} | 1965 | + /@jest/test-sequencer/27.4.6: |
1966 | + resolution: {integrity: sha512-3GL+nsf6E1PsyNsJuvPyIz+DwFuCtBdtvPpm/LMXVkBJbdFvQYCDpccYT56qq5BGniXWlE81n2qk1sdXfZebnw==} | ||
2154 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1967 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2155 | dependencies: | 1968 | dependencies: |
2156 | - '@jest/test-result': 27.4.2 | 1969 | + '@jest/test-result': 27.4.6 |
2157 | graceful-fs: 4.2.8 | 1970 | graceful-fs: 4.2.8 |
2158 | - jest-haste-map: 27.4.5 | ||
2159 | - jest-runtime: 27.4.5 | 1971 | + jest-haste-map: 27.4.6 |
1972 | + jest-runtime: 27.4.6 | ||
2160 | transitivePeerDependencies: | 1973 | transitivePeerDependencies: |
2161 | - supports-color | 1974 | - supports-color |
2162 | dev: true | 1975 | dev: true |
2163 | 1976 | ||
2164 | - /@jest/transform/27.4.5: | ||
2165 | - resolution: {integrity: sha512-PuMet2UlZtlGzwc6L+aZmR3I7CEBpqadO03pU40l2RNY2fFJ191b9/ITB44LNOhVtsyykx0OZvj0PCyuLm7Eew==} | 1977 | + /@jest/transform/27.4.6: |
1978 | + resolution: {integrity: sha512-9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw==} | ||
2166 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 1979 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2167 | dependencies: | 1980 | dependencies: |
2168 | '@babel/core': 7.16.5 | 1981 | '@babel/core': 7.16.5 |
@@ -2172,11 +1985,11 @@ packages: | @@ -2172,11 +1985,11 @@ packages: | ||
2172 | convert-source-map: 1.8.0 | 1985 | convert-source-map: 1.8.0 |
2173 | fast-json-stable-stringify: 2.1.0 | 1986 | fast-json-stable-stringify: 2.1.0 |
2174 | graceful-fs: 4.2.8 | 1987 | graceful-fs: 4.2.8 |
2175 | - jest-haste-map: 27.4.5 | 1988 | + jest-haste-map: 27.4.6 |
2176 | jest-regex-util: 27.4.0 | 1989 | jest-regex-util: 27.4.0 |
2177 | jest-util: 27.4.2 | 1990 | jest-util: 27.4.2 |
2178 | micromatch: 4.0.4 | 1991 | micromatch: 4.0.4 |
2179 | - pirates: 4.0.1 | 1992 | + pirates: 4.0.4 |
2180 | slash: 3.0.0 | 1993 | slash: 3.0.0 |
2181 | source-map: 0.6.1 | 1994 | source-map: 0.6.1 |
2182 | write-file-atomic: 3.0.3 | 1995 | write-file-atomic: 3.0.3 |
@@ -2184,40 +1997,29 @@ packages: | @@ -2184,40 +1997,29 @@ packages: | ||
2184 | - supports-color | 1997 | - supports-color |
2185 | dev: true | 1998 | dev: true |
2186 | 1999 | ||
2187 | - /@jest/types/27.2.5: | ||
2188 | - resolution: {integrity: sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==} | ||
2189 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | ||
2190 | - dependencies: | ||
2191 | - '@types/istanbul-lib-coverage': 2.0.3 | ||
2192 | - '@types/istanbul-reports': 3.0.1 | ||
2193 | - '@types/node': 17.0.5 | ||
2194 | - '@types/yargs': 16.0.4 | ||
2195 | - chalk: 4.1.2 | ||
2196 | - dev: true | ||
2197 | - | ||
2198 | /@jest/types/27.4.2: | 2000 | /@jest/types/27.4.2: |
2199 | resolution: {integrity: sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==} | 2001 | resolution: {integrity: sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==} |
2200 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 2002 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
2201 | dependencies: | 2003 | dependencies: |
2202 | '@types/istanbul-lib-coverage': 2.0.3 | 2004 | '@types/istanbul-lib-coverage': 2.0.3 |
2203 | '@types/istanbul-reports': 3.0.1 | 2005 | '@types/istanbul-reports': 3.0.1 |
2204 | - '@types/node': 17.0.5 | 2006 | + '@types/node': 17.0.9 |
2205 | '@types/yargs': 16.0.4 | 2007 | '@types/yargs': 16.0.4 |
2206 | chalk: 4.1.2 | 2008 | chalk: 4.1.2 |
2207 | dev: true | 2009 | dev: true |
2208 | 2010 | ||
2209 | - /@logicflow/core/0.7.16: | ||
2210 | - resolution: {integrity: sha512-ExOnCENfJqoOWjwIZE5hFdpPYqMsnE7oLalSUrFm+FkEIEQIgxVZHPt31EZEYc5Q+8IrL1tDpTAq0A4S6iJmtQ==} | 2011 | + /@logicflow/core/1.0.7: |
2012 | + resolution: {integrity: sha512-+mQNzUKWPyr6NDMhzseoRfpiHtDlj4FwaOG+vNXUlMPLXmlV7aMPZ0EyK+QRl7yHv1hQX4ViRmTbDzR3zjskxA==} | ||
2211 | dependencies: | 2013 | dependencies: |
2212 | '@types/mousetrap': 1.6.8 | 2014 | '@types/mousetrap': 1.6.8 |
2213 | mousetrap: 1.6.5 | 2015 | mousetrap: 1.6.5 |
2214 | preact: 10.6.1 | 2016 | preact: 10.6.1 |
2215 | dev: false | 2017 | dev: false |
2216 | 2018 | ||
2217 | - /@logicflow/extension/0.7.16: | ||
2218 | - resolution: {integrity: sha512-3PxfHf5P6utty/ZECsAR9nmjgaOF5K3XOUBR10YTcTo1qSIici8rS72I+YIRc9R6fTT097gOprbmmNjQEwdw1Q==} | 2019 | + /@logicflow/extension/1.0.7: |
2020 | + resolution: {integrity: sha512-Q4r+tybYqkyy1Ujia4WWp0bye/QIgqAOkG9rY9RPBZdJ4y+QLe6MpbL5cROFEs0G+7AxpIMYDUdwGaMYW0PZHQ==} | ||
2219 | dependencies: | 2021 | dependencies: |
2220 | - '@logicflow/core': 0.7.16 | 2022 | + '@logicflow/core': 1.0.7 |
2221 | ids: 1.0.0 | 2023 | ids: 1.0.0 |
2222 | preact: 10.6.1 | 2024 | preact: 10.6.1 |
2223 | dev: false | 2025 | dev: false |
@@ -2243,6 +2045,105 @@ packages: | @@ -2243,6 +2045,105 @@ packages: | ||
2243 | fastq: 1.13.0 | 2045 | fastq: 1.13.0 |
2244 | dev: true | 2046 | dev: true |
2245 | 2047 | ||
2048 | + /@octokit/auth-token/2.5.0: | ||
2049 | + resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} | ||
2050 | + dependencies: | ||
2051 | + '@octokit/types': 6.34.0 | ||
2052 | + dev: true | ||
2053 | + | ||
2054 | + /@octokit/core/3.5.1: | ||
2055 | + resolution: {integrity: sha512-omncwpLVxMP+GLpLPgeGJBF6IWJFjXDS5flY5VbppePYX9XehevbDykRH9PdCdvqt9TS5AOTiDide7h0qrkHjw==} | ||
2056 | + dependencies: | ||
2057 | + '@octokit/auth-token': 2.5.0 | ||
2058 | + '@octokit/graphql': 4.8.0 | ||
2059 | + '@octokit/request': 5.6.2 | ||
2060 | + '@octokit/request-error': 2.1.0 | ||
2061 | + '@octokit/types': 6.34.0 | ||
2062 | + before-after-hook: 2.2.2 | ||
2063 | + universal-user-agent: 6.0.0 | ||
2064 | + dev: true | ||
2065 | + | ||
2066 | + /@octokit/endpoint/6.0.12: | ||
2067 | + resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} | ||
2068 | + dependencies: | ||
2069 | + '@octokit/types': 6.34.0 | ||
2070 | + is-plain-object: 5.0.0 | ||
2071 | + universal-user-agent: 6.0.0 | ||
2072 | + dev: true | ||
2073 | + | ||
2074 | + /@octokit/graphql/4.8.0: | ||
2075 | + resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} | ||
2076 | + dependencies: | ||
2077 | + '@octokit/request': 5.6.2 | ||
2078 | + '@octokit/types': 6.34.0 | ||
2079 | + universal-user-agent: 6.0.0 | ||
2080 | + dev: true | ||
2081 | + | ||
2082 | + /@octokit/openapi-types/11.2.0: | ||
2083 | + resolution: {integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==} | ||
2084 | + dev: true | ||
2085 | + | ||
2086 | + /@octokit/plugin-paginate-rest/2.17.0_@octokit+core@3.5.1: | ||
2087 | + resolution: {integrity: sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==} | ||
2088 | + peerDependencies: | ||
2089 | + '@octokit/core': '>=2' | ||
2090 | + dependencies: | ||
2091 | + '@octokit/core': 3.5.1 | ||
2092 | + '@octokit/types': 6.34.0 | ||
2093 | + dev: true | ||
2094 | + | ||
2095 | + /@octokit/plugin-request-log/1.0.4_@octokit+core@3.5.1: | ||
2096 | + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} | ||
2097 | + peerDependencies: | ||
2098 | + '@octokit/core': '>=3' | ||
2099 | + dependencies: | ||
2100 | + '@octokit/core': 3.5.1 | ||
2101 | + dev: true | ||
2102 | + | ||
2103 | + /@octokit/plugin-rest-endpoint-methods/5.13.0_@octokit+core@3.5.1: | ||
2104 | + resolution: {integrity: sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==} | ||
2105 | + peerDependencies: | ||
2106 | + '@octokit/core': '>=3' | ||
2107 | + dependencies: | ||
2108 | + '@octokit/core': 3.5.1 | ||
2109 | + '@octokit/types': 6.34.0 | ||
2110 | + deprecation: 2.3.1 | ||
2111 | + dev: true | ||
2112 | + | ||
2113 | + /@octokit/request-error/2.1.0: | ||
2114 | + resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} | ||
2115 | + dependencies: | ||
2116 | + '@octokit/types': 6.34.0 | ||
2117 | + deprecation: 2.3.1 | ||
2118 | + once: 1.4.0 | ||
2119 | + dev: true | ||
2120 | + | ||
2121 | + /@octokit/request/5.6.2: | ||
2122 | + resolution: {integrity: sha512-je66CvSEVf0jCpRISxkUcCa0UkxmFs6eGDRSbfJtAVwbLH5ceqF+YEyC8lj8ystKyZTy8adWr0qmkY52EfOeLA==} | ||
2123 | + dependencies: | ||
2124 | + '@octokit/endpoint': 6.0.12 | ||
2125 | + '@octokit/request-error': 2.1.0 | ||
2126 | + '@octokit/types': 6.34.0 | ||
2127 | + is-plain-object: 5.0.0 | ||
2128 | + node-fetch: 2.6.1 | ||
2129 | + universal-user-agent: 6.0.0 | ||
2130 | + dev: true | ||
2131 | + | ||
2132 | + /@octokit/rest/18.12.0: | ||
2133 | + resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} | ||
2134 | + dependencies: | ||
2135 | + '@octokit/core': 3.5.1 | ||
2136 | + '@octokit/plugin-paginate-rest': 2.17.0_@octokit+core@3.5.1 | ||
2137 | + '@octokit/plugin-request-log': 1.0.4_@octokit+core@3.5.1 | ||
2138 | + '@octokit/plugin-rest-endpoint-methods': 5.13.0_@octokit+core@3.5.1 | ||
2139 | + dev: true | ||
2140 | + | ||
2141 | + /@octokit/types/6.34.0: | ||
2142 | + resolution: {integrity: sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==} | ||
2143 | + dependencies: | ||
2144 | + '@octokit/openapi-types': 11.2.0 | ||
2145 | + dev: true | ||
2146 | + | ||
2246 | /@purge-icons/core/0.7.0: | 2147 | /@purge-icons/core/0.7.0: |
2247 | resolution: {integrity: sha512-PaCeTFjkQUX+MzBsNg3L8x5aCZqXwaUSNw1FY3Jn7wlLqNqxRNoShw5P//a1DQAy7hLlUHvEL6IGeDoN/xf98A==} | 2148 | resolution: {integrity: sha512-PaCeTFjkQUX+MzBsNg3L8x5aCZqXwaUSNw1FY3Jn7wlLqNqxRNoShw5P//a1DQAy7hLlUHvEL6IGeDoN/xf98A==} |
2248 | dependencies: | 2149 | dependencies: |
@@ -2258,10 +2159,10 @@ packages: | @@ -2258,10 +2159,10 @@ packages: | ||
2258 | /@purge-icons/generated/0.7.0: | 2159 | /@purge-icons/generated/0.7.0: |
2259 | resolution: {integrity: sha512-4SHVpZnKaW5ekRTjhPY9b1pALVlF0pDuGIDRAlxAm0V+gQVOL0+Ghav6U9XqXFj2kiG1+eQ8swpvB+kd0a+tqg==} | 2160 | resolution: {integrity: sha512-4SHVpZnKaW5ekRTjhPY9b1pALVlF0pDuGIDRAlxAm0V+gQVOL0+Ghav6U9XqXFj2kiG1+eQ8swpvB+kd0a+tqg==} |
2260 | dependencies: | 2161 | dependencies: |
2261 | - '@iconify/iconify': 2.1.0 | 2162 | + '@iconify/iconify': 2.1.1 |
2262 | dev: true | 2163 | dev: true |
2263 | 2164 | ||
2264 | - /@rollup/plugin-babel/5.3.0_@babel+core@7.16.0+rollup@2.60.1: | 2165 | + /@rollup/plugin-babel/5.3.0_@babel+core@7.16.5+rollup@2.60.1: |
2265 | resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} | 2166 | resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} |
2266 | engines: {node: '>= 10.0.0'} | 2167 | engines: {node: '>= 10.0.0'} |
2267 | peerDependencies: | 2168 | peerDependencies: |
@@ -2272,7 +2173,7 @@ packages: | @@ -2272,7 +2173,7 @@ packages: | ||
2272 | '@types/babel__core': | 2173 | '@types/babel__core': |
2273 | optional: true | 2174 | optional: true |
2274 | dependencies: | 2175 | dependencies: |
2275 | - '@babel/core': 7.16.0 | 2176 | + '@babel/core': 7.16.5 |
2276 | '@babel/helper-module-imports': 7.16.0 | 2177 | '@babel/helper-module-imports': 7.16.0 |
2277 | '@rollup/pluginutils': 3.1.0_rollup@2.60.1 | 2178 | '@rollup/pluginutils': 3.1.0_rollup@2.60.1 |
2278 | rollup: 2.60.1 | 2179 | rollup: 2.60.1 |
@@ -2410,7 +2311,7 @@ packages: | @@ -2410,7 +2311,7 @@ packages: | ||
2410 | /@types/babel__core/7.1.16: | 2311 | /@types/babel__core/7.1.16: |
2411 | resolution: {integrity: sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==} | 2312 | resolution: {integrity: sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==} |
2412 | dependencies: | 2313 | dependencies: |
2413 | - '@babel/parser': 7.16.4 | 2314 | + '@babel/parser': 7.16.6 |
2414 | '@babel/types': 7.16.0 | 2315 | '@babel/types': 7.16.0 |
2415 | '@types/babel__generator': 7.6.3 | 2316 | '@types/babel__generator': 7.6.3 |
2416 | '@types/babel__template': 7.4.1 | 2317 | '@types/babel__template': 7.4.1 |
@@ -2426,7 +2327,7 @@ packages: | @@ -2426,7 +2327,7 @@ packages: | ||
2426 | /@types/babel__template/7.4.1: | 2327 | /@types/babel__template/7.4.1: |
2427 | resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} | 2328 | resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} |
2428 | dependencies: | 2329 | dependencies: |
2429 | - '@babel/parser': 7.16.4 | 2330 | + '@babel/parser': 7.16.6 |
2430 | '@babel/types': 7.16.0 | 2331 | '@babel/types': 7.16.0 |
2431 | dev: true | 2332 | dev: true |
2432 | 2333 | ||
@@ -2442,8 +2343,8 @@ packages: | @@ -2442,8 +2343,8 @@ packages: | ||
2442 | '@types/tern': 0.23.4 | 2343 | '@types/tern': 0.23.4 |
2443 | dev: true | 2344 | dev: true |
2444 | 2345 | ||
2445 | - /@types/crypto-js/4.0.2: | ||
2446 | - resolution: {integrity: sha512-sCVniU+h3GcGqxOmng11BRvf9TfN9yIs8KKjB8C8d75W69cpTfZG80gau9yTx5SxF3gvHGbJhdESzzvnjtf3Og==} | 2346 | + /@types/crypto-js/4.1.0: |
2347 | + resolution: {integrity: sha512-DCFfy/vh2lG6qHSGezQ+Sn2Ulf/1Mx51dqOdmOKyW5nMK3maLlxeS3onC7r212OnBM2pBR95HkAmAjjF08YkxQ==} | ||
2447 | dev: true | 2348 | dev: true |
2448 | 2349 | ||
2449 | /@types/estree/0.0.39: | 2350 | /@types/estree/0.0.39: |
@@ -2457,20 +2358,20 @@ packages: | @@ -2457,20 +2358,20 @@ packages: | ||
2457 | /@types/fs-extra/9.0.13: | 2358 | /@types/fs-extra/9.0.13: |
2458 | resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} | 2359 | resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} |
2459 | dependencies: | 2360 | dependencies: |
2460 | - '@types/node': 17.0.5 | 2361 | + '@types/node': 17.0.9 |
2461 | dev: true | 2362 | dev: true |
2462 | 2363 | ||
2463 | /@types/glob/7.2.0: | 2364 | /@types/glob/7.2.0: |
2464 | resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} | 2365 | resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} |
2465 | dependencies: | 2366 | dependencies: |
2466 | '@types/minimatch': 3.0.5 | 2367 | '@types/minimatch': 3.0.5 |
2467 | - '@types/node': 17.0.5 | 2368 | + '@types/node': 17.0.9 |
2468 | dev: true | 2369 | dev: true |
2469 | 2370 | ||
2470 | /@types/graceful-fs/4.1.5: | 2371 | /@types/graceful-fs/4.1.5: |
2471 | resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} | 2372 | resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} |
2472 | dependencies: | 2373 | dependencies: |
2473 | - '@types/node': 17.0.5 | 2374 | + '@types/node': 17.0.9 |
2474 | dev: true | 2375 | dev: true |
2475 | 2376 | ||
2476 | /@types/imagemin-gifsicle/7.0.1: | 2377 | /@types/imagemin-gifsicle/7.0.1: |
@@ -2513,7 +2414,7 @@ packages: | @@ -2513,7 +2414,7 @@ packages: | ||
2513 | /@types/imagemin/7.0.1: | 2414 | /@types/imagemin/7.0.1: |
2514 | resolution: {integrity: sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw==} | 2415 | resolution: {integrity: sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw==} |
2515 | dependencies: | 2416 | dependencies: |
2516 | - '@types/node': 17.0.5 | 2417 | + '@types/node': 17.0.9 |
2517 | dev: true | 2418 | dev: true |
2518 | 2419 | ||
2519 | /@types/inquirer/8.1.3: | 2420 | /@types/inquirer/8.1.3: |
@@ -2543,11 +2444,11 @@ packages: | @@ -2543,11 +2444,11 @@ packages: | ||
2543 | '@types/istanbul-lib-report': 3.0.0 | 2444 | '@types/istanbul-lib-report': 3.0.0 |
2544 | dev: true | 2445 | dev: true |
2545 | 2446 | ||
2546 | - /@types/jest/27.0.3: | ||
2547 | - resolution: {integrity: sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==} | 2447 | + /@types/jest/27.4.0: |
2448 | + resolution: {integrity: sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==} | ||
2548 | dependencies: | 2449 | dependencies: |
2549 | - jest-diff: 27.3.1 | ||
2550 | - pretty-format: 27.3.1 | 2450 | + jest-diff: 27.4.2 |
2451 | + pretty-format: 27.4.2 | ||
2551 | dev: true | 2452 | dev: true |
2552 | 2453 | ||
2553 | /@types/json-schema/7.0.9: | 2454 | /@types/json-schema/7.0.9: |
@@ -2571,8 +2472,8 @@ packages: | @@ -2571,8 +2472,8 @@ packages: | ||
2571 | resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} | 2472 | resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} |
2572 | dev: true | 2473 | dev: true |
2573 | 2474 | ||
2574 | - /@types/mockjs/1.0.4: | ||
2575 | - resolution: {integrity: sha512-gK20xPqJhzMIitechVbvfnAk+oBIxVRnWrihJpRYHMI6UHCB/cvWgJa+dy6trRwQLE3AbtAJnXpm7pn6blG8sA==} | 2475 | + /@types/mockjs/1.0.6: |
2476 | + resolution: {integrity: sha512-Yu5YlqbYZyqsd6LjO4e8ONJDN9pTSnciHDcRP4teNOh/au2b8helFhgRx+3w8xsTFEnwr9jtfTVJbAx+eYmlHA==} | ||
2576 | dev: true | 2477 | dev: true |
2577 | 2478 | ||
2578 | /@types/mousetrap/1.6.8: | 2479 | /@types/mousetrap/1.6.8: |
@@ -2583,8 +2484,8 @@ packages: | @@ -2583,8 +2484,8 @@ packages: | ||
2583 | resolution: {integrity: sha512-USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==} | 2484 | resolution: {integrity: sha512-USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==} |
2584 | dev: true | 2485 | dev: true |
2585 | 2486 | ||
2586 | - /@types/node/17.0.5: | ||
2587 | - resolution: {integrity: sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw==} | 2487 | + /@types/node/17.0.9: |
2488 | + resolution: {integrity: sha512-5dNBXu/FOER+EXnyah7rn8xlNrfMOQb/qXnw4NQgLkCygKBKhdmF/CA5oXVOKZLBEahw8s2WP9LxIcN/oDDRgQ==} | ||
2588 | dev: true | 2489 | dev: true |
2589 | 2490 | ||
2590 | /@types/normalize-package-data/2.4.1: | 2491 | /@types/normalize-package-data/2.4.1: |
@@ -2606,7 +2507,7 @@ packages: | @@ -2606,7 +2507,7 @@ packages: | ||
2606 | /@types/qrcode/1.4.2: | 2507 | /@types/qrcode/1.4.2: |
2607 | resolution: {integrity: sha512-7uNT9L4WQTNJejHTSTdaJhfBSCN73xtXaHFyBJ8TSwiLhe4PRuTue7Iph0s2nG9R/ifUaSnGhLUOZavlBEqDWQ==} | 2508 | resolution: {integrity: sha512-7uNT9L4WQTNJejHTSTdaJhfBSCN73xtXaHFyBJ8TSwiLhe4PRuTue7Iph0s2nG9R/ifUaSnGhLUOZavlBEqDWQ==} |
2608 | dependencies: | 2509 | dependencies: |
2609 | - '@types/node': 17.0.5 | 2510 | + '@types/node': 17.0.9 |
2610 | dev: true | 2511 | dev: true |
2611 | 2512 | ||
2612 | /@types/qs/6.9.7: | 2513 | /@types/qs/6.9.7: |
@@ -2616,7 +2517,7 @@ packages: | @@ -2616,7 +2517,7 @@ packages: | ||
2616 | /@types/resolve/1.17.1: | 2517 | /@types/resolve/1.17.1: |
2617 | resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} | 2518 | resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} |
2618 | dependencies: | 2519 | dependencies: |
2619 | - '@types/node': 17.0.5 | 2520 | + '@types/node': 17.0.9 |
2620 | dev: true | 2521 | dev: true |
2621 | 2522 | ||
2622 | /@types/showdown/1.9.4: | 2523 | /@types/showdown/1.9.4: |
@@ -2638,7 +2539,7 @@ packages: | @@ -2638,7 +2539,7 @@ packages: | ||
2638 | /@types/svgo/2.6.0: | 2539 | /@types/svgo/2.6.0: |
2639 | resolution: {integrity: sha512-VSdhb3KTOglle1SLQD4+TB6ezj/MS3rN98gOUkXzbTUhG8VjFKHXN3OVgEFlTnW5fYBxt+lzZlD3PFqkwMj36Q==} | 2540 | resolution: {integrity: sha512-VSdhb3KTOglle1SLQD4+TB6ezj/MS3rN98gOUkXzbTUhG8VjFKHXN3OVgEFlTnW5fYBxt+lzZlD3PFqkwMj36Q==} |
2640 | dependencies: | 2541 | dependencies: |
2641 | - '@types/node': 17.0.5 | 2542 | + '@types/node': 17.0.9 |
2642 | dev: true | 2543 | dev: true |
2643 | 2544 | ||
2644 | /@types/tern/0.23.4: | 2545 | /@types/tern/0.23.4: |
@@ -2654,7 +2555,7 @@ packages: | @@ -2654,7 +2555,7 @@ packages: | ||
2654 | /@types/through/0.0.30: | 2555 | /@types/through/0.0.30: |
2655 | resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} | 2556 | resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} |
2656 | dependencies: | 2557 | dependencies: |
2657 | - '@types/node': 17.0.5 | 2558 | + '@types/node': 17.0.9 |
2658 | dev: true | 2559 | dev: true |
2659 | 2560 | ||
2660 | /@types/tinycolor2/1.4.3: | 2561 | /@types/tinycolor2/1.4.3: |
@@ -2675,8 +2576,8 @@ packages: | @@ -2675,8 +2576,8 @@ packages: | ||
2675 | '@types/yargs-parser': 20.2.1 | 2576 | '@types/yargs-parser': 20.2.1 |
2676 | dev: true | 2577 | dev: true |
2677 | 2578 | ||
2678 | - /@typescript-eslint/eslint-plugin/5.8.1_3a47348159e115370aa4cba56aba33b6: | ||
2679 | - resolution: {integrity: sha512-wTZ5oEKrKj/8/366qTM366zqhIKAp6NCMweoRONtfuC07OAU9nVI2GZZdqQ1qD30WAAtcPdkH+npDwtRFdp4Rw==} | 2579 | + /@typescript-eslint/eslint-plugin/5.10.0_3b6b276e93ead7cf6063f183a5e18d1f: |
2580 | + resolution: {integrity: sha512-XXVKnMsq2fuu9K2KsIxPUGqb6xAImz8MEChClbXmE3VbveFtBUU5bzM6IPVWqzyADIgdkS2Ws/6Xo7W2TeZWjQ==} | ||
2680 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2581 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2681 | peerDependencies: | 2582 | peerDependencies: |
2682 | '@typescript-eslint/parser': ^5.0.0 | 2583 | '@typescript-eslint/parser': ^5.0.0 |
@@ -2686,13 +2587,14 @@ packages: | @@ -2686,13 +2587,14 @@ packages: | ||
2686 | typescript: | 2587 | typescript: |
2687 | optional: true | 2588 | optional: true |
2688 | dependencies: | 2589 | dependencies: |
2689 | - '@typescript-eslint/experimental-utils': 5.8.1_eslint@8.5.0+typescript@4.5.4 | ||
2690 | - '@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4 | ||
2691 | - '@typescript-eslint/scope-manager': 5.8.1 | 2590 | + '@typescript-eslint/parser': 5.10.0_eslint@8.7.0+typescript@4.5.4 |
2591 | + '@typescript-eslint/scope-manager': 5.10.0 | ||
2592 | + '@typescript-eslint/type-utils': 5.10.0_eslint@8.7.0+typescript@4.5.4 | ||
2593 | + '@typescript-eslint/utils': 5.10.0_eslint@8.7.0+typescript@4.5.4 | ||
2692 | debug: 4.3.3 | 2594 | debug: 4.3.3 |
2693 | - eslint: 8.5.0 | 2595 | + eslint: 8.7.0 |
2694 | functional-red-black-tree: 1.0.1 | 2596 | functional-red-black-tree: 1.0.1 |
2695 | - ignore: 5.1.9 | 2597 | + ignore: 5.2.0 |
2696 | regexpp: 3.2.0 | 2598 | regexpp: 3.2.0 |
2697 | semver: 7.3.5 | 2599 | semver: 7.3.5 |
2698 | tsutils: 3.21.0_typescript@4.5.4 | 2600 | tsutils: 3.21.0_typescript@4.5.4 |
@@ -2701,25 +2603,7 @@ packages: | @@ -2701,25 +2603,7 @@ packages: | ||
2701 | - supports-color | 2603 | - supports-color |
2702 | dev: true | 2604 | dev: true |
2703 | 2605 | ||
2704 | - /@typescript-eslint/experimental-utils/5.7.0_eslint@8.5.0+typescript@4.5.4: | ||
2705 | - resolution: {integrity: sha512-u57eZ5FbEpzN5kSjmVrSesovWslH2ZyNPnaXQMXWgH57d5+EVHEt76W75vVuI9qKZ5BMDKNfRN+pxcPEjQjb2A==} | ||
2706 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | ||
2707 | - peerDependencies: | ||
2708 | - eslint: '*' | ||
2709 | - dependencies: | ||
2710 | - '@types/json-schema': 7.0.9 | ||
2711 | - '@typescript-eslint/scope-manager': 5.7.0 | ||
2712 | - '@typescript-eslint/types': 5.7.0 | ||
2713 | - '@typescript-eslint/typescript-estree': 5.7.0_typescript@4.5.4 | ||
2714 | - eslint: 8.5.0 | ||
2715 | - eslint-scope: 5.1.1 | ||
2716 | - eslint-utils: 3.0.0_eslint@8.5.0 | ||
2717 | - transitivePeerDependencies: | ||
2718 | - - supports-color | ||
2719 | - - typescript | ||
2720 | - dev: true | ||
2721 | - | ||
2722 | - /@typescript-eslint/experimental-utils/5.8.1_eslint@8.5.0+typescript@4.5.4: | 2606 | + /@typescript-eslint/experimental-utils/5.8.1_eslint@8.7.0+typescript@4.5.4: |
2723 | resolution: {integrity: sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==} | 2607 | resolution: {integrity: sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==} |
2724 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2608 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2725 | peerDependencies: | 2609 | peerDependencies: |
@@ -2729,16 +2613,16 @@ packages: | @@ -2729,16 +2613,16 @@ packages: | ||
2729 | '@typescript-eslint/scope-manager': 5.8.1 | 2613 | '@typescript-eslint/scope-manager': 5.8.1 |
2730 | '@typescript-eslint/types': 5.8.1 | 2614 | '@typescript-eslint/types': 5.8.1 |
2731 | '@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4 | 2615 | '@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4 |
2732 | - eslint: 8.5.0 | 2616 | + eslint: 8.7.0 |
2733 | eslint-scope: 5.1.1 | 2617 | eslint-scope: 5.1.1 |
2734 | - eslint-utils: 3.0.0_eslint@8.5.0 | 2618 | + eslint-utils: 3.0.0_eslint@8.7.0 |
2735 | transitivePeerDependencies: | 2619 | transitivePeerDependencies: |
2736 | - supports-color | 2620 | - supports-color |
2737 | - typescript | 2621 | - typescript |
2738 | dev: true | 2622 | dev: true |
2739 | 2623 | ||
2740 | - /@typescript-eslint/parser/5.8.1_eslint@8.5.0+typescript@4.5.4: | ||
2741 | - resolution: {integrity: sha512-K1giKHAjHuyB421SoXMXFHHVI4NdNY603uKw92++D3qyxSeYvC10CBJ/GE5Thpo4WTUvu1mmJI2/FFkz38F2Gw==} | 2624 | + /@typescript-eslint/parser/5.10.0_eslint@8.7.0+typescript@4.5.4: |
2625 | + resolution: {integrity: sha512-pJB2CCeHWtwOAeIxv8CHVGJhI5FNyJAIpx5Pt72YkK3QfEzt6qAlXZuyaBmyfOdM62qU0rbxJzNToPTVeJGrQw==} | ||
2742 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2626 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2743 | peerDependencies: | 2627 | peerDependencies: |
2744 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | 2628 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 |
@@ -2746,23 +2630,23 @@ packages: | @@ -2746,23 +2630,23 @@ packages: | ||
2746 | peerDependenciesMeta: | 2630 | peerDependenciesMeta: |
2747 | typescript: | 2631 | typescript: |
2748 | optional: true | 2632 | optional: true |
2749 | - dependencies: | ||
2750 | - '@typescript-eslint/scope-manager': 5.8.1 | ||
2751 | - '@typescript-eslint/types': 5.8.1 | ||
2752 | - '@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4 | 2633 | + dependencies: |
2634 | + '@typescript-eslint/scope-manager': 5.10.0 | ||
2635 | + '@typescript-eslint/types': 5.10.0 | ||
2636 | + '@typescript-eslint/typescript-estree': 5.10.0_typescript@4.5.4 | ||
2753 | debug: 4.3.3 | 2637 | debug: 4.3.3 |
2754 | - eslint: 8.5.0 | 2638 | + eslint: 8.7.0 |
2755 | typescript: 4.5.4 | 2639 | typescript: 4.5.4 |
2756 | transitivePeerDependencies: | 2640 | transitivePeerDependencies: |
2757 | - supports-color | 2641 | - supports-color |
2758 | dev: true | 2642 | dev: true |
2759 | 2643 | ||
2760 | - /@typescript-eslint/scope-manager/5.7.0: | ||
2761 | - resolution: {integrity: sha512-7mxR520DGq5F7sSSgM0HSSMJ+TFUymOeFRMfUfGFAVBv8BR+Jv1vHgAouYUvWRZeszVBJlLcc9fDdktxb5kmxA==} | 2644 | + /@typescript-eslint/scope-manager/5.10.0: |
2645 | + resolution: {integrity: sha512-tgNgUgb4MhqK6DoKn3RBhyZ9aJga7EQrw+2/OiDk5hKf3pTVZWyqBi7ukP+Z0iEEDMF5FDa64LqODzlfE4O/Dg==} | ||
2762 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2646 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2763 | dependencies: | 2647 | dependencies: |
2764 | - '@typescript-eslint/types': 5.7.0 | ||
2765 | - '@typescript-eslint/visitor-keys': 5.7.0 | 2648 | + '@typescript-eslint/types': 5.10.0 |
2649 | + '@typescript-eslint/visitor-keys': 5.10.0 | ||
2766 | dev: true | 2650 | dev: true |
2767 | 2651 | ||
2768 | /@typescript-eslint/scope-manager/5.8.1: | 2652 | /@typescript-eslint/scope-manager/5.8.1: |
@@ -2773,8 +2657,27 @@ packages: | @@ -2773,8 +2657,27 @@ packages: | ||
2773 | '@typescript-eslint/visitor-keys': 5.8.1 | 2657 | '@typescript-eslint/visitor-keys': 5.8.1 |
2774 | dev: true | 2658 | dev: true |
2775 | 2659 | ||
2776 | - /@typescript-eslint/types/5.7.0: | ||
2777 | - resolution: {integrity: sha512-5AeYIF5p2kAneIpnLFve8g50VyAjq7udM7ApZZ9JYjdPjkz0LvODfuSHIDUVnIuUoxafoWzpFyU7Sqbxgi79mA==} | 2660 | + /@typescript-eslint/type-utils/5.10.0_eslint@8.7.0+typescript@4.5.4: |
2661 | + resolution: {integrity: sha512-TzlyTmufJO5V886N+hTJBGIfnjQDQ32rJYxPaeiyWKdjsv2Ld5l8cbS7pxim4DeNs62fKzRSt8Q14Evs4JnZyQ==} | ||
2662 | + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | ||
2663 | + peerDependencies: | ||
2664 | + eslint: '*' | ||
2665 | + typescript: '*' | ||
2666 | + peerDependenciesMeta: | ||
2667 | + typescript: | ||
2668 | + optional: true | ||
2669 | + dependencies: | ||
2670 | + '@typescript-eslint/utils': 5.10.0_eslint@8.7.0+typescript@4.5.4 | ||
2671 | + debug: 4.3.3 | ||
2672 | + eslint: 8.7.0 | ||
2673 | + tsutils: 3.21.0_typescript@4.5.4 | ||
2674 | + typescript: 4.5.4 | ||
2675 | + transitivePeerDependencies: | ||
2676 | + - supports-color | ||
2677 | + dev: true | ||
2678 | + | ||
2679 | + /@typescript-eslint/types/5.10.0: | ||
2680 | + resolution: {integrity: sha512-wUljCgkqHsMZbw60IbOqT/puLfyqqD5PquGiBo1u1IS3PLxdi3RDGlyf032IJyh+eQoGhz9kzhtZa+VC4eWTlQ==} | ||
2778 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2681 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2779 | dev: true | 2682 | dev: true |
2780 | 2683 | ||
@@ -2783,8 +2686,8 @@ packages: | @@ -2783,8 +2686,8 @@ packages: | ||
2783 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2686 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2784 | dev: true | 2687 | dev: true |
2785 | 2688 | ||
2786 | - /@typescript-eslint/typescript-estree/5.7.0_typescript@4.5.4: | ||
2787 | - resolution: {integrity: sha512-aO1Ql+izMrTnPj5aFFlEJkpD4jRqC4Gwhygu2oHK2wfVQpmOPbyDSveJ+r/NQo+PWV43M6uEAeLVbTi09dFLhg==} | 2689 | + /@typescript-eslint/typescript-estree/5.10.0_typescript@4.5.4: |
2690 | + resolution: {integrity: sha512-x+7e5IqfwLwsxTdliHRtlIYkgdtYXzE0CkFeV6ytAqq431ZyxCFzNMNR5sr3WOlIG/ihVZr9K/y71VHTF/DUQA==} | ||
2788 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2691 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2789 | peerDependencies: | 2692 | peerDependencies: |
2790 | typescript: '*' | 2693 | typescript: '*' |
@@ -2792,8 +2695,8 @@ packages: | @@ -2792,8 +2695,8 @@ packages: | ||
2792 | typescript: | 2695 | typescript: |
2793 | optional: true | 2696 | optional: true |
2794 | dependencies: | 2697 | dependencies: |
2795 | - '@typescript-eslint/types': 5.7.0 | ||
2796 | - '@typescript-eslint/visitor-keys': 5.7.0 | 2698 | + '@typescript-eslint/types': 5.10.0 |
2699 | + '@typescript-eslint/visitor-keys': 5.10.0 | ||
2797 | debug: 4.3.3 | 2700 | debug: 4.3.3 |
2798 | globby: 11.0.4 | 2701 | globby: 11.0.4 |
2799 | is-glob: 4.0.3 | 2702 | is-glob: 4.0.3 |
@@ -2825,12 +2728,30 @@ packages: | @@ -2825,12 +2728,30 @@ packages: | ||
2825 | - supports-color | 2728 | - supports-color |
2826 | dev: true | 2729 | dev: true |
2827 | 2730 | ||
2828 | - /@typescript-eslint/visitor-keys/5.7.0: | ||
2829 | - resolution: {integrity: sha512-hdohahZ4lTFcglZSJ3DGdzxQHBSxsLVqHzkiOmKi7xVAWC4y2c1bIMKmPJSrA4aOEoRUPOKQ87Y/taC7yVHpFg==} | 2731 | + /@typescript-eslint/utils/5.10.0_eslint@8.7.0+typescript@4.5.4: |
2732 | + resolution: {integrity: sha512-IGYwlt1CVcFoE2ueW4/ioEwybR60RAdGeiJX/iDAw0t5w0wK3S7QncDwpmsM70nKgGTuVchEWB8lwZwHqPAWRg==} | ||
2830 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2733 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2734 | + peerDependencies: | ||
2735 | + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | ||
2831 | dependencies: | 2736 | dependencies: |
2832 | - '@typescript-eslint/types': 5.7.0 | ||
2833 | - eslint-visitor-keys: 3.1.0 | 2737 | + '@types/json-schema': 7.0.9 |
2738 | + '@typescript-eslint/scope-manager': 5.10.0 | ||
2739 | + '@typescript-eslint/types': 5.10.0 | ||
2740 | + '@typescript-eslint/typescript-estree': 5.10.0_typescript@4.5.4 | ||
2741 | + eslint: 8.7.0 | ||
2742 | + eslint-scope: 5.1.1 | ||
2743 | + eslint-utils: 3.0.0_eslint@8.7.0 | ||
2744 | + transitivePeerDependencies: | ||
2745 | + - supports-color | ||
2746 | + - typescript | ||
2747 | + dev: true | ||
2748 | + | ||
2749 | + /@typescript-eslint/visitor-keys/5.10.0: | ||
2750 | + resolution: {integrity: sha512-GMxj0K1uyrFLPKASLmZzCuSddmjZVbVj3Ouy5QVuIGKZopxvOr24JsS7gruz6C3GExE01mublZ3mIBOaon9zuQ==} | ||
2751 | + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | ||
2752 | + dependencies: | ||
2753 | + '@typescript-eslint/types': 5.10.0 | ||
2754 | + eslint-visitor-keys: 3.2.0 | ||
2834 | dev: true | 2755 | dev: true |
2835 | 2756 | ||
2836 | /@typescript-eslint/visitor-keys/5.8.1: | 2757 | /@typescript-eslint/visitor-keys/5.8.1: |
@@ -2838,10 +2759,10 @@ packages: | @@ -2838,10 +2759,10 @@ packages: | ||
2838 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 2759 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2839 | dependencies: | 2760 | dependencies: |
2840 | '@typescript-eslint/types': 5.8.1 | 2761 | '@typescript-eslint/types': 5.8.1 |
2841 | - eslint-visitor-keys: 3.1.0 | 2762 | + eslint-visitor-keys: 3.2.0 |
2842 | dev: true | 2763 | dev: true |
2843 | 2764 | ||
2844 | - /@vitejs/plugin-legacy/1.6.4_vite@2.7.8: | 2765 | + /@vitejs/plugin-legacy/1.6.4_vite@2.8.0-beta.2: |
2845 | resolution: {integrity: sha512-geH2F3hTRN++E4n9NZ0JFumxIWUKqW4FA9PAgM7Q6RvUOUUYW4tlURhEmCBYfZSN24H/yX3mEolX+wFVErsAYQ==} | 2766 | resolution: {integrity: sha512-geH2F3hTRN++E4n9NZ0JFumxIWUKqW4FA9PAgM7Q6RvUOUUYW4tlURhEmCBYfZSN24H/yX3mEolX+wFVErsAYQ==} |
2846 | engines: {node: '>=12.0.0'} | 2767 | engines: {node: '>=12.0.0'} |
2847 | peerDependencies: | 2768 | peerDependencies: |
@@ -2852,7 +2773,7 @@ packages: | @@ -2852,7 +2773,7 @@ packages: | ||
2852 | magic-string: 0.25.7 | 2773 | magic-string: 0.25.7 |
2853 | regenerator-runtime: 0.13.9 | 2774 | regenerator-runtime: 0.13.9 |
2854 | systemjs: 6.11.0 | 2775 | systemjs: 6.11.0 |
2855 | - vite: 2.7.8_less@4.1.2 | 2776 | + vite: 2.8.0-beta.2_less@4.1.2 |
2856 | dev: true | 2777 | dev: true |
2857 | 2778 | ||
2858 | /@vitejs/plugin-vue-jsx/1.3.3: | 2779 | /@vitejs/plugin-vue-jsx/1.3.3: |
@@ -2869,68 +2790,70 @@ packages: | @@ -2869,68 +2790,70 @@ packages: | ||
2869 | - supports-color | 2790 | - supports-color |
2870 | dev: true | 2791 | dev: true |
2871 | 2792 | ||
2872 | - /@vitejs/plugin-vue/2.0.1_vite@2.7.8+vue@3.2.26: | 2793 | + /@vitejs/plugin-vue/2.0.1_vite@2.8.0-beta.2+vue@3.2.27: |
2873 | resolution: {integrity: sha512-wtdMnGVvys9K8tg+DxowU1ytTrdVveXr3LzdhaKakysgGXyrsfaeds2cDywtvujEASjWOwWL/OgWM+qoeM8Plg==} | 2794 | resolution: {integrity: sha512-wtdMnGVvys9K8tg+DxowU1ytTrdVveXr3LzdhaKakysgGXyrsfaeds2cDywtvujEASjWOwWL/OgWM+qoeM8Plg==} |
2874 | engines: {node: '>=12.0.0'} | 2795 | engines: {node: '>=12.0.0'} |
2875 | peerDependencies: | 2796 | peerDependencies: |
2876 | vite: ^2.5.10 | 2797 | vite: ^2.5.10 |
2877 | vue: ^3.2.25 | 2798 | vue: ^3.2.25 |
2878 | dependencies: | 2799 | dependencies: |
2879 | - vite: 2.7.8_less@4.1.2 | ||
2880 | - vue: 3.2.26 | 2800 | + vite: 2.8.0-beta.2_less@4.1.2 |
2801 | + vue: 3.2.27 | ||
2881 | dev: true | 2802 | dev: true |
2882 | 2803 | ||
2883 | - /@volar/code-gen/0.30.1: | ||
2884 | - resolution: {integrity: sha512-qPT0ZGzLaaUArZ1b5qcso2GAFpgjxsPDRXnq0lgsSOpNO6lXJN5ZcWzFZXYPjMJSV1Rkm0ehK5tSUD+sD+pPWg==} | 2804 | + /@volar/code-gen/0.30.5: |
2805 | + resolution: {integrity: sha512-NOxmWWhy7mC7f4J11wetsWP93YBw86sFMWS+uO4yWhzaooDycX4wUe03MNOEZpynoaSZvi3WSbiLf8rLWHtW/A==} | ||
2885 | dependencies: | 2806 | dependencies: |
2886 | - '@volar/shared': 0.30.1 | ||
2887 | - '@volar/source-map': 0.30.1 | 2807 | + '@volar/shared': 0.30.5 |
2808 | + '@volar/source-map': 0.30.5 | ||
2888 | dev: true | 2809 | dev: true |
2889 | 2810 | ||
2890 | - /@volar/html2pug/0.30.1: | ||
2891 | - resolution: {integrity: sha512-ojJPrb4qSLrVNl9LTtdjZ5MFyeHmwJK4OVPTgFc/lyQ94nPS9JHba86SaTwDb2XEgiXBWQVEo12bRr3lW9H2+Q==} | 2811 | + /@volar/html2pug/0.30.5: |
2812 | + resolution: {integrity: sha512-UBYlgb6w/2zf9a7/k8NauSuExTPwq4AsmypigchDl1l9EOdLqzq736JdlGi9e2llDEdBUbZZF/Ba8YUjSHJMbw==} | ||
2892 | dependencies: | 2813 | dependencies: |
2893 | domelementtype: 2.2.0 | 2814 | domelementtype: 2.2.0 |
2894 | - domhandler: 4.2.2 | 2815 | + domhandler: 4.3.0 |
2895 | htmlparser2: 7.2.0 | 2816 | htmlparser2: 7.2.0 |
2896 | pug: 3.0.2 | 2817 | pug: 3.0.2 |
2897 | dev: true | 2818 | dev: true |
2898 | 2819 | ||
2899 | - /@volar/shared/0.30.1: | ||
2900 | - resolution: {integrity: sha512-6F5yQYeN+gbXAKplxHDvj4Ei+rHCjNhwkfZnGpaSpEU92uSI2vK/HfEdd/zTKdAZpwz0RjliNuFoXLi6umtQ0w==} | 2820 | + /@volar/shared/0.30.5: |
2821 | + resolution: {integrity: sha512-fB8BIoCyKcK8D3hroIpn5vCTlxqvFv+R+ocV6fvbn/5Kgo/HW1MfcDf6wLgV6iX2WizRChmBHewSKD0GLyEyZQ==} | ||
2901 | dependencies: | 2822 | dependencies: |
2902 | upath: 2.0.1 | 2823 | upath: 2.0.1 |
2824 | + vscode-html-languageservice: 4.2.1 | ||
2903 | vscode-jsonrpc: 8.0.0-next.4 | 2825 | vscode-jsonrpc: 8.0.0-next.4 |
2904 | vscode-uri: 3.0.2 | 2826 | vscode-uri: 3.0.2 |
2905 | dev: true | 2827 | dev: true |
2906 | 2828 | ||
2907 | - /@volar/source-map/0.30.1: | ||
2908 | - resolution: {integrity: sha512-QGi36KBGHZ4gq81jPSi3W2wRcpso9Apd59AZOv/H98k5hU9zo8wA5hwartZHiybTlT1q/0Yno3agSj+vK2vocw==} | 2829 | + /@volar/source-map/0.30.5: |
2830 | + resolution: {integrity: sha512-zBmYuHZfYP67pfRiqRJQiifNEwSnn3F1Jew2+BRlf6gQwwDRrsEyzNN6Y3C9huoWPIIz+c3fQDZjnVsDW6JR6g==} | ||
2909 | dependencies: | 2831 | dependencies: |
2910 | - '@volar/shared': 0.30.1 | 2832 | + '@volar/shared': 0.30.5 |
2833 | + vscode-languageserver-textdocument: 1.0.3 | ||
2911 | dev: true | 2834 | dev: true |
2912 | 2835 | ||
2913 | - /@volar/transforms/0.30.1: | ||
2914 | - resolution: {integrity: sha512-dWFyfQGLoZ8LZI93zud0c5uoCdlkwDBi90G/XaaKfXxkX+3eiJrM0lJ/d1Nc0L04t9mb28I5hpVK68vH90+Tlw==} | 2836 | + /@volar/transforms/0.30.5: |
2837 | + resolution: {integrity: sha512-/ek5qrXmYZTonehLN5RKTL4LyfcG28vcB/+YKx1rnp+WK8lGqOFmkj2PUiJH0ZHQ3ymuolfB549Xl0r1RCqKJQ==} | ||
2915 | dependencies: | 2838 | dependencies: |
2916 | - '@volar/shared': 0.30.1 | ||
2917 | - vscode-languageserver: 8.0.0-next.5 | 2839 | + '@volar/shared': 0.30.5 |
2840 | + vscode-languageserver-types: 3.17.0-next.5 | ||
2918 | dev: true | 2841 | dev: true |
2919 | 2842 | ||
2920 | - /@volar/vue-code-gen/0.30.1: | ||
2921 | - resolution: {integrity: sha512-+0egr84YOYLudP6jRXRm+xtAL92GTPaq0U0lsorLTBp/MB14Fap6HMUr/LEeNB5tnND36UQJiUWHM5eTDAAb4Q==} | 2843 | + /@volar/vue-code-gen/0.30.5: |
2844 | + resolution: {integrity: sha512-jeLwTVT2JAL/YcYO5NfwQENG7/BYT03suiylC6cHDdHO/AcMA28hmMlki2UNFNSizZj8U0WSnFzk9tp0SuuqlA==} | ||
2922 | dependencies: | 2845 | dependencies: |
2923 | - '@volar/code-gen': 0.30.1 | ||
2924 | - '@volar/shared': 0.30.1 | ||
2925 | - '@volar/source-map': 0.30.1 | ||
2926 | - '@vue/compiler-core': 3.2.26 | ||
2927 | - '@vue/compiler-dom': 3.2.26 | ||
2928 | - '@vue/shared': 3.2.26 | 2846 | + '@volar/code-gen': 0.30.5 |
2847 | + '@volar/shared': 0.30.5 | ||
2848 | + '@volar/source-map': 0.30.5 | ||
2849 | + '@vue/compiler-core': 3.2.27 | ||
2850 | + '@vue/compiler-dom': 3.2.27 | ||
2851 | + '@vue/shared': 3.2.27 | ||
2929 | upath: 2.0.1 | 2852 | upath: 2.0.1 |
2930 | dev: true | 2853 | dev: true |
2931 | 2854 | ||
2932 | - /@vscode/emmet-helper/2.8.2: | ||
2933 | - resolution: {integrity: sha512-A/+pkBYQq2JTow1A2flfTmEOmiF780KpdkoX7VBjQ7wujeA+CFUPd17YdeIa9aim20+J5Jp7SFujPDwVFiQucQ==} | 2855 | + /@vscode/emmet-helper/2.8.3: |
2856 | + resolution: {integrity: sha512-dkTSL+BaBBS8gFgPm/GMOU+XfxaMyI+Fl1IUYxEi8Iv24RfHf9/q2eCpV2hs7sncLcoKWEbMYe5gv4Ppmp2Oxw==} | ||
2934 | dependencies: | 2857 | dependencies: |
2935 | emmet: 2.3.4 | 2858 | emmet: 2.3.4 |
2936 | jsonc-parser: 2.3.1 | 2859 | jsonc-parser: 2.3.1 |
@@ -2961,39 +2884,39 @@ packages: | @@ -2961,39 +2884,39 @@ packages: | ||
2961 | - supports-color | 2884 | - supports-color |
2962 | dev: true | 2885 | dev: true |
2963 | 2886 | ||
2964 | - /@vue/compiler-core/3.2.26: | ||
2965 | - resolution: {integrity: sha512-N5XNBobZbaASdzY9Lga2D9Lul5vdCIOXvUMd6ThcN8zgqQhPKfCV+wfAJNNJKQkSHudnYRO2gEB+lp0iN3g2Tw==} | 2887 | + /@vue/compiler-core/3.2.27: |
2888 | + resolution: {integrity: sha512-JyxAglSM/pb9paG5ZNuKrf5IUpzLzQA3khjWGF9oESELCLQlt6O3YyPMR2A69wIpYWrf5mScZ8YY8TJKOI/1kQ==} | ||
2966 | dependencies: | 2889 | dependencies: |
2967 | - '@babel/parser': 7.16.4 | ||
2968 | - '@vue/shared': 3.2.26 | 2890 | + '@babel/parser': 7.16.6 |
2891 | + '@vue/shared': 3.2.27 | ||
2969 | estree-walker: 2.0.2 | 2892 | estree-walker: 2.0.2 |
2970 | source-map: 0.6.1 | 2893 | source-map: 0.6.1 |
2971 | 2894 | ||
2972 | - /@vue/compiler-dom/3.2.26: | ||
2973 | - resolution: {integrity: sha512-smBfaOW6mQDxcT3p9TKT6mE22vjxjJL50GFVJiI0chXYGU/xzC05QRGrW3HHVuJrmLTLx5zBhsZ2dIATERbarg==} | 2895 | + /@vue/compiler-dom/3.2.27: |
2896 | + resolution: {integrity: sha512-NyQ7nEbopUBPUMHM4c3FPCbFbnQwptoPjW5Y5qfJ7hfiCNhOuhQsDNqi5JYKBxfpxiFNwjcN9F8t1AsnLrDloQ==} | ||
2974 | dependencies: | 2897 | dependencies: |
2975 | - '@vue/compiler-core': 3.2.26 | ||
2976 | - '@vue/shared': 3.2.26 | 2898 | + '@vue/compiler-core': 3.2.27 |
2899 | + '@vue/shared': 3.2.27 | ||
2977 | 2900 | ||
2978 | - /@vue/compiler-sfc/3.2.26: | ||
2979 | - resolution: {integrity: sha512-ePpnfktV90UcLdsDQUh2JdiTuhV0Skv2iYXxfNMOK/F3Q+2BO0AulcVcfoksOpTJGmhhfosWfMyEaEf0UaWpIw==} | 2901 | + /@vue/compiler-sfc/3.2.27: |
2902 | + resolution: {integrity: sha512-WyecUhLN5UAQAr2QlmG2nA56OEnhZJaBnSw0G1tazb9rwDuK0V9tnbIXbQgmQlx+x4sJxgg61yWGcIXfilTl3A==} | ||
2980 | dependencies: | 2903 | dependencies: |
2981 | - '@babel/parser': 7.16.4 | ||
2982 | - '@vue/compiler-core': 3.2.26 | ||
2983 | - '@vue/compiler-dom': 3.2.26 | ||
2984 | - '@vue/compiler-ssr': 3.2.26 | ||
2985 | - '@vue/reactivity-transform': 3.2.26 | ||
2986 | - '@vue/shared': 3.2.26 | 2904 | + '@babel/parser': 7.16.6 |
2905 | + '@vue/compiler-core': 3.2.27 | ||
2906 | + '@vue/compiler-dom': 3.2.27 | ||
2907 | + '@vue/compiler-ssr': 3.2.27 | ||
2908 | + '@vue/reactivity-transform': 3.2.27 | ||
2909 | + '@vue/shared': 3.2.27 | ||
2987 | estree-walker: 2.0.2 | 2910 | estree-walker: 2.0.2 |
2988 | magic-string: 0.25.7 | 2911 | magic-string: 0.25.7 |
2989 | postcss: 8.4.5 | 2912 | postcss: 8.4.5 |
2990 | source-map: 0.6.1 | 2913 | source-map: 0.6.1 |
2991 | 2914 | ||
2992 | - /@vue/compiler-ssr/3.2.26: | ||
2993 | - resolution: {integrity: sha512-2mywLX0ODc4Zn8qBoA2PDCsLEZfpUGZcyoFRLSOjyGGK6wDy2/5kyDOWtf0S0UvtoyVq95OTSGIALjZ4k2q/ag==} | 2915 | + /@vue/compiler-ssr/3.2.27: |
2916 | + resolution: {integrity: sha512-+l09t319iV7HVSrXfBw9OLwMZIPOFTXmHjZ61Bc5ZcwKqOYAR4uTurKpoXAfcSc5qs/q6WdE9jY3nrP0LUEMQQ==} | ||
2994 | dependencies: | 2917 | dependencies: |
2995 | - '@vue/compiler-dom': 3.2.26 | ||
2996 | - '@vue/shared': 3.2.26 | 2918 | + '@vue/compiler-dom': 3.2.27 |
2919 | + '@vue/shared': 3.2.27 | ||
2997 | 2920 | ||
2998 | /@vue/devtools-api/6.0.0-beta.20.1: | 2921 | /@vue/devtools-api/6.0.0-beta.20.1: |
2999 | resolution: {integrity: sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==} | 2922 | resolution: {integrity: sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==} |
@@ -3003,58 +2926,58 @@ packages: | @@ -3003,58 +2926,58 @@ packages: | ||
3003 | resolution: {integrity: sha512-FqC4s3pm35qGVeXRGOjTsRzlkJjrBLriDS9YXbflHLsfA9FrcKzIyWnLXoNm+/7930E8rRakXuAc2QkC50swAw==} | 2926 | resolution: {integrity: sha512-FqC4s3pm35qGVeXRGOjTsRzlkJjrBLriDS9YXbflHLsfA9FrcKzIyWnLXoNm+/7930E8rRakXuAc2QkC50swAw==} |
3004 | dev: false | 2927 | dev: false |
3005 | 2928 | ||
3006 | - /@vue/reactivity-transform/3.2.26: | ||
3007 | - resolution: {integrity: sha512-XKMyuCmzNA7nvFlYhdKwD78rcnmPb7q46uoR00zkX6yZrUmcCQ5OikiwUEVbvNhL5hBJuvbSO95jB5zkUon+eQ==} | 2929 | + /@vue/reactivity-transform/3.2.27: |
2930 | + resolution: {integrity: sha512-67//61ObGxGnVrPhjygocb24eYUh+TFMhkm7szm8v5XdKXjkNl7qgIOflwGvUnwuIRJmr9nZ7+PvY0fL+H2upA==} | ||
3008 | dependencies: | 2931 | dependencies: |
3009 | - '@babel/parser': 7.16.4 | ||
3010 | - '@vue/compiler-core': 3.2.26 | ||
3011 | - '@vue/shared': 3.2.26 | 2932 | + '@babel/parser': 7.16.6 |
2933 | + '@vue/compiler-core': 3.2.27 | ||
2934 | + '@vue/shared': 3.2.27 | ||
3012 | estree-walker: 2.0.2 | 2935 | estree-walker: 2.0.2 |
3013 | magic-string: 0.25.7 | 2936 | magic-string: 0.25.7 |
3014 | 2937 | ||
3015 | - /@vue/reactivity/3.2.26: | ||
3016 | - resolution: {integrity: sha512-h38bxCZLW6oFJVDlCcAiUKFnXI8xP8d+eO0pcDxx+7dQfSPje2AO6M9S9QO6MrxQB7fGP0DH0dYQ8ksf6hrXKQ==} | 2938 | + /@vue/reactivity/3.2.27: |
2939 | + resolution: {integrity: sha512-QPfIQEJidRGIu/mPexhcB4csp1LEg2Nr+/QE72MnXs/OYDtFErhC9FxIyymkxp/xvAgL5wsnSOuDD6zWF42vRQ==} | ||
3017 | dependencies: | 2940 | dependencies: |
3018 | - '@vue/shared': 3.2.26 | 2941 | + '@vue/shared': 3.2.27 |
3019 | 2942 | ||
3020 | - /@vue/runtime-core/3.2.26: | ||
3021 | - resolution: {integrity: sha512-BcYi7qZ9Nn+CJDJrHQ6Zsmxei2hDW0L6AB4vPvUQGBm2fZyC0GXd/4nVbyA2ubmuhctD5RbYY8L+5GUJszv9mQ==} | 2943 | + /@vue/runtime-core/3.2.27: |
2944 | + resolution: {integrity: sha512-NJrjuViHJyrT4bwIocbE4XDaDlA1Pj61pQlneZZdFEvgdMLlhzCCiJ4WZnWcohYQeisUAZjEFKK8GjQieDPFbw==} | ||
3022 | dependencies: | 2945 | dependencies: |
3023 | - '@vue/reactivity': 3.2.26 | ||
3024 | - '@vue/shared': 3.2.26 | 2946 | + '@vue/reactivity': 3.2.27 |
2947 | + '@vue/shared': 3.2.27 | ||
3025 | dev: false | 2948 | dev: false |
3026 | 2949 | ||
3027 | - /@vue/runtime-dom/3.2.26: | ||
3028 | - resolution: {integrity: sha512-dY56UIiZI+gjc4e8JQBwAifljyexfVCkIAu/WX8snh8vSOt/gMSEGwPRcl2UpYpBYeyExV8WCbgvwWRNt9cHhQ==} | 2950 | + /@vue/runtime-dom/3.2.27: |
2951 | + resolution: {integrity: sha512-tlnKkvBSkV7MPUp/wRFsYcv67U1rUeZTPfpPzq5Kpmw5NNGkY6J075fFBH2k0MNxDucXS+qfStNrxAyGTUMkSA==} | ||
3029 | dependencies: | 2952 | dependencies: |
3030 | - '@vue/runtime-core': 3.2.26 | ||
3031 | - '@vue/shared': 3.2.26 | 2953 | + '@vue/runtime-core': 3.2.27 |
2954 | + '@vue/shared': 3.2.27 | ||
3032 | csstype: 2.6.19 | 2955 | csstype: 2.6.19 |
3033 | dev: false | 2956 | dev: false |
3034 | 2957 | ||
3035 | - /@vue/server-renderer/3.2.26_vue@3.2.26: | ||
3036 | - resolution: {integrity: sha512-Jp5SggDUvvUYSBIvYEhy76t4nr1vapY/FIFloWmQzn7UxqaHrrBpbxrqPcTrSgGrcaglj0VBp22BKJNre4aA1w==} | 2958 | + /@vue/server-renderer/3.2.27_vue@3.2.27: |
2959 | + resolution: {integrity: sha512-dZnzkFCDe6A/GIe/F1LcG6lWpprHVh62DjTv8wubtkHwfJWOmOeHp+KvPDRrswL/L3ghsm+E31xY+pvkgM3pbQ==} | ||
3037 | peerDependencies: | 2960 | peerDependencies: |
3038 | - vue: 3.2.26 | 2961 | + vue: 3.2.27 |
3039 | dependencies: | 2962 | dependencies: |
3040 | - '@vue/compiler-ssr': 3.2.26 | ||
3041 | - '@vue/shared': 3.2.26 | ||
3042 | - vue: 3.2.26 | 2963 | + '@vue/compiler-ssr': 3.2.27 |
2964 | + '@vue/shared': 3.2.27 | ||
2965 | + vue: 3.2.27 | ||
3043 | dev: false | 2966 | dev: false |
3044 | 2967 | ||
3045 | - /@vue/shared/3.2.26: | ||
3046 | - resolution: {integrity: sha512-vPV6Cq+NIWbH5pZu+V+2QHE9y1qfuTq49uNWw4f7FDEeZaDU2H2cx5jcUZOAKW7qTrUS4k6qZPbMy1x4N96nbA==} | 2968 | + /@vue/shared/3.2.27: |
2969 | + resolution: {integrity: sha512-rpAn9k6O08Lvo7ekBIAnkOukX/4EsEQLPrRJBKhIEasMsOI5eX0f6mq1sDUSY7cgAqWw2d7QtP74CWxdXoyKxA==} | ||
3047 | 2970 | ||
3048 | - /@vue/test-utils/2.0.0-rc.18_vue@3.2.26: | 2971 | + /@vue/test-utils/2.0.0-rc.18_vue@3.2.27: |
3049 | resolution: {integrity: sha512-aifolXjVdsogjaLmDoZ0FU8vN+R67aWmg9OuVeED4w5Ij5GFQLrlhM19uhWe/r5xXUL4fXMk3pX5wW6FJP1NcQ==} | 2972 | resolution: {integrity: sha512-aifolXjVdsogjaLmDoZ0FU8vN+R67aWmg9OuVeED4w5Ij5GFQLrlhM19uhWe/r5xXUL4fXMk3pX5wW6FJP1NcQ==} |
3050 | peerDependencies: | 2973 | peerDependencies: |
3051 | vue: ^3.0.1 | 2974 | vue: ^3.0.1 |
3052 | dependencies: | 2975 | dependencies: |
3053 | - vue: 3.2.26 | 2976 | + vue: 3.2.27 |
3054 | dev: true | 2977 | dev: true |
3055 | 2978 | ||
3056 | - /@vueuse/core/7.4.1_vue@3.2.26: | ||
3057 | - resolution: {integrity: sha512-8UeLPCAieeQLXFHF1/28SIEK6ILLPb/4hp03hR+xkXF00gB/YUp0CEVcRAL9uQ8HTZa3S2T/jTISMc1ZjilM0A==} | 2979 | + /@vueuse/core/7.5.3_vue@3.2.27: |
2980 | + resolution: {integrity: sha512-D9j5ymHFMFRXQqCp0yZJkf/bvBGiz0MrKUa364p+L8dMyd5zyq2K1JmHyvoBd4xbTFRfmQ1h878u6YE5LCkDVQ==} | ||
3058 | peerDependencies: | 2981 | peerDependencies: |
3059 | '@vue/composition-api': ^1.1.0 | 2982 | '@vue/composition-api': ^1.1.0 |
3060 | vue: ^2.6.0 || ^3.2.0 | 2983 | vue: ^2.6.0 || ^3.2.0 |
@@ -3064,13 +2987,13 @@ packages: | @@ -3064,13 +2987,13 @@ packages: | ||
3064 | vue: | 2987 | vue: |
3065 | optional: true | 2988 | optional: true |
3066 | dependencies: | 2989 | dependencies: |
3067 | - '@vueuse/shared': 7.4.1_vue@3.2.26 | ||
3068 | - vue: 3.2.26 | ||
3069 | - vue-demi: 0.12.1_vue@3.2.26 | 2990 | + '@vueuse/shared': 7.5.3_vue@3.2.27 |
2991 | + vue: 3.2.27 | ||
2992 | + vue-demi: 0.12.1_vue@3.2.27 | ||
3070 | dev: false | 2993 | dev: false |
3071 | 2994 | ||
3072 | - /@vueuse/shared/7.4.1_vue@3.2.26: | ||
3073 | - resolution: {integrity: sha512-Pzb7XoHIcgPwwBJ5Ow9lZb0HTDyaLDV3pgxKauPGTMN9qvEylG06kUG+VTjJXkPsRtiGu46di8XyFeMw2dongA==} | 2995 | + /@vueuse/shared/7.5.3_vue@3.2.27: |
2996 | + resolution: {integrity: sha512-BJ71cxHN5VByW1S58Gl85NFJaQu93F7Vs7K/MuAKsIIuHm9PBbkR5Vxkg9ko9cBdiKVt+FNoo13BhdbA+Vwycg==} | ||
3074 | peerDependencies: | 2997 | peerDependencies: |
3075 | '@vue/composition-api': ^1.1.0 | 2998 | '@vue/composition-api': ^1.1.0 |
3076 | vue: ^2.6.0 || ^3.2.0 | 2999 | vue: ^2.6.0 || ^3.2.0 |
@@ -3080,30 +3003,30 @@ packages: | @@ -3080,30 +3003,30 @@ packages: | ||
3080 | vue: | 3003 | vue: |
3081 | optional: true | 3004 | optional: true |
3082 | dependencies: | 3005 | dependencies: |
3083 | - vue: 3.2.26 | ||
3084 | - vue-demi: 0.12.1_vue@3.2.26 | 3006 | + vue: 3.2.27 |
3007 | + vue-demi: 0.12.1_vue@3.2.27 | ||
3085 | dev: false | 3008 | dev: false |
3086 | 3009 | ||
3087 | - /@windicss/config/1.6.1: | ||
3088 | - resolution: {integrity: sha512-E4FKtWdYl5HwFknBQ+Z2JIF58TZiR4/ZiP8B30sfRxNlG6clh4agn5MJqTb4ER0MLkDb30Hugl2tGun0AQNbFw==} | 3010 | + /@windicss/config/1.6.3: |
3011 | + resolution: {integrity: sha512-1kjdy4tyYLD4sCB4DS+3Lt1Odnde03z4Rz3EUqyWJ7SiBEWMgRk1L797SsgEH4+W1DjLBZLs1SVYzaTO/3UdJA==} | ||
3089 | dependencies: | 3012 | dependencies: |
3090 | debug: 4.3.3 | 3013 | debug: 4.3.3 |
3091 | jiti: 1.12.9 | 3014 | jiti: 1.12.9 |
3092 | - windicss: 3.4.1 | 3015 | + windicss: 3.4.3 |
3093 | transitivePeerDependencies: | 3016 | transitivePeerDependencies: |
3094 | - supports-color | 3017 | - supports-color |
3095 | dev: true | 3018 | dev: true |
3096 | 3019 | ||
3097 | - /@windicss/plugin-utils/1.6.1: | ||
3098 | - resolution: {integrity: sha512-hFQY27bOr9SSpekIvSwBpIX25nR4cwrU5/1kJFqCwAzqyazvd7U9c/iI1E2sTEQOkPbpTTJkY2Act21Q70oSDQ==} | 3020 | + /@windicss/plugin-utils/1.6.3: |
3021 | + resolution: {integrity: sha512-tY20pAdV8YOlCj/5Teh078n/YbekbE5qOmlNgcl+S10KqitUGB9+Qss/xE0HULACmCXBO9XeLUcAPGao79lAnA==} | ||
3099 | dependencies: | 3022 | dependencies: |
3100 | - '@antfu/utils': 0.3.0 | ||
3101 | - '@windicss/config': 1.6.1 | 3023 | + '@antfu/utils': 0.4.0 |
3024 | + '@windicss/config': 1.6.3 | ||
3102 | debug: 4.3.3 | 3025 | debug: 4.3.3 |
3103 | - fast-glob: 3.2.7 | 3026 | + fast-glob: 3.2.11 |
3104 | magic-string: 0.25.7 | 3027 | magic-string: 0.25.7 |
3105 | micromatch: 4.0.4 | 3028 | micromatch: 4.0.4 |
3106 | - windicss: 3.4.1 | 3029 | + windicss: 3.4.3 |
3107 | transitivePeerDependencies: | 3030 | transitivePeerDependencies: |
3108 | - supports-color | 3031 | - supports-color |
3109 | dev: true | 3032 | dev: true |
@@ -3139,6 +3062,14 @@ packages: | @@ -3139,6 +3062,14 @@ packages: | ||
3139 | acorn: 8.6.0 | 3062 | acorn: 8.6.0 |
3140 | dev: true | 3063 | dev: true |
3141 | 3064 | ||
3065 | + /acorn-jsx/5.3.2_acorn@8.7.0: | ||
3066 | + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} | ||
3067 | + peerDependencies: | ||
3068 | + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 | ||
3069 | + dependencies: | ||
3070 | + acorn: 8.7.0 | ||
3071 | + dev: true | ||
3072 | + | ||
3142 | /acorn-walk/7.2.0: | 3073 | /acorn-walk/7.2.0: |
3143 | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} | 3074 | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} |
3144 | engines: {node: '>=0.4.0'} | 3075 | engines: {node: '>=0.4.0'} |
@@ -3161,6 +3092,12 @@ packages: | @@ -3161,6 +3092,12 @@ packages: | ||
3161 | hasBin: true | 3092 | hasBin: true |
3162 | dev: true | 3093 | dev: true |
3163 | 3094 | ||
3095 | + /acorn/8.7.0: | ||
3096 | + resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} | ||
3097 | + engines: {node: '>=0.4.0'} | ||
3098 | + hasBin: true | ||
3099 | + dev: true | ||
3100 | + | ||
3164 | /add-stream/1.0.0: | 3101 | /add-stream/1.0.0: |
3165 | resolution: {integrity: sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=} | 3102 | resolution: {integrity: sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=} |
3166 | dev: true | 3103 | dev: true |
@@ -3216,11 +3153,6 @@ packages: | @@ -3216,11 +3153,6 @@ packages: | ||
3216 | uri-js: 4.4.1 | 3153 | uri-js: 4.4.1 |
3217 | dev: true | 3154 | dev: true |
3218 | 3155 | ||
3219 | - /ansi-colors/4.1.1: | ||
3220 | - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} | ||
3221 | - engines: {node: '>=6'} | ||
3222 | - dev: true | ||
3223 | - | ||
3224 | /ansi-escapes/3.2.0: | 3156 | /ansi-escapes/3.2.0: |
3225 | resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} | 3157 | resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} |
3226 | engines: {node: '>=4'} | 3158 | engines: {node: '>=4'} |
@@ -3283,17 +3215,17 @@ packages: | @@ -3283,17 +3215,17 @@ packages: | ||
3283 | engines: {node: '>=12'} | 3215 | engines: {node: '>=12'} |
3284 | dev: true | 3216 | dev: true |
3285 | 3217 | ||
3286 | - /ant-design-vue/3.0.0-beta.3_ae87cbba5ec93a01f3fe1197df446ca3: | ||
3287 | - resolution: {integrity: sha512-filLiMc7zk+0l1AZ6nLk5nOil77Tm2M5FJZzS9Ce79z6pSX5mffWL3r8GWe/OAwr0g/SPmefHQfwtNL7/N1smg==} | 3218 | + /ant-design-vue/3.0.0-beta.7_1d3c0f59c01af099101b44516eefc99f: |
3219 | + resolution: {integrity: sha512-8ay9+AnleifI/Ji6DnbrBku1kwo3fPjNrxyqsBAfe573T4gML9AVpX2/CaJgc41ID9liJdNV8fChgVEckeVb1A==} | ||
3288 | peerDependencies: | 3220 | peerDependencies: |
3289 | '@vue/compiler-sfc': '>=3.1.0' | 3221 | '@vue/compiler-sfc': '>=3.1.0' |
3290 | vue: '>=3.1.0' | 3222 | vue: '>=3.1.0' |
3291 | dependencies: | 3223 | dependencies: |
3292 | '@ant-design/colors': 6.0.0 | 3224 | '@ant-design/colors': 6.0.0 |
3293 | - '@ant-design/icons-vue': 6.0.1_vue@3.2.26 | 3225 | + '@ant-design/icons-vue': 6.0.1_vue@3.2.27 |
3294 | '@babel/runtime': 7.16.3 | 3226 | '@babel/runtime': 7.16.3 |
3295 | '@simonwep/pickr': 1.8.2 | 3227 | '@simonwep/pickr': 1.8.2 |
3296 | - '@vue/compiler-sfc': 3.2.26 | 3228 | + '@vue/compiler-sfc': 3.2.27 |
3297 | array-tree-filter: 2.1.0 | 3229 | array-tree-filter: 2.1.0 |
3298 | async-validator: 4.0.7 | 3230 | async-validator: 4.0.7 |
3299 | dayjs: 1.10.7 | 3231 | dayjs: 1.10.7 |
@@ -3304,8 +3236,8 @@ packages: | @@ -3304,8 +3236,8 @@ packages: | ||
3304 | resize-observer-polyfill: 1.5.1 | 3236 | resize-observer-polyfill: 1.5.1 |
3305 | scroll-into-view-if-needed: 2.2.28 | 3237 | scroll-into-view-if-needed: 2.2.28 |
3306 | shallow-equal: 1.2.1 | 3238 | shallow-equal: 1.2.1 |
3307 | - vue: 3.2.26 | ||
3308 | - vue-types: 3.0.2_vue@3.2.26 | 3239 | + vue: 3.2.27 |
3240 | + vue-types: 3.0.2_vue@3.2.27 | ||
3309 | warning: 4.0.3 | 3241 | warning: 4.0.3 |
3310 | dev: false | 3242 | dev: false |
3311 | 3243 | ||
@@ -3426,25 +3358,33 @@ packages: | @@ -3426,25 +3358,33 @@ packages: | ||
3426 | hasBin: true | 3358 | hasBin: true |
3427 | dev: true | 3359 | dev: true |
3428 | 3360 | ||
3429 | - /autoprefixer/10.4.0_postcss@8.4.5: | ||
3430 | - resolution: {integrity: sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==} | 3361 | + /autoprefixer/10.4.2_postcss@8.4.5: |
3362 | + resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==} | ||
3431 | engines: {node: ^10 || ^12 || >=14} | 3363 | engines: {node: ^10 || ^12 || >=14} |
3432 | hasBin: true | 3364 | hasBin: true |
3433 | peerDependencies: | 3365 | peerDependencies: |
3434 | postcss: ^8.1.0 | 3366 | postcss: ^8.1.0 |
3435 | dependencies: | 3367 | dependencies: |
3436 | - browserslist: 4.18.1 | ||
3437 | - caniuse-lite: 1.0.30001283 | 3368 | + browserslist: 4.19.1 |
3369 | + caniuse-lite: 1.0.30001300 | ||
3438 | fraction.js: 4.1.2 | 3370 | fraction.js: 4.1.2 |
3439 | normalize-range: 0.1.2 | 3371 | normalize-range: 0.1.2 |
3440 | picocolors: 1.0.0 | 3372 | picocolors: 1.0.0 |
3441 | postcss: 8.4.5 | 3373 | postcss: 8.4.5 |
3442 | - postcss-value-parser: 4.1.0 | 3374 | + postcss-value-parser: 4.2.0 |
3443 | dev: true | 3375 | dev: true |
3444 | 3376 | ||
3445 | /axios/0.21.4_debug@4.3.2: | 3377 | /axios/0.21.4_debug@4.3.2: |
3446 | resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} | 3378 | resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} |
3447 | dependencies: | 3379 | dependencies: |
3380 | + follow-redirects: 1.14.5_debug@4.3.2 | ||
3381 | + transitivePeerDependencies: | ||
3382 | + - debug | ||
3383 | + dev: true | ||
3384 | + | ||
3385 | + /axios/0.21.4_debug@4.3.3: | ||
3386 | + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} | ||
3387 | + dependencies: | ||
3448 | follow-redirects: 1.14.5 | 3388 | follow-redirects: 1.14.5 |
3449 | transitivePeerDependencies: | 3389 | transitivePeerDependencies: |
3450 | - debug | 3390 | - debug |
@@ -3458,18 +3398,18 @@ packages: | @@ -3458,18 +3398,18 @@ packages: | ||
3458 | - debug | 3398 | - debug |
3459 | dev: false | 3399 | dev: false |
3460 | 3400 | ||
3461 | - /babel-jest/27.4.5_@babel+core@7.16.0: | ||
3462 | - resolution: {integrity: sha512-3uuUTjXbgtODmSv/DXO9nZfD52IyC2OYTFaXGRzL0kpykzroaquCrD5+lZNafTvZlnNqZHt5pb0M08qVBZnsnA==} | 3401 | + /babel-jest/27.4.6_@babel+core@7.16.5: |
3402 | + resolution: {integrity: sha512-qZL0JT0HS1L+lOuH+xC2DVASR3nunZi/ozGhpgauJHgmI7f8rudxf6hUjEHympdQ/J64CdKmPkgfJ+A3U6QCrg==} | ||
3463 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 3403 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
3464 | peerDependencies: | 3404 | peerDependencies: |
3465 | '@babel/core': ^7.8.0 | 3405 | '@babel/core': ^7.8.0 |
3466 | dependencies: | 3406 | dependencies: |
3467 | - '@babel/core': 7.16.0 | ||
3468 | - '@jest/transform': 27.4.5 | 3407 | + '@babel/core': 7.16.5 |
3408 | + '@jest/transform': 27.4.6 | ||
3469 | '@jest/types': 27.4.2 | 3409 | '@jest/types': 27.4.2 |
3470 | '@types/babel__core': 7.1.16 | 3410 | '@types/babel__core': 7.1.16 |
3471 | babel-plugin-istanbul: 6.1.1 | 3411 | babel-plugin-istanbul: 6.1.1 |
3472 | - babel-preset-jest: 27.4.0_@babel+core@7.16.0 | 3412 | + babel-preset-jest: 27.4.0_@babel+core@7.16.5 |
3473 | chalk: 4.1.2 | 3413 | chalk: 4.1.2 |
3474 | graceful-fs: 4.2.8 | 3414 | graceful-fs: 4.2.8 |
3475 | slash: 3.0.0 | 3415 | slash: 3.0.0 |
@@ -3506,62 +3446,42 @@ packages: | @@ -3506,62 +3446,42 @@ packages: | ||
3506 | '@types/babel__traverse': 7.14.2 | 3446 | '@types/babel__traverse': 7.14.2 |
3507 | dev: true | 3447 | dev: true |
3508 | 3448 | ||
3509 | - /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.0: | 3449 | + /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.5: |
3510 | resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==} | 3450 | resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==} |
3511 | peerDependencies: | 3451 | peerDependencies: |
3512 | '@babel/core': ^7.0.0-0 | 3452 | '@babel/core': ^7.0.0-0 |
3513 | dependencies: | 3453 | dependencies: |
3514 | '@babel/compat-data': 7.16.4 | 3454 | '@babel/compat-data': 7.16.4 |
3515 | - '@babel/core': 7.16.0 | ||
3516 | - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 | 3455 | + '@babel/core': 7.16.5 |
3456 | + '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.5 | ||
3517 | semver: 6.3.0 | 3457 | semver: 6.3.0 |
3518 | transitivePeerDependencies: | 3458 | transitivePeerDependencies: |
3519 | - supports-color | 3459 | - supports-color |
3520 | dev: true | 3460 | dev: true |
3521 | 3461 | ||
3522 | - /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.0: | 3462 | + /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.5: |
3523 | resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==} | 3463 | resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==} |
3524 | peerDependencies: | 3464 | peerDependencies: |
3525 | '@babel/core': ^7.0.0-0 | 3465 | '@babel/core': ^7.0.0-0 |
3526 | dependencies: | 3466 | dependencies: |
3527 | - '@babel/core': 7.16.0 | ||
3528 | - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 | 3467 | + '@babel/core': 7.16.5 |
3468 | + '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.5 | ||
3529 | core-js-compat: 3.19.1 | 3469 | core-js-compat: 3.19.1 |
3530 | transitivePeerDependencies: | 3470 | transitivePeerDependencies: |
3531 | - supports-color | 3471 | - supports-color |
3532 | dev: true | 3472 | dev: true |
3533 | 3473 | ||
3534 | - /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.0: | 3474 | + /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.5: |
3535 | resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==} | 3475 | resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==} |
3536 | peerDependencies: | 3476 | peerDependencies: |
3537 | '@babel/core': ^7.0.0-0 | 3477 | '@babel/core': ^7.0.0-0 |
3538 | dependencies: | 3478 | dependencies: |
3539 | - '@babel/core': 7.16.0 | ||
3540 | - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 | 3479 | + '@babel/core': 7.16.5 |
3480 | + '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.5 | ||
3541 | transitivePeerDependencies: | 3481 | transitivePeerDependencies: |
3542 | - supports-color | 3482 | - supports-color |
3543 | dev: true | 3483 | dev: true |
3544 | 3484 | ||
3545 | - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.0: | ||
3546 | - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} | ||
3547 | - peerDependencies: | ||
3548 | - '@babel/core': ^7.0.0 | ||
3549 | - dependencies: | ||
3550 | - '@babel/core': 7.16.0 | ||
3551 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 | ||
3552 | - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.16.0 | ||
3553 | - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 | ||
3554 | - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.0 | ||
3555 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 | ||
3556 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 | ||
3557 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 | ||
3558 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 | ||
3559 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 | ||
3560 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 | ||
3561 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 | ||
3562 | - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 | ||
3563 | - dev: true | ||
3564 | - | ||
3565 | /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.5: | 3485 | /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.5: |
3566 | resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} | 3486 | resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} |
3567 | peerDependencies: | 3487 | peerDependencies: |
@@ -3582,15 +3502,15 @@ packages: | @@ -3582,15 +3502,15 @@ packages: | ||
3582 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.5 | 3502 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.5 |
3583 | dev: true | 3503 | dev: true |
3584 | 3504 | ||
3585 | - /babel-preset-jest/27.4.0_@babel+core@7.16.0: | 3505 | + /babel-preset-jest/27.4.0_@babel+core@7.16.5: |
3586 | resolution: {integrity: sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==} | 3506 | resolution: {integrity: sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==} |
3587 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 3507 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
3588 | peerDependencies: | 3508 | peerDependencies: |
3589 | '@babel/core': ^7.0.0 | 3509 | '@babel/core': ^7.0.0 |
3590 | dependencies: | 3510 | dependencies: |
3591 | - '@babel/core': 7.16.0 | 3511 | + '@babel/core': 7.16.5 |
3592 | babel-plugin-jest-hoist: 27.4.0 | 3512 | babel-plugin-jest-hoist: 27.4.0 |
3593 | - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.0 | 3513 | + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.5 |
3594 | dev: true | 3514 | dev: true |
3595 | 3515 | ||
3596 | /babel-walk/3.0.0-canary-5: | 3516 | /babel-walk/3.0.0-canary-5: |
@@ -3625,6 +3545,10 @@ packages: | @@ -3625,6 +3545,10 @@ packages: | ||
3625 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} | 3545 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} |
3626 | dev: true | 3546 | dev: true |
3627 | 3547 | ||
3548 | + /before-after-hook/2.2.2: | ||
3549 | + resolution: {integrity: sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==} | ||
3550 | + dev: true | ||
3551 | + | ||
3628 | /big.js/5.2.2: | 3552 | /big.js/5.2.2: |
3629 | resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} | 3553 | resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} |
3630 | dev: true | 3554 | dev: true |
@@ -3757,6 +3681,18 @@ packages: | @@ -3757,6 +3681,18 @@ packages: | ||
3757 | picocolors: 1.0.0 | 3681 | picocolors: 1.0.0 |
3758 | dev: true | 3682 | dev: true |
3759 | 3683 | ||
3684 | + /browserslist/4.19.1: | ||
3685 | + resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==} | ||
3686 | + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} | ||
3687 | + hasBin: true | ||
3688 | + dependencies: | ||
3689 | + caniuse-lite: 1.0.30001300 | ||
3690 | + electron-to-chromium: 1.4.47 | ||
3691 | + escalade: 3.1.1 | ||
3692 | + node-releases: 2.0.1 | ||
3693 | + picocolors: 1.0.0 | ||
3694 | + dev: true | ||
3695 | + | ||
3760 | /bs-logger/0.2.6: | 3696 | /bs-logger/0.2.6: |
3761 | resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} | 3697 | resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} |
3762 | engines: {node: '>= 6'} | 3698 | engines: {node: '>= 6'} |
@@ -3896,6 +3832,10 @@ packages: | @@ -3896,6 +3832,10 @@ packages: | ||
3896 | resolution: {integrity: sha512-9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg==} | 3832 | resolution: {integrity: sha512-9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg==} |
3897 | dev: true | 3833 | dev: true |
3898 | 3834 | ||
3835 | + /caniuse-lite/1.0.30001300: | ||
3836 | + resolution: {integrity: sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==} | ||
3837 | + dev: true | ||
3838 | + | ||
3899 | /capital-case/1.0.4: | 3839 | /capital-case/1.0.4: |
3900 | resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} | 3840 | resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} |
3901 | dependencies: | 3841 | dependencies: |
@@ -4190,13 +4130,13 @@ packages: | @@ -4190,13 +4130,13 @@ packages: | ||
4190 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} | 4130 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} |
4191 | engines: {node: '>= 12'} | 4131 | engines: {node: '>= 12'} |
4192 | 4132 | ||
4193 | - /commitizen/4.2.4_@types+node@17.0.5: | 4133 | + /commitizen/4.2.4_@types+node@17.0.9: |
4194 | resolution: {integrity: sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==} | 4134 | resolution: {integrity: sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==} |
4195 | engines: {node: '>= 10'} | 4135 | engines: {node: '>= 10'} |
4196 | hasBin: true | 4136 | hasBin: true |
4197 | dependencies: | 4137 | dependencies: |
4198 | cachedir: 2.2.0 | 4138 | cachedir: 2.2.0 |
4199 | - cz-conventional-changelog: 3.2.0_@types+node@17.0.5 | 4139 | + cz-conventional-changelog: 3.2.0_@types+node@17.0.9 |
4200 | dedent: 0.7.0 | 4140 | dedent: 0.7.0 |
4201 | detect-indent: 6.0.0 | 4141 | detect-indent: 6.0.0 |
4202 | find-node-modules: 2.1.2 | 4142 | find-node-modules: 2.1.2 |
@@ -4464,7 +4404,7 @@ packages: | @@ -4464,7 +4404,7 @@ packages: | ||
4464 | /core-js-compat/3.19.1: | 4404 | /core-js-compat/3.19.1: |
4465 | resolution: {integrity: sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==} | 4405 | resolution: {integrity: sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==} |
4466 | dependencies: | 4406 | dependencies: |
4467 | - browserslist: 4.18.1 | 4407 | + browserslist: 4.19.1 |
4468 | semver: 7.0.0 | 4408 | semver: 7.0.0 |
4469 | dev: true | 4409 | dev: true |
4470 | 4410 | ||
@@ -4484,16 +4424,16 @@ packages: | @@ -4484,16 +4424,16 @@ packages: | ||
4484 | vary: 1.1.2 | 4424 | vary: 1.1.2 |
4485 | dev: true | 4425 | dev: true |
4486 | 4426 | ||
4487 | - /cosmiconfig-typescript-loader/1.0.2_bad060d5f9aca5284661d88d739ba15b: | 4427 | + /cosmiconfig-typescript-loader/1.0.2_58ff8c2ecf784f4683a8548a58a2b611: |
4488 | resolution: {integrity: sha512-27ZehvijYqAKVzta5xtZBS3PAliC8CmnWkGXN0vgxAZz7yqxpMjf3aG7flxF5rEiu8FAD7nZZXtOI+xUGn+bVg==} | 4428 | resolution: {integrity: sha512-27ZehvijYqAKVzta5xtZBS3PAliC8CmnWkGXN0vgxAZz7yqxpMjf3aG7flxF5rEiu8FAD7nZZXtOI+xUGn+bVg==} |
4489 | engines: {node: '>=12', npm: '>=6'} | 4429 | engines: {node: '>=12', npm: '>=6'} |
4490 | peerDependencies: | 4430 | peerDependencies: |
4491 | '@types/node': '*' | 4431 | '@types/node': '*' |
4492 | typescript: '>=3' | 4432 | typescript: '>=3' |
4493 | dependencies: | 4433 | dependencies: |
4494 | - '@types/node': 17.0.5 | 4434 | + '@types/node': 17.0.9 |
4495 | cosmiconfig: 7.0.1 | 4435 | cosmiconfig: 7.0.1 |
4496 | - ts-node: 10.4.0_bad060d5f9aca5284661d88d739ba15b | 4436 | + ts-node: 10.4.0_58ff8c2ecf784f4683a8548a58a2b611 |
4497 | typescript: 4.5.4 | 4437 | typescript: 4.5.4 |
4498 | transitivePeerDependencies: | 4438 | transitivePeerDependencies: |
4499 | - '@swc/core' | 4439 | - '@swc/core' |
@@ -4651,18 +4591,18 @@ packages: | @@ -4651,18 +4591,18 @@ packages: | ||
4651 | logalot: 2.1.0 | 4591 | logalot: 2.1.0 |
4652 | dev: true | 4592 | dev: true |
4653 | 4593 | ||
4654 | - /cz-conventional-changelog/3.2.0_@types+node@17.0.5: | 4594 | + /cz-conventional-changelog/3.2.0_@types+node@17.0.9: |
4655 | resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==} | 4595 | resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==} |
4656 | engines: {node: '>= 10'} | 4596 | engines: {node: '>= 10'} |
4657 | dependencies: | 4597 | dependencies: |
4658 | chalk: 2.4.2 | 4598 | chalk: 2.4.2 |
4659 | - commitizen: 4.2.4_@types+node@17.0.5 | 4599 | + commitizen: 4.2.4_@types+node@17.0.9 |
4660 | conventional-commit-types: 3.0.0 | 4600 | conventional-commit-types: 3.0.0 |
4661 | lodash.map: 4.6.0 | 4601 | lodash.map: 4.6.0 |
4662 | longest: 2.0.1 | 4602 | longest: 2.0.1 |
4663 | word-wrap: 1.2.3 | 4603 | word-wrap: 1.2.3 |
4664 | optionalDependencies: | 4604 | optionalDependencies: |
4665 | - '@commitlint/load': 16.0.0_@types+node@17.0.5 | 4605 | + '@commitlint/load': 16.0.0_@types+node@17.0.9 |
4666 | transitivePeerDependencies: | 4606 | transitivePeerDependencies: |
4667 | - '@swc/core' | 4607 | - '@swc/core' |
4668 | - '@swc/wasm' | 4608 | - '@swc/wasm' |
@@ -4841,6 +4781,11 @@ packages: | @@ -4841,6 +4781,11 @@ packages: | ||
4841 | clone: 1.0.4 | 4781 | clone: 1.0.4 |
4842 | dev: true | 4782 | dev: true |
4843 | 4783 | ||
4784 | + /define-lazy-prop/2.0.0: | ||
4785 | + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} | ||
4786 | + engines: {node: '>=8'} | ||
4787 | + dev: true | ||
4788 | + | ||
4844 | /define-properties/1.1.3: | 4789 | /define-properties/1.1.3: |
4845 | resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} | 4790 | resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} |
4846 | engines: {node: '>= 0.4'} | 4791 | engines: {node: '>= 0.4'} |
@@ -4875,6 +4820,10 @@ packages: | @@ -4875,6 +4820,10 @@ packages: | ||
4875 | engines: {node: '>=0.4.0'} | 4820 | engines: {node: '>=0.4.0'} |
4876 | dev: true | 4821 | dev: true |
4877 | 4822 | ||
4823 | + /deprecation/2.3.1: | ||
4824 | + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} | ||
4825 | + dev: true | ||
4826 | + | ||
4878 | /detect-file/1.0.0: | 4827 | /detect-file/1.0.0: |
4879 | resolution: {integrity: sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=} | 4828 | resolution: {integrity: sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=} |
4880 | engines: {node: '>=0.10.0'} | 4829 | engines: {node: '>=0.10.0'} |
@@ -4894,11 +4843,6 @@ packages: | @@ -4894,11 +4843,6 @@ packages: | ||
4894 | resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} | 4843 | resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} |
4895 | dev: false | 4844 | dev: false |
4896 | 4845 | ||
4897 | - /diff-sequences/27.0.6: | ||
4898 | - resolution: {integrity: sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==} | ||
4899 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | ||
4900 | - dev: true | ||
4901 | - | ||
4902 | /diff-sequences/27.4.0: | 4846 | /diff-sequences/27.4.0: |
4903 | resolution: {integrity: sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==} | 4847 | resolution: {integrity: sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==} |
4904 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 4848 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
@@ -4982,6 +4926,13 @@ packages: | @@ -4982,6 +4926,13 @@ packages: | ||
4982 | domelementtype: 2.2.0 | 4926 | domelementtype: 2.2.0 |
4983 | dev: true | 4927 | dev: true |
4984 | 4928 | ||
4929 | + /domhandler/4.3.0: | ||
4930 | + resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==} | ||
4931 | + engines: {node: '>= 4'} | ||
4932 | + dependencies: | ||
4933 | + domelementtype: 2.2.0 | ||
4934 | + dev: true | ||
4935 | + | ||
4985 | /domutils/1.7.0: | 4936 | /domutils/1.7.0: |
4986 | resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} | 4937 | resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} |
4987 | dependencies: | 4938 | dependencies: |
@@ -5020,6 +4971,11 @@ packages: | @@ -5020,6 +4971,11 @@ packages: | ||
5020 | engines: {node: '>=10'} | 4971 | engines: {node: '>=10'} |
5021 | dev: true | 4972 | dev: true |
5022 | 4973 | ||
4974 | + /dotenv/14.2.0: | ||
4975 | + resolution: {integrity: sha512-05POuPJyPpO6jqzTNweQFfAyMSD4qa4lvsMOWyTRTdpHKy6nnnN+IYWaXF+lHivhBH/ufDKlR4IWCAN3oPnHuw==} | ||
4976 | + engines: {node: '>=12'} | ||
4977 | + dev: true | ||
4978 | + | ||
5023 | /download/6.2.5: | 4979 | /download/6.2.5: |
5024 | resolution: {integrity: sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==} | 4980 | resolution: {integrity: sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==} |
5025 | engines: {node: '>=4'} | 4981 | engines: {node: '>=4'} |
@@ -5082,6 +5038,10 @@ packages: | @@ -5082,6 +5038,10 @@ packages: | ||
5082 | resolution: {integrity: sha512-9ldvb6QMHiDpUNF1iSwBTiTT0qXEN+xIO5WlCJrC5gt0z74ofOiqR698vaJqYWnri0XZiF0YmnrFmGq/EmpGAA==} | 5038 | resolution: {integrity: sha512-9ldvb6QMHiDpUNF1iSwBTiTT0qXEN+xIO5WlCJrC5gt0z74ofOiqR698vaJqYWnri0XZiF0YmnrFmGq/EmpGAA==} |
5083 | dev: true | 5039 | dev: true |
5084 | 5040 | ||
5041 | + /electron-to-chromium/1.4.47: | ||
5042 | + resolution: {integrity: sha512-ZHc8i3/cgeCRK/vC7W2htAG6JqUmOUgDNn/f9yY9J8UjfLjwzwOVEt4MWmgJAdvmxyrsR5KIFA/6+kUHGY0eUA==} | ||
5043 | + dev: true | ||
5044 | + | ||
5085 | /emittery/0.8.1: | 5045 | /emittery/0.8.1: |
5086 | resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} | 5046 | resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} |
5087 | engines: {node: '>=10'} | 5047 | engines: {node: '>=10'} |
@@ -5125,13 +5085,6 @@ packages: | @@ -5125,13 +5085,6 @@ packages: | ||
5125 | once: 1.4.0 | 5085 | once: 1.4.0 |
5126 | dev: true | 5086 | dev: true |
5127 | 5087 | ||
5128 | - /enquirer/2.3.6: | ||
5129 | - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} | ||
5130 | - engines: {node: '>=8.6'} | ||
5131 | - dependencies: | ||
5132 | - ansi-colors: 4.1.1 | ||
5133 | - dev: true | ||
5134 | - | ||
5135 | /entities/1.1.2: | 5088 | /entities/1.1.2: |
5136 | resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} | 5089 | resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} |
5137 | dev: true | 5090 | dev: true |
@@ -5207,8 +5160,8 @@ packages: | @@ -5207,8 +5160,8 @@ packages: | ||
5207 | dev: true | 5160 | dev: true |
5208 | optional: true | 5161 | optional: true |
5209 | 5162 | ||
5210 | - /esbuild-android-arm64/0.14.5: | ||
5211 | - resolution: {integrity: sha512-Sl6ysm7OAZZz+X3Mv3tOPhjMuSxNmztgoXH4ZZ3Yhbje5emEY6qiTnv3vBSljDlUl/yGaIjqC44qlj8s8G71xA==} | 5163 | + /esbuild-android-arm64/0.14.3: |
5164 | + resolution: {integrity: sha512-v/vdnGJiSGWOAXzg422T9qb4S+P3tOaYtc5n3FDR27Bh3/xQDS7PdYz/yY7HhOlVp0eGwWNbPHEi8FcEhXjsuw==} | ||
5212 | cpu: [arm64] | 5165 | cpu: [arm64] |
5213 | os: [android] | 5166 | os: [android] |
5214 | requiresBuild: true | 5167 | requiresBuild: true |
@@ -5231,8 +5184,8 @@ packages: | @@ -5231,8 +5184,8 @@ packages: | ||
5231 | dev: true | 5184 | dev: true |
5232 | optional: true | 5185 | optional: true |
5233 | 5186 | ||
5234 | - /esbuild-darwin-64/0.14.5: | ||
5235 | - resolution: {integrity: sha512-VHZl23sM9BOZXcLxk1vTYls8TCAY+/3llw9vHKIWAHDHzBBOlVv26ORK8gnStNMqTjCSGSMoq4T5jOZf2WrJPQ==} | 5187 | + /esbuild-darwin-64/0.14.3: |
5188 | + resolution: {integrity: sha512-swY5OtEg6cfWdgc/XEjkBP7wXSyXXeZHEsWMdh1bDiN1D6GmRphk9SgKFKTj+P3ZHhOGIcC1+UdIwHk5bUcOig==} | ||
5236 | cpu: [x64] | 5189 | cpu: [x64] |
5237 | os: [darwin] | 5190 | os: [darwin] |
5238 | requiresBuild: true | 5191 | requiresBuild: true |
@@ -5255,8 +5208,8 @@ packages: | @@ -5255,8 +5208,8 @@ packages: | ||
5255 | dev: true | 5208 | dev: true |
5256 | optional: true | 5209 | optional: true |
5257 | 5210 | ||
5258 | - /esbuild-darwin-arm64/0.14.5: | ||
5259 | - resolution: {integrity: sha512-ugPOLgEQPoPLSqAFBajaczt+lcbUZR+V2fby3572h5jf/kFV6UL8LAZ1Ze58hcbKwfvbh4C09kp0PhqPgXKwOg==} | 5211 | + /esbuild-darwin-arm64/0.14.3: |
5212 | + resolution: {integrity: sha512-6i9dXPk8oT87wF6VHmwzSad76eMRU2Rt+GXrwF3Y4DCJgnPssJbabNQ9gurkuEX8M0YnEyJF0d1cR7rpTzcEiA==} | ||
5260 | cpu: [arm64] | 5213 | cpu: [arm64] |
5261 | os: [darwin] | 5214 | os: [darwin] |
5262 | requiresBuild: true | 5215 | requiresBuild: true |
@@ -5279,8 +5232,8 @@ packages: | @@ -5279,8 +5232,8 @@ packages: | ||
5279 | dev: true | 5232 | dev: true |
5280 | optional: true | 5233 | optional: true |
5281 | 5234 | ||
5282 | - /esbuild-freebsd-64/0.14.5: | ||
5283 | - resolution: {integrity: sha512-uP0yOixSHF505o/Kzq9e4bvZblCZp9GGx+a7enLOVSuvIvLmtj2yhZLRPGfbVNkPJXktTKNRAnNGkXHl53M6sw==} | 5235 | + /esbuild-freebsd-64/0.14.3: |
5236 | + resolution: {integrity: sha512-WDY5ENsmyceeE+95U3eI+FM8yARY5akWkf21M/x/+v2P5OVsYqCYELglSeAI5Y7bhteCVV3g4i2fRqtkmprdSA==} | ||
5284 | cpu: [x64] | 5237 | cpu: [x64] |
5285 | os: [freebsd] | 5238 | os: [freebsd] |
5286 | requiresBuild: true | 5239 | requiresBuild: true |
@@ -5303,8 +5256,8 @@ packages: | @@ -5303,8 +5256,8 @@ packages: | ||
5303 | dev: true | 5256 | dev: true |
5304 | optional: true | 5257 | optional: true |
5305 | 5258 | ||
5306 | - /esbuild-freebsd-arm64/0.14.5: | ||
5307 | - resolution: {integrity: sha512-M99NPu8hlirFo6Fgx0WfX6XxUFdGclUNv3MyyfDtTdNYbccMESwLSACGpE7HvJKWscdjaqajeMu2an9adGNfCw==} | 5259 | + /esbuild-freebsd-arm64/0.14.3: |
5260 | + resolution: {integrity: sha512-4BEEGcP0wBzg04pCCWXlgaPuksQHHfwHvYgCIsi+7IsuB17ykt6MHhTkHR5b5pjI/jNtRhPfMsDODUyftQJgvw==} | ||
5308 | cpu: [arm64] | 5261 | cpu: [arm64] |
5309 | os: [freebsd] | 5262 | os: [freebsd] |
5310 | requiresBuild: true | 5263 | requiresBuild: true |
@@ -5327,8 +5280,8 @@ packages: | @@ -5327,8 +5280,8 @@ packages: | ||
5327 | dev: true | 5280 | dev: true |
5328 | optional: true | 5281 | optional: true |
5329 | 5282 | ||
5330 | - /esbuild-linux-32/0.14.5: | ||
5331 | - resolution: {integrity: sha512-hfqln4yb/jf/vPvI/A6aCvpIzqF3PdDmrKiikTohEUuRtvEZz234krtNwEAw5ssCue4NX8BJqrMpCTAHOl3LQw==} | 5283 | + /esbuild-linux-32/0.14.3: |
5284 | + resolution: {integrity: sha512-8yhsnjLG/GwCA1RAIndjmCHWViRB2Ol0XeOh2fCXS9qF8tlVrJB7qAiHZpm2vXx+yjOA/bFLTxzU+5pMKqkn5A==} | ||
5332 | cpu: [ia32] | 5285 | cpu: [ia32] |
5333 | os: [linux] | 5286 | os: [linux] |
5334 | requiresBuild: true | 5287 | requiresBuild: true |
@@ -5351,8 +5304,8 @@ packages: | @@ -5351,8 +5304,8 @@ packages: | ||
5351 | dev: true | 5304 | dev: true |
5352 | optional: true | 5305 | optional: true |
5353 | 5306 | ||
5354 | - /esbuild-linux-64/0.14.5: | ||
5355 | - resolution: {integrity: sha512-T+OuYPlhytjj5DsvjUXizNjbV+/IrZiaDc9SNUfqiUOXHu0URFqchjhPVbBiBnWykCMJFB6pqNap2Oxth4iuYw==} | 5307 | + /esbuild-linux-64/0.14.3: |
5308 | + resolution: {integrity: sha512-eNq4aixfbwXHIJq4bQDe+XaSNV1grxqpZYs/zHbp0HGHf6SBNlTI02uyTbYGpIzlXmCEPS9tpPCi7BTU45kcJQ==} | ||
5356 | cpu: [x64] | 5309 | cpu: [x64] |
5357 | os: [linux] | 5310 | os: [linux] |
5358 | requiresBuild: true | 5311 | requiresBuild: true |
@@ -5375,8 +5328,8 @@ packages: | @@ -5375,8 +5328,8 @@ packages: | ||
5375 | dev: true | 5328 | dev: true |
5376 | optional: true | 5329 | optional: true |
5377 | 5330 | ||
5378 | - /esbuild-linux-arm/0.14.5: | ||
5379 | - resolution: {integrity: sha512-5b10jKJ3lU4BUchOw9TgRResu8UZJf8qVjAzV5muHedonCfBzClGTT4KCNuOcLTJomH3wz6gNVJt1AxMglXnJg==} | 5331 | + /esbuild-linux-arm/0.14.3: |
5332 | + resolution: {integrity: sha512-YcMvJHAQnWrWKb+eLxN9e/iWUC/3w01UF/RXuMknqOW3prX8UQ63QknWz9/RI8BY/sdrdgPEbSmsTU2jy2cayQ==} | ||
5380 | cpu: [arm] | 5333 | cpu: [arm] |
5381 | os: [linux] | 5334 | os: [linux] |
5382 | requiresBuild: true | 5335 | requiresBuild: true |
@@ -5399,8 +5352,8 @@ packages: | @@ -5399,8 +5352,8 @@ packages: | ||
5399 | dev: true | 5352 | dev: true |
5400 | optional: true | 5353 | optional: true |
5401 | 5354 | ||
5402 | - /esbuild-linux-arm64/0.14.5: | ||
5403 | - resolution: {integrity: sha512-ANOzoaH4kfbhEZT0EGY9g1tsZhDA+I0FRwBsj7D8pCU900pXF/l8YAOy5jWFQIb3vjG5+orFc5SqSzAKCisvTQ==} | 5355 | + /esbuild-linux-arm64/0.14.3: |
5356 | + resolution: {integrity: sha512-wPLyRoqoV/tEMQ7M24DpAmCMyKqBmtgZY35w2tXM8X5O5b2Ohi7fkPSmd6ZgLIxZIApWt88toA8RT0S7qoxcOA==} | ||
5404 | cpu: [arm64] | 5357 | cpu: [arm64] |
5405 | os: [linux] | 5358 | os: [linux] |
5406 | requiresBuild: true | 5359 | requiresBuild: true |
@@ -5423,8 +5376,8 @@ packages: | @@ -5423,8 +5376,8 @@ packages: | ||
5423 | dev: true | 5376 | dev: true |
5424 | optional: true | 5377 | optional: true |
5425 | 5378 | ||
5426 | - /esbuild-linux-mips64le/0.14.5: | ||
5427 | - resolution: {integrity: sha512-sSmGfOUNNB2Nd3tzp1RHSxiJmM5/RUIEP5aAtH+PpOP7FPp15Jcfwq7UNBJ82KLN3SJcwhUeEfcCaUFBzbTKxg==} | 5379 | + /esbuild-linux-mips64le/0.14.3: |
5380 | + resolution: {integrity: sha512-DdmfM5rcuoqjQL3px5MbquAjZWnySB5LdTrg52SSapp0gXMnGcsM6GY2WVta02CMKn5qi7WPVG4WbqTWE++tJw==} | ||
5428 | cpu: [mips64el] | 5381 | cpu: [mips64el] |
5429 | os: [linux] | 5382 | os: [linux] |
5430 | requiresBuild: true | 5383 | requiresBuild: true |
@@ -5447,8 +5400,8 @@ packages: | @@ -5447,8 +5400,8 @@ packages: | ||
5447 | dev: true | 5400 | dev: true |
5448 | optional: true | 5401 | optional: true |
5449 | 5402 | ||
5450 | - /esbuild-linux-ppc64le/0.14.5: | ||
5451 | - resolution: {integrity: sha512-usfQrVVIQcpuc/U2NWc7/Ry+m622v+PjJ5eErNPdjWBPlcvD6kXaBTv94uQkVzZOHX3uYqprRrOjseed9ApSYA==} | 5403 | + /esbuild-linux-ppc64le/0.14.3: |
5404 | + resolution: {integrity: sha512-ujdqryj0m135Ms9yaNDVFAcLeRtyftM/v2v7Osji5zElf2TivSMdFxdrYnYICuHfkm8c8gHg1ncwqitL0r+nnA==} | ||
5452 | cpu: [ppc64] | 5405 | cpu: [ppc64] |
5453 | os: [linux] | 5406 | os: [linux] |
5454 | requiresBuild: true | 5407 | requiresBuild: true |
@@ -5479,8 +5432,8 @@ packages: | @@ -5479,8 +5432,8 @@ packages: | ||
5479 | dev: true | 5432 | dev: true |
5480 | optional: true | 5433 | optional: true |
5481 | 5434 | ||
5482 | - /esbuild-netbsd-64/0.14.5: | ||
5483 | - resolution: {integrity: sha512-Q5KpvPZcPnNEaTjrvuWqvEnlhI2jyi1wWwYunlEUAhx60spQOTy10sdYOA+s1M+LPb6kwvasrZZDmYyQlcVZeA==} | 5435 | + /esbuild-netbsd-64/0.14.3: |
5436 | + resolution: {integrity: sha512-Z/UB9OUdwo1KDJCSGnVueDuKowRZRkduLvRMegHtDBHC3lS5LfZ3RdM1i+4MMN9iafyk8Q9FNcqIXI178ZujvA==} | ||
5484 | cpu: [x64] | 5437 | cpu: [x64] |
5485 | os: [netbsd] | 5438 | os: [netbsd] |
5486 | requiresBuild: true | 5439 | requiresBuild: true |
@@ -5512,8 +5465,8 @@ packages: | @@ -5512,8 +5465,8 @@ packages: | ||
5512 | dev: true | 5465 | dev: true |
5513 | optional: true | 5466 | optional: true |
5514 | 5467 | ||
5515 | - /esbuild-openbsd-64/0.14.5: | ||
5516 | - resolution: {integrity: sha512-RZzRUu1RYKextJgXkHhAsuhLDvm73YP/wogpUG9MaAGvKTxnKAKRuaw2zJfnbz8iBqBQB2no2PmpVBNbqUTQrw==} | 5468 | + /esbuild-openbsd-64/0.14.3: |
5469 | + resolution: {integrity: sha512-9I1uoMDeogq3zQuTe3qygmXYjImnvc6rBn51LLbLniQDlfvqHPBMnAZ/5KshwtXXIIMkCwByytDZdiuzRRlTvQ==} | ||
5517 | cpu: [x64] | 5470 | cpu: [x64] |
5518 | os: [openbsd] | 5471 | os: [openbsd] |
5519 | requiresBuild: true | 5472 | requiresBuild: true |
@@ -5532,12 +5485,12 @@ packages: | @@ -5532,12 +5485,12 @@ packages: | ||
5532 | resolution: {integrity: sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ==} | 5485 | resolution: {integrity: sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ==} |
5533 | dev: true | 5486 | dev: true |
5534 | 5487 | ||
5535 | - /esbuild-register/3.2.1_esbuild@0.14.5: | 5488 | + /esbuild-register/3.2.1_esbuild@0.14.8: |
5536 | resolution: {integrity: sha512-LFgzsqCHsFUpTZdYJFTl1o5p60+C4nZ65BzFYPS1jKGwiKk6JLH8tuLwuydvpgreNUAeDUhTPJgJNjmpZKSOpQ==} | 5489 | resolution: {integrity: sha512-LFgzsqCHsFUpTZdYJFTl1o5p60+C4nZ65BzFYPS1jKGwiKk6JLH8tuLwuydvpgreNUAeDUhTPJgJNjmpZKSOpQ==} |
5537 | peerDependencies: | 5490 | peerDependencies: |
5538 | esbuild: '>=0.12 <1' | 5491 | esbuild: '>=0.12 <1' |
5539 | dependencies: | 5492 | dependencies: |
5540 | - esbuild: 0.14.5 | 5493 | + esbuild: 0.14.8 |
5541 | jsonc-parser: 3.0.0 | 5494 | jsonc-parser: 3.0.0 |
5542 | dev: true | 5495 | dev: true |
5543 | 5496 | ||
@@ -5549,8 +5502,8 @@ packages: | @@ -5549,8 +5502,8 @@ packages: | ||
5549 | dev: true | 5502 | dev: true |
5550 | optional: true | 5503 | optional: true |
5551 | 5504 | ||
5552 | - /esbuild-sunos-64/0.14.5: | ||
5553 | - resolution: {integrity: sha512-J2ffKsBBWscQlye+/giEgKsQCppwHHFqqt/sh+ojVF+DZy1ve6RpPGwXGcGF6IaZTAI9+Vk4eHleiQxb+PC9Yw==} | 5505 | + /esbuild-sunos-64/0.14.3: |
5506 | + resolution: {integrity: sha512-pldqx/Adxl4V4ymiyKxOOyJmHn6nUIo3wqk2xBx07iDgmL2XTcDDQd7N4U4QGu9LnYN4ZF+8IdOYa3oRRpbjtg==} | ||
5554 | cpu: [x64] | 5507 | cpu: [x64] |
5555 | os: [sunos] | 5508 | os: [sunos] |
5556 | requiresBuild: true | 5509 | requiresBuild: true |
@@ -5573,8 +5526,8 @@ packages: | @@ -5573,8 +5526,8 @@ packages: | ||
5573 | dev: true | 5526 | dev: true |
5574 | optional: true | 5527 | optional: true |
5575 | 5528 | ||
5576 | - /esbuild-windows-32/0.14.5: | ||
5577 | - resolution: {integrity: sha512-OTZvuAc1JBnwmeT+hR1+Vmgz6LOD7DggpnwtKMAExruSLxUMl02Z3pyalJ7zKh3gJ/KBRM1JQZLSk4/mFWijeQ==} | 5529 | + /esbuild-windows-32/0.14.3: |
5530 | + resolution: {integrity: sha512-AqzvA/KbkC2m3kTXGpljLin3EttRbtoPTfBn6w6n2m9MWkTEbhQbE1ONoOBxhO5tExmyJdL/6B87TJJD5jEFBQ==} | ||
5578 | cpu: [ia32] | 5531 | cpu: [ia32] |
5579 | os: [win32] | 5532 | os: [win32] |
5580 | requiresBuild: true | 5533 | requiresBuild: true |
@@ -5597,8 +5550,8 @@ packages: | @@ -5597,8 +5550,8 @@ packages: | ||
5597 | dev: true | 5550 | dev: true |
5598 | optional: true | 5551 | optional: true |
5599 | 5552 | ||
5600 | - /esbuild-windows-64/0.14.5: | ||
5601 | - resolution: {integrity: sha512-ZM9rlBDsPEeMVJ1wcpNMXUad9VzYOFeOBUXBi+16HZTvFPy2DkcC2ZWcrByP3IESToD5lvHdjSX/w8rxphjqig==} | 5553 | + /esbuild-windows-64/0.14.3: |
5554 | + resolution: {integrity: sha512-HGg3C6113zLGB5hN41PROTnBuoh/arG2lQdOird6xFl9giff1cAfMQOUJUfODKD57dDqHjQ1YGW8gOkg0/IrWw==} | ||
5602 | cpu: [x64] | 5555 | cpu: [x64] |
5603 | os: [win32] | 5556 | os: [win32] |
5604 | requiresBuild: true | 5557 | requiresBuild: true |
@@ -5621,8 +5574,8 @@ packages: | @@ -5621,8 +5574,8 @@ packages: | ||
5621 | dev: true | 5574 | dev: true |
5622 | optional: true | 5575 | optional: true |
5623 | 5576 | ||
5624 | - /esbuild-windows-arm64/0.14.5: | ||
5625 | - resolution: {integrity: sha512-iK41mKG2LG0AKHE+9g/jDYU5ZQpJObt1uIPSGTiiiJKI5qbHdEck6Gaqq2tmBI933F2zB9yqZIX7IAdxwN/q4A==} | 5577 | + /esbuild-windows-arm64/0.14.3: |
5578 | + resolution: {integrity: sha512-qB2izYu4VpigGnOrAN2Yv7ICYLZWY/AojZtwFfteViDnHgW4jXPYkHQIXTISJbRz25H2cYiv+MfRQYK31RNjlw==} | ||
5626 | cpu: [arm64] | 5579 | cpu: [arm64] |
5627 | os: [win32] | 5580 | os: [win32] |
5628 | requiresBuild: true | 5581 | requiresBuild: true |
@@ -5673,28 +5626,28 @@ packages: | @@ -5673,28 +5626,28 @@ packages: | ||
5673 | esbuild-windows-arm64: 0.13.15 | 5626 | esbuild-windows-arm64: 0.13.15 |
5674 | dev: true | 5627 | dev: true |
5675 | 5628 | ||
5676 | - /esbuild/0.14.5: | ||
5677 | - resolution: {integrity: sha512-ofwgH4ITPXhkMo2AM39oXpSe5KIyWjxicdqYVy+tLa1lMgxzPCKwaepcrSRtYbgTUMXwquxB1C3xQYpUNaPAFA==} | 5629 | + /esbuild/0.14.3: |
5630 | + resolution: {integrity: sha512-zyEC5hkguW2oieXRXp8VJzQdcO/1FxCS5GjzqOHItRlojXnx/cTavsrkxdWvBH9li2lUq0bN+LeeVEmyCwiR/Q==} | ||
5678 | hasBin: true | 5631 | hasBin: true |
5679 | requiresBuild: true | 5632 | requiresBuild: true |
5680 | optionalDependencies: | 5633 | optionalDependencies: |
5681 | - esbuild-android-arm64: 0.14.5 | ||
5682 | - esbuild-darwin-64: 0.14.5 | ||
5683 | - esbuild-darwin-arm64: 0.14.5 | ||
5684 | - esbuild-freebsd-64: 0.14.5 | ||
5685 | - esbuild-freebsd-arm64: 0.14.5 | ||
5686 | - esbuild-linux-32: 0.14.5 | ||
5687 | - esbuild-linux-64: 0.14.5 | ||
5688 | - esbuild-linux-arm: 0.14.5 | ||
5689 | - esbuild-linux-arm64: 0.14.5 | ||
5690 | - esbuild-linux-mips64le: 0.14.5 | ||
5691 | - esbuild-linux-ppc64le: 0.14.5 | ||
5692 | - esbuild-netbsd-64: 0.14.5 | ||
5693 | - esbuild-openbsd-64: 0.14.5 | ||
5694 | - esbuild-sunos-64: 0.14.5 | ||
5695 | - esbuild-windows-32: 0.14.5 | ||
5696 | - esbuild-windows-64: 0.14.5 | ||
5697 | - esbuild-windows-arm64: 0.14.5 | 5634 | + esbuild-android-arm64: 0.14.3 |
5635 | + esbuild-darwin-64: 0.14.3 | ||
5636 | + esbuild-darwin-arm64: 0.14.3 | ||
5637 | + esbuild-freebsd-64: 0.14.3 | ||
5638 | + esbuild-freebsd-arm64: 0.14.3 | ||
5639 | + esbuild-linux-32: 0.14.3 | ||
5640 | + esbuild-linux-64: 0.14.3 | ||
5641 | + esbuild-linux-arm: 0.14.3 | ||
5642 | + esbuild-linux-arm64: 0.14.3 | ||
5643 | + esbuild-linux-mips64le: 0.14.3 | ||
5644 | + esbuild-linux-ppc64le: 0.14.3 | ||
5645 | + esbuild-netbsd-64: 0.14.3 | ||
5646 | + esbuild-openbsd-64: 0.14.3 | ||
5647 | + esbuild-sunos-64: 0.14.3 | ||
5648 | + esbuild-windows-32: 0.14.3 | ||
5649 | + esbuild-windows-64: 0.14.3 | ||
5650 | + esbuild-windows-arm64: 0.14.3 | ||
5698 | dev: true | 5651 | dev: true |
5699 | 5652 | ||
5700 | /esbuild/0.14.8: | 5653 | /esbuild/0.14.8: |
@@ -5759,22 +5712,22 @@ packages: | @@ -5759,22 +5712,22 @@ packages: | ||
5759 | source-map: 0.6.1 | 5712 | source-map: 0.6.1 |
5760 | dev: true | 5713 | dev: true |
5761 | 5714 | ||
5762 | - /eslint-config-prettier/8.3.0_eslint@8.5.0: | 5715 | + /eslint-config-prettier/8.3.0_eslint@8.7.0: |
5763 | resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==} | 5716 | resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==} |
5764 | hasBin: true | 5717 | hasBin: true |
5765 | peerDependencies: | 5718 | peerDependencies: |
5766 | eslint: '>=7.0.0' | 5719 | eslint: '>=7.0.0' |
5767 | dependencies: | 5720 | dependencies: |
5768 | - eslint: 8.5.0 | 5721 | + eslint: 8.7.0 |
5769 | dev: true | 5722 | dev: true |
5770 | 5723 | ||
5771 | - /eslint-define-config/1.2.1: | ||
5772 | - resolution: {integrity: sha512-Mj6OvJXNDrMA+RtFtPFst4BRJPkB4qi9B+8FFr/hdxY0gNbhGoSnp7i3w3/k75vMXTbbfsmeZhQUomI6mK/JVw==} | 5724 | + /eslint-define-config/1.2.2: |
5725 | + resolution: {integrity: sha512-xZpBJNM5UGKyBGvOySj8B7vUjgqITf3Ga27FdrbaoitfiTT9G1qVh1fBuz8Y1DkG5MpyxtTPyV6s0rpMGMSgDA==} | ||
5773 | engines: {node: '>= 16.9.0', npm: '>= 7.0.0', pnpm: '>= 6.17.0'} | 5726 | engines: {node: '>= 16.9.0', npm: '>= 7.0.0', pnpm: '>= 6.17.0'} |
5774 | dev: true | 5727 | dev: true |
5775 | 5728 | ||
5776 | - /eslint-plugin-jest/25.3.2_8e4587ffdbad7ecbf6b0774bd21bf51b: | ||
5777 | - resolution: {integrity: sha512-1aPC7RRJkMCNgklHMDECw8fnzag3JBH53LaxmFkDTR7+PfMCO5V6f8XFRHoT2I+Fr4pVO9cPdRGlf7/haB2O5Q==} | 5729 | + /eslint-plugin-jest/25.7.0_044a69ce56423e5a462f0eb0c643b7d7: |
5730 | + resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} | ||
5778 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} | 5731 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} |
5779 | peerDependencies: | 5732 | peerDependencies: |
5780 | '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 | 5733 | '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 |
@@ -5786,16 +5739,16 @@ packages: | @@ -5786,16 +5739,16 @@ packages: | ||
5786 | jest: | 5739 | jest: |
5787 | optional: true | 5740 | optional: true |
5788 | dependencies: | 5741 | dependencies: |
5789 | - '@typescript-eslint/eslint-plugin': 5.8.1_3a47348159e115370aa4cba56aba33b6 | ||
5790 | - '@typescript-eslint/experimental-utils': 5.7.0_eslint@8.5.0+typescript@4.5.4 | ||
5791 | - eslint: 8.5.0 | ||
5792 | - jest: 27.4.5_ts-node@10.4.0 | 5742 | + '@typescript-eslint/eslint-plugin': 5.10.0_3b6b276e93ead7cf6063f183a5e18d1f |
5743 | + '@typescript-eslint/experimental-utils': 5.8.1_eslint@8.7.0+typescript@4.5.4 | ||
5744 | + eslint: 8.7.0 | ||
5745 | + jest: 27.4.7_ts-node@10.4.0 | ||
5793 | transitivePeerDependencies: | 5746 | transitivePeerDependencies: |
5794 | - supports-color | 5747 | - supports-color |
5795 | - typescript | 5748 | - typescript |
5796 | dev: true | 5749 | dev: true |
5797 | 5750 | ||
5798 | - /eslint-plugin-prettier/4.0.0_94e1b6d3ce6ea916847122712570e9ae: | 5751 | + /eslint-plugin-prettier/4.0.0_4660519532e4c3b0a9e5bb6623cfedf6: |
5799 | resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} | 5752 | resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} |
5800 | engines: {node: '>=6.0.0'} | 5753 | engines: {node: '>=6.0.0'} |
5801 | peerDependencies: | 5754 | peerDependencies: |
@@ -5806,23 +5759,23 @@ packages: | @@ -5806,23 +5759,23 @@ packages: | ||
5806 | eslint-config-prettier: | 5759 | eslint-config-prettier: |
5807 | optional: true | 5760 | optional: true |
5808 | dependencies: | 5761 | dependencies: |
5809 | - eslint: 8.5.0 | ||
5810 | - eslint-config-prettier: 8.3.0_eslint@8.5.0 | 5762 | + eslint: 8.7.0 |
5763 | + eslint-config-prettier: 8.3.0_eslint@8.7.0 | ||
5811 | prettier: 2.5.1 | 5764 | prettier: 2.5.1 |
5812 | prettier-linter-helpers: 1.0.0 | 5765 | prettier-linter-helpers: 1.0.0 |
5813 | dev: true | 5766 | dev: true |
5814 | 5767 | ||
5815 | - /eslint-plugin-vue/8.2.0_eslint@8.5.0: | ||
5816 | - resolution: {integrity: sha512-cLIdTuOAMXyHeQ4drYKcZfoyzdwdBpH279X8/N0DgmotEI9yFKb5O/cAgoie/CkQZCH/MOmh0xw/KEfS90zY2A==} | 5768 | + /eslint-plugin-vue/8.3.0_eslint@8.7.0: |
5769 | + resolution: {integrity: sha512-IIuLHw4vQxGlHcoP2dG6t/2OVdQf2qoyAzEGAxreU1afZOHGA7y3TWq8I+r3ZA6Wjs6xpeUWGHlT31QGr9Rb5g==} | ||
5817 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 5770 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5818 | peerDependencies: | 5771 | peerDependencies: |
5819 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 | 5772 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 |
5820 | dependencies: | 5773 | dependencies: |
5821 | - eslint: 8.5.0 | ||
5822 | - eslint-utils: 3.0.0_eslint@8.5.0 | 5774 | + eslint: 8.7.0 |
5775 | + eslint-utils: 3.0.0_eslint@8.7.0 | ||
5823 | natural-compare: 1.4.0 | 5776 | natural-compare: 1.4.0 |
5824 | semver: 7.3.5 | 5777 | semver: 7.3.5 |
5825 | - vue-eslint-parser: 8.0.1_eslint@8.5.0 | 5778 | + vue-eslint-parser: 8.0.1_eslint@8.7.0 |
5826 | transitivePeerDependencies: | 5779 | transitivePeerDependencies: |
5827 | - supports-color | 5780 | - supports-color |
5828 | dev: true | 5781 | dev: true |
@@ -5851,13 +5804,13 @@ packages: | @@ -5851,13 +5804,13 @@ packages: | ||
5851 | estraverse: 5.3.0 | 5804 | estraverse: 5.3.0 |
5852 | dev: true | 5805 | dev: true |
5853 | 5806 | ||
5854 | - /eslint-utils/3.0.0_eslint@8.5.0: | 5807 | + /eslint-utils/3.0.0_eslint@8.7.0: |
5855 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} | 5808 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} |
5856 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} | 5809 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} |
5857 | peerDependencies: | 5810 | peerDependencies: |
5858 | eslint: '>=5' | 5811 | eslint: '>=5' |
5859 | dependencies: | 5812 | dependencies: |
5860 | - eslint: 8.5.0 | 5813 | + eslint: 8.7.0 |
5861 | eslint-visitor-keys: 2.1.0 | 5814 | eslint-visitor-keys: 2.1.0 |
5862 | dev: true | 5815 | dev: true |
5863 | 5816 | ||
@@ -5871,8 +5824,13 @@ packages: | @@ -5871,8 +5824,13 @@ packages: | ||
5871 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 5824 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5872 | dev: true | 5825 | dev: true |
5873 | 5826 | ||
5874 | - /eslint/8.5.0: | ||
5875 | - resolution: {integrity: sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==} | 5827 | + /eslint-visitor-keys/3.2.0: |
5828 | + resolution: {integrity: sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ==} | ||
5829 | + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | ||
5830 | + dev: true | ||
5831 | + | ||
5832 | + /eslint/8.7.0: | ||
5833 | + resolution: {integrity: sha512-ifHYzkBGrzS2iDU7KjhCAVMGCvF6M3Xfs8X8b37cgrUlDt6bWRTpRh6T/gtSXv1HJ/BUGgmjvNvOEGu85Iif7w==} | ||
5876 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 5834 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5877 | hasBin: true | 5835 | hasBin: true |
5878 | dependencies: | 5836 | dependencies: |
@@ -5883,12 +5841,11 @@ packages: | @@ -5883,12 +5841,11 @@ packages: | ||
5883 | cross-spawn: 7.0.3 | 5841 | cross-spawn: 7.0.3 |
5884 | debug: 4.3.3 | 5842 | debug: 4.3.3 |
5885 | doctrine: 3.0.0 | 5843 | doctrine: 3.0.0 |
5886 | - enquirer: 2.3.6 | ||
5887 | escape-string-regexp: 4.0.0 | 5844 | escape-string-regexp: 4.0.0 |
5888 | eslint-scope: 7.1.0 | 5845 | eslint-scope: 7.1.0 |
5889 | - eslint-utils: 3.0.0_eslint@8.5.0 | ||
5890 | - eslint-visitor-keys: 3.1.0 | ||
5891 | - espree: 9.2.0 | 5846 | + eslint-utils: 3.0.0_eslint@8.7.0 |
5847 | + eslint-visitor-keys: 3.2.0 | ||
5848 | + espree: 9.3.0 | ||
5892 | esquery: 1.4.0 | 5849 | esquery: 1.4.0 |
5893 | esutils: 2.0.3 | 5850 | esutils: 2.0.3 |
5894 | fast-deep-equal: 3.1.3 | 5851 | fast-deep-equal: 3.1.3 |
@@ -5896,7 +5853,7 @@ packages: | @@ -5896,7 +5853,7 @@ packages: | ||
5896 | functional-red-black-tree: 1.0.1 | 5853 | functional-red-black-tree: 1.0.1 |
5897 | glob-parent: 6.0.2 | 5854 | glob-parent: 6.0.2 |
5898 | globals: 13.12.0 | 5855 | globals: 13.12.0 |
5899 | - ignore: 4.0.6 | 5856 | + ignore: 5.2.0 |
5900 | import-fresh: 3.3.0 | 5857 | import-fresh: 3.3.0 |
5901 | imurmurhash: 0.1.4 | 5858 | imurmurhash: 0.1.4 |
5902 | is-glob: 4.0.3 | 5859 | is-glob: 4.0.3 |
@@ -5907,9 +5864,7 @@ packages: | @@ -5907,9 +5864,7 @@ packages: | ||
5907 | minimatch: 3.0.4 | 5864 | minimatch: 3.0.4 |
5908 | natural-compare: 1.4.0 | 5865 | natural-compare: 1.4.0 |
5909 | optionator: 0.9.1 | 5866 | optionator: 0.9.1 |
5910 | - progress: 2.0.3 | ||
5911 | regexpp: 3.2.0 | 5867 | regexpp: 3.2.0 |
5912 | - semver: 7.3.5 | ||
5913 | strip-ansi: 6.0.1 | 5868 | strip-ansi: 6.0.1 |
5914 | strip-json-comments: 3.1.1 | 5869 | strip-json-comments: 3.1.1 |
5915 | text-table: 0.2.0 | 5870 | text-table: 0.2.0 |
@@ -5918,14 +5873,14 @@ packages: | @@ -5918,14 +5873,14 @@ packages: | ||
5918 | - supports-color | 5873 | - supports-color |
5919 | dev: true | 5874 | dev: true |
5920 | 5875 | ||
5921 | - /esno/0.13.0_typescript@4.5.4: | ||
5922 | - resolution: {integrity: sha512-rgVOc/t+4QgAHTsQiFKX2olzJLIcBOYGYUb/moEDLXcz0pIf8NxwuFu5nOAMmOsNiFfhSrfgcLgVCOtmBIBeuQ==} | 5876 | + /esno/0.14.0_typescript@4.5.4: |
5877 | + resolution: {integrity: sha512-KEij9fDbMSO+WxwZRZRXWRxSpd48tXKF1VUW8dPUezN7VbUM6jKUXBrYY3CAbnkVfHzEbD8RWkapCYwc+ZaYoA==} | ||
5923 | hasBin: true | 5878 | hasBin: true |
5924 | dependencies: | 5879 | dependencies: |
5925 | cross-spawn: 7.0.3 | 5880 | cross-spawn: 7.0.3 |
5926 | - esbuild: 0.14.5 | 5881 | + esbuild: 0.14.8 |
5927 | esbuild-node-loader: 0.6.3_typescript@4.5.4 | 5882 | esbuild-node-loader: 0.6.3_typescript@4.5.4 |
5928 | - esbuild-register: 3.2.1_esbuild@0.14.5 | 5883 | + esbuild-register: 3.2.1_esbuild@0.14.8 |
5929 | import-meta-resolve: 1.1.1 | 5884 | import-meta-resolve: 1.1.1 |
5930 | transitivePeerDependencies: | 5885 | transitivePeerDependencies: |
5931 | - typescript | 5886 | - typescript |
@@ -5940,13 +5895,13 @@ packages: | @@ -5940,13 +5895,13 @@ packages: | ||
5940 | eslint-visitor-keys: 3.1.0 | 5895 | eslint-visitor-keys: 3.1.0 |
5941 | dev: true | 5896 | dev: true |
5942 | 5897 | ||
5943 | - /espree/9.2.0: | ||
5944 | - resolution: {integrity: sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==} | 5898 | + /espree/9.3.0: |
5899 | + resolution: {integrity: sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==} | ||
5945 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 5900 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5946 | dependencies: | 5901 | dependencies: |
5947 | - acorn: 8.6.0 | ||
5948 | - acorn-jsx: 5.3.2_acorn@8.6.0 | ||
5949 | - eslint-visitor-keys: 3.1.0 | 5902 | + acorn: 8.7.0 |
5903 | + acorn-jsx: 5.3.2_acorn@8.7.0 | ||
5904 | + eslint-visitor-keys: 3.2.0 | ||
5950 | dev: true | 5905 | dev: true |
5951 | 5906 | ||
5952 | /esprima/4.0.1: | 5907 | /esprima/4.0.1: |
@@ -6107,16 +6062,14 @@ packages: | @@ -6107,16 +6062,14 @@ packages: | ||
6107 | homedir-polyfill: 1.0.3 | 6062 | homedir-polyfill: 1.0.3 |
6108 | dev: true | 6063 | dev: true |
6109 | 6064 | ||
6110 | - /expect/27.4.2: | ||
6111 | - resolution: {integrity: sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg==} | 6065 | + /expect/27.4.6: |
6066 | + resolution: {integrity: sha512-1M/0kAALIaj5LaG66sFJTbRsWTADnylly82cu4bspI0nl+pgP4E6Bh/aqdHlTUjul06K7xQnnrAoqfxVU0+/ag==} | ||
6112 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 6067 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
6113 | dependencies: | 6068 | dependencies: |
6114 | '@jest/types': 27.4.2 | 6069 | '@jest/types': 27.4.2 |
6115 | - ansi-styles: 5.2.0 | ||
6116 | jest-get-type: 27.4.0 | 6070 | jest-get-type: 27.4.0 |
6117 | - jest-matcher-utils: 27.4.2 | ||
6118 | - jest-message-util: 27.4.2 | ||
6119 | - jest-regex-util: 27.4.0 | 6071 | + jest-matcher-utils: 27.4.6 |
6072 | + jest-message-util: 27.4.6 | ||
6120 | dev: true | 6073 | dev: true |
6121 | 6074 | ||
6122 | /ext-list/2.2.2: | 6075 | /ext-list/2.2.2: |
@@ -6180,6 +6133,17 @@ packages: | @@ -6180,6 +6133,17 @@ packages: | ||
6180 | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} | 6133 | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} |
6181 | dev: true | 6134 | dev: true |
6182 | 6135 | ||
6136 | + /fast-glob/3.2.11: | ||
6137 | + resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} | ||
6138 | + engines: {node: '>=8.6.0'} | ||
6139 | + dependencies: | ||
6140 | + '@nodelib/fs.stat': 2.0.5 | ||
6141 | + '@nodelib/fs.walk': 1.2.8 | ||
6142 | + glob-parent: 5.1.2 | ||
6143 | + merge2: 1.4.1 | ||
6144 | + micromatch: 4.0.4 | ||
6145 | + dev: true | ||
6146 | + | ||
6183 | /fast-glob/3.2.7: | 6147 | /fast-glob/3.2.7: |
6184 | resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} | 6148 | resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} |
6185 | engines: {node: '>=8'} | 6149 | engines: {node: '>=8'} |
@@ -6428,6 +6392,18 @@ packages: | @@ -6428,6 +6392,18 @@ packages: | ||
6428 | debug: | 6392 | debug: |
6429 | optional: true | 6393 | optional: true |
6430 | 6394 | ||
6395 | + /follow-redirects/1.14.5_debug@4.3.2: | ||
6396 | + resolution: {integrity: sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==} | ||
6397 | + engines: {node: '>=4.0'} | ||
6398 | + peerDependencies: | ||
6399 | + debug: '*' | ||
6400 | + peerDependenciesMeta: | ||
6401 | + debug: | ||
6402 | + optional: true | ||
6403 | + dependencies: | ||
6404 | + debug: 4.3.2 | ||
6405 | + dev: true | ||
6406 | + | ||
6431 | /for-in/1.0.2: | 6407 | /for-in/1.0.2: |
6432 | resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} | 6408 | resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} |
6433 | engines: {node: '>=0.10.0'} | 6409 | engines: {node: '>=0.10.0'} |
@@ -7082,11 +7058,6 @@ packages: | @@ -7082,11 +7058,6 @@ packages: | ||
7082 | engines: {node: '>= 4'} | 7058 | engines: {node: '>= 4'} |
7083 | dev: true | 7059 | dev: true |
7084 | 7060 | ||
7085 | - /ignore/5.1.9: | ||
7086 | - resolution: {integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==} | ||
7087 | - engines: {node: '>= 4'} | ||
7088 | - dev: true | ||
7089 | - | ||
7090 | /ignore/5.2.0: | 7061 | /ignore/5.2.0: |
7091 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} | 7062 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} |
7092 | engines: {node: '>= 4'} | 7063 | engines: {node: '>= 4'} |
@@ -7676,24 +7647,12 @@ packages: | @@ -7676,24 +7647,12 @@ packages: | ||
7676 | engines: {node: '>=8'} | 7647 | engines: {node: '>=8'} |
7677 | dev: true | 7648 | dev: true |
7678 | 7649 | ||
7679 | - /istanbul-lib-instrument/4.0.3: | ||
7680 | - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} | ||
7681 | - engines: {node: '>=8'} | ||
7682 | - dependencies: | ||
7683 | - '@babel/core': 7.16.5 | ||
7684 | - '@istanbuljs/schema': 0.1.3 | ||
7685 | - istanbul-lib-coverage: 3.2.0 | ||
7686 | - semver: 6.3.0 | ||
7687 | - transitivePeerDependencies: | ||
7688 | - - supports-color | ||
7689 | - dev: true | ||
7690 | - | ||
7691 | /istanbul-lib-instrument/5.1.0: | 7650 | /istanbul-lib-instrument/5.1.0: |
7692 | resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==} | 7651 | resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==} |
7693 | engines: {node: '>=8'} | 7652 | engines: {node: '>=8'} |
7694 | dependencies: | 7653 | dependencies: |
7695 | - '@babel/core': 7.16.0 | ||
7696 | - '@babel/parser': 7.16.4 | 7654 | + '@babel/core': 7.16.5 |
7655 | + '@babel/parser': 7.16.6 | ||
7697 | '@istanbuljs/schema': 0.1.3 | 7656 | '@istanbuljs/schema': 0.1.3 |
7698 | istanbul-lib-coverage: 3.2.0 | 7657 | istanbul-lib-coverage: 3.2.0 |
7699 | semver: 6.3.0 | 7658 | semver: 6.3.0 |
@@ -7721,8 +7680,8 @@ packages: | @@ -7721,8 +7680,8 @@ packages: | ||
7721 | - supports-color | 7680 | - supports-color |
7722 | dev: true | 7681 | dev: true |
7723 | 7682 | ||
7724 | - /istanbul-reports/3.0.5: | ||
7725 | - resolution: {integrity: sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==} | 7683 | + /istanbul-reports/3.1.3: |
7684 | + resolution: {integrity: sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==} | ||
7726 | engines: {node: '>=8'} | 7685 | engines: {node: '>=8'} |
7727 | dependencies: | 7686 | dependencies: |
7728 | html-escaper: 2.0.2 | 7687 | html-escaper: 2.0.2 |
@@ -7756,26 +7715,26 @@ packages: | @@ -7756,26 +7715,26 @@ packages: | ||
7756 | throat: 6.0.1 | 7715 | throat: 6.0.1 |
7757 | dev: true | 7716 | dev: true |
7758 | 7717 | ||
7759 | - /jest-circus/27.4.5: | ||
7760 | - resolution: {integrity: sha512-eTNWa9wsvBwPykhMMShheafbwyakcdHZaEYh5iRrQ0PFJxkDP/e3U/FvzGuKWu2WpwUA3C3hPlfpuzvOdTVqnw==} | 7718 | + /jest-circus/27.4.6: |
7719 | + resolution: {integrity: sha512-UA7AI5HZrW4wRM72Ro80uRR2Fg+7nR0GESbSI/2M+ambbzVuA63mn5T1p3Z/wlhntzGpIG1xx78GP2YIkf6PhQ==} | ||
7761 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7720 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7762 | dependencies: | 7721 | dependencies: |
7763 | - '@jest/environment': 27.4.4 | ||
7764 | - '@jest/test-result': 27.4.2 | 7722 | + '@jest/environment': 27.4.6 |
7723 | + '@jest/test-result': 27.4.6 | ||
7765 | '@jest/types': 27.4.2 | 7724 | '@jest/types': 27.4.2 |
7766 | - '@types/node': 17.0.5 | 7725 | + '@types/node': 17.0.9 |
7767 | chalk: 4.1.2 | 7726 | chalk: 4.1.2 |
7768 | co: 4.6.0 | 7727 | co: 4.6.0 |
7769 | dedent: 0.7.0 | 7728 | dedent: 0.7.0 |
7770 | - expect: 27.4.2 | 7729 | + expect: 27.4.6 |
7771 | is-generator-fn: 2.1.0 | 7730 | is-generator-fn: 2.1.0 |
7772 | - jest-each: 27.4.2 | ||
7773 | - jest-matcher-utils: 27.4.2 | ||
7774 | - jest-message-util: 27.4.2 | ||
7775 | - jest-runtime: 27.4.5 | ||
7776 | - jest-snapshot: 27.4.5 | 7731 | + jest-each: 27.4.6 |
7732 | + jest-matcher-utils: 27.4.6 | ||
7733 | + jest-message-util: 27.4.6 | ||
7734 | + jest-runtime: 27.4.6 | ||
7735 | + jest-snapshot: 27.4.6 | ||
7777 | jest-util: 27.4.2 | 7736 | jest-util: 27.4.2 |
7778 | - pretty-format: 27.4.2 | 7737 | + pretty-format: 27.4.6 |
7779 | slash: 3.0.0 | 7738 | slash: 3.0.0 |
7780 | stack-utils: 2.0.5 | 7739 | stack-utils: 2.0.5 |
7781 | throat: 6.0.1 | 7740 | throat: 6.0.1 |
@@ -7783,8 +7742,8 @@ packages: | @@ -7783,8 +7742,8 @@ packages: | ||
7783 | - supports-color | 7742 | - supports-color |
7784 | dev: true | 7743 | dev: true |
7785 | 7744 | ||
7786 | - /jest-cli/27.4.5_ts-node@10.4.0: | ||
7787 | - resolution: {integrity: sha512-hrky3DSgE0u7sQxaCL7bdebEPHx5QzYmrGuUjaPLmPE8jx5adtvGuOlRspvMoVLTTDOHRnZDoRLYJuA+VCI7Hg==} | 7745 | + /jest-cli/27.4.7_ts-node@10.4.0: |
7746 | + resolution: {integrity: sha512-zREYhvjjqe1KsGV15mdnxjThKNDgza1fhDT+iUsXWLCq3sxe9w5xnvyctcYVT5PcdLSjv7Y5dCwTS3FCF1tiuw==} | ||
7788 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7747 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7789 | hasBin: true | 7748 | hasBin: true |
7790 | peerDependencies: | 7749 | peerDependencies: |
@@ -7793,16 +7752,16 @@ packages: | @@ -7793,16 +7752,16 @@ packages: | ||
7793 | node-notifier: | 7752 | node-notifier: |
7794 | optional: true | 7753 | optional: true |
7795 | dependencies: | 7754 | dependencies: |
7796 | - '@jest/core': 27.4.5_ts-node@10.4.0 | ||
7797 | - '@jest/test-result': 27.4.2 | 7755 | + '@jest/core': 27.4.7_ts-node@10.4.0 |
7756 | + '@jest/test-result': 27.4.6 | ||
7798 | '@jest/types': 27.4.2 | 7757 | '@jest/types': 27.4.2 |
7799 | chalk: 4.1.2 | 7758 | chalk: 4.1.2 |
7800 | exit: 0.1.2 | 7759 | exit: 0.1.2 |
7801 | graceful-fs: 4.2.8 | 7760 | graceful-fs: 4.2.8 |
7802 | import-local: 3.0.3 | 7761 | import-local: 3.0.3 |
7803 | - jest-config: 27.4.5_ts-node@10.4.0 | 7762 | + jest-config: 27.4.7_ts-node@10.4.0 |
7804 | jest-util: 27.4.2 | 7763 | jest-util: 27.4.2 |
7805 | - jest-validate: 27.4.2 | 7764 | + jest-validate: 27.4.6 |
7806 | prompts: 2.4.2 | 7765 | prompts: 2.4.2 |
7807 | yargs: 16.2.0 | 7766 | yargs: 16.2.0 |
7808 | transitivePeerDependencies: | 7767 | transitivePeerDependencies: |
@@ -7813,8 +7772,8 @@ packages: | @@ -7813,8 +7772,8 @@ packages: | ||
7813 | - utf-8-validate | 7772 | - utf-8-validate |
7814 | dev: true | 7773 | dev: true |
7815 | 7774 | ||
7816 | - /jest-config/27.4.5_ts-node@10.4.0: | ||
7817 | - resolution: {integrity: sha512-t+STVJtPt+fpqQ8GBw850NtSQbnDOw/UzdPfzDaHQ48/AylQlW7LHj3dH+ndxhC1UxJ0Q3qkq7IH+nM1skwTwA==} | 7775 | + /jest-config/27.4.7_ts-node@10.4.0: |
7776 | + resolution: {integrity: sha512-xz/o/KJJEedHMrIY9v2ParIoYSrSVY6IVeE4z5Z3i101GoA5XgfbJz+1C8EYPsv7u7f39dS8F9v46BHDhn0vlw==} | ||
7818 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7777 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7819 | peerDependencies: | 7778 | peerDependencies: |
7820 | ts-node: '>=9.0.0' | 7779 | ts-node: '>=9.0.0' |
@@ -7822,29 +7781,29 @@ packages: | @@ -7822,29 +7781,29 @@ packages: | ||
7822 | ts-node: | 7781 | ts-node: |
7823 | optional: true | 7782 | optional: true |
7824 | dependencies: | 7783 | dependencies: |
7825 | - '@babel/core': 7.16.0 | ||
7826 | - '@jest/test-sequencer': 27.4.5 | 7784 | + '@babel/core': 7.16.5 |
7785 | + '@jest/test-sequencer': 27.4.6 | ||
7827 | '@jest/types': 27.4.2 | 7786 | '@jest/types': 27.4.2 |
7828 | - babel-jest: 27.4.5_@babel+core@7.16.0 | 7787 | + babel-jest: 27.4.6_@babel+core@7.16.5 |
7829 | chalk: 4.1.2 | 7788 | chalk: 4.1.2 |
7830 | ci-info: 3.3.0 | 7789 | ci-info: 3.3.0 |
7831 | deepmerge: 4.2.2 | 7790 | deepmerge: 4.2.2 |
7832 | glob: 7.2.0 | 7791 | glob: 7.2.0 |
7833 | graceful-fs: 4.2.8 | 7792 | graceful-fs: 4.2.8 |
7834 | - jest-circus: 27.4.5 | ||
7835 | - jest-environment-jsdom: 27.4.4 | ||
7836 | - jest-environment-node: 27.4.4 | 7793 | + jest-circus: 27.4.6 |
7794 | + jest-environment-jsdom: 27.4.6 | ||
7795 | + jest-environment-node: 27.4.6 | ||
7837 | jest-get-type: 27.4.0 | 7796 | jest-get-type: 27.4.0 |
7838 | - jest-jasmine2: 27.4.5 | 7797 | + jest-jasmine2: 27.4.6 |
7839 | jest-regex-util: 27.4.0 | 7798 | jest-regex-util: 27.4.0 |
7840 | - jest-resolve: 27.4.5 | ||
7841 | - jest-runner: 27.4.5 | 7799 | + jest-resolve: 27.4.6 |
7800 | + jest-runner: 27.4.6 | ||
7842 | jest-util: 27.4.2 | 7801 | jest-util: 27.4.2 |
7843 | - jest-validate: 27.4.2 | 7802 | + jest-validate: 27.4.6 |
7844 | micromatch: 4.0.4 | 7803 | micromatch: 4.0.4 |
7845 | - pretty-format: 27.4.2 | 7804 | + pretty-format: 27.4.6 |
7846 | slash: 3.0.0 | 7805 | slash: 3.0.0 |
7847 | - ts-node: 10.4.0_bad060d5f9aca5284661d88d739ba15b | 7806 | + ts-node: 10.4.0_58ff8c2ecf784f4683a8548a58a2b611 |
7848 | transitivePeerDependencies: | 7807 | transitivePeerDependencies: |
7849 | - bufferutil | 7808 | - bufferutil |
7850 | - canvas | 7809 | - canvas |
@@ -7852,24 +7811,24 @@ packages: | @@ -7852,24 +7811,24 @@ packages: | ||
7852 | - utf-8-validate | 7811 | - utf-8-validate |
7853 | dev: true | 7812 | dev: true |
7854 | 7813 | ||
7855 | - /jest-diff/27.3.1: | ||
7856 | - resolution: {integrity: sha512-PCeuAH4AWUo2O5+ksW4pL9v5xJAcIKPUPfIhZBcG1RKv/0+dvaWTQK1Nrau8d67dp65fOqbeMdoil+6PedyEPQ==} | 7814 | + /jest-diff/27.4.2: |
7815 | + resolution: {integrity: sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==} | ||
7857 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7816 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7858 | dependencies: | 7817 | dependencies: |
7859 | chalk: 4.1.2 | 7818 | chalk: 4.1.2 |
7860 | - diff-sequences: 27.0.6 | ||
7861 | - jest-get-type: 27.3.1 | ||
7862 | - pretty-format: 27.3.1 | 7819 | + diff-sequences: 27.4.0 |
7820 | + jest-get-type: 27.4.0 | ||
7821 | + pretty-format: 27.4.2 | ||
7863 | dev: true | 7822 | dev: true |
7864 | 7823 | ||
7865 | - /jest-diff/27.4.2: | ||
7866 | - resolution: {integrity: sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==} | 7824 | + /jest-diff/27.4.6: |
7825 | + resolution: {integrity: sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==} | ||
7867 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7826 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7868 | dependencies: | 7827 | dependencies: |
7869 | chalk: 4.1.2 | 7828 | chalk: 4.1.2 |
7870 | diff-sequences: 27.4.0 | 7829 | diff-sequences: 27.4.0 |
7871 | jest-get-type: 27.4.0 | 7830 | jest-get-type: 27.4.0 |
7872 | - pretty-format: 27.4.2 | 7831 | + pretty-format: 27.4.6 |
7873 | dev: true | 7832 | dev: true |
7874 | 7833 | ||
7875 | /jest-docblock/27.4.0: | 7834 | /jest-docblock/27.4.0: |
@@ -7879,26 +7838,26 @@ packages: | @@ -7879,26 +7838,26 @@ packages: | ||
7879 | detect-newline: 3.1.0 | 7838 | detect-newline: 3.1.0 |
7880 | dev: true | 7839 | dev: true |
7881 | 7840 | ||
7882 | - /jest-each/27.4.2: | ||
7883 | - resolution: {integrity: sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg==} | 7841 | + /jest-each/27.4.6: |
7842 | + resolution: {integrity: sha512-n6QDq8y2Hsmn22tRkgAk+z6MCX7MeVlAzxmZDshfS2jLcaBlyhpF3tZSJLR+kXmh23GEvS0ojMR8i6ZeRvpQcA==} | ||
7884 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7843 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7885 | dependencies: | 7844 | dependencies: |
7886 | '@jest/types': 27.4.2 | 7845 | '@jest/types': 27.4.2 |
7887 | chalk: 4.1.2 | 7846 | chalk: 4.1.2 |
7888 | jest-get-type: 27.4.0 | 7847 | jest-get-type: 27.4.0 |
7889 | jest-util: 27.4.2 | 7848 | jest-util: 27.4.2 |
7890 | - pretty-format: 27.4.2 | 7849 | + pretty-format: 27.4.6 |
7891 | dev: true | 7850 | dev: true |
7892 | 7851 | ||
7893 | - /jest-environment-jsdom/27.4.4: | ||
7894 | - resolution: {integrity: sha512-cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA==} | 7852 | + /jest-environment-jsdom/27.4.6: |
7853 | + resolution: {integrity: sha512-o3dx5p/kHPbUlRvSNjypEcEtgs6LmvESMzgRFQE6c+Prwl2JLA4RZ7qAnxc5VM8kutsGRTB15jXeeSbJsKN9iA==} | ||
7895 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7854 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7896 | dependencies: | 7855 | dependencies: |
7897 | - '@jest/environment': 27.4.4 | ||
7898 | - '@jest/fake-timers': 27.4.2 | 7856 | + '@jest/environment': 27.4.6 |
7857 | + '@jest/fake-timers': 27.4.6 | ||
7899 | '@jest/types': 27.4.2 | 7858 | '@jest/types': 27.4.2 |
7900 | - '@types/node': 17.0.5 | ||
7901 | - jest-mock: 27.4.2 | 7859 | + '@types/node': 17.0.9 |
7860 | + jest-mock: 27.4.6 | ||
7902 | jest-util: 27.4.2 | 7861 | jest-util: 27.4.2 |
7903 | jsdom: 16.7.0 | 7862 | jsdom: 16.7.0 |
7904 | transitivePeerDependencies: | 7863 | transitivePeerDependencies: |
@@ -7908,94 +7867,88 @@ packages: | @@ -7908,94 +7867,88 @@ packages: | ||
7908 | - utf-8-validate | 7867 | - utf-8-validate |
7909 | dev: true | 7868 | dev: true |
7910 | 7869 | ||
7911 | - /jest-environment-node/27.4.4: | ||
7912 | - resolution: {integrity: sha512-D+v3lbJ2GjQTQR23TK0kY3vFVmSeea05giInI41HHOaJnAwOnmUHTZgUaZL+VxUB43pIzoa7PMwWtCVlIUoVoA==} | 7870 | + /jest-environment-node/27.4.6: |
7871 | + resolution: {integrity: sha512-yfHlZ9m+kzTKZV0hVfhVu6GuDxKAYeFHrfulmy7Jxwsq4V7+ZK7f+c0XP/tbVDMQW7E4neG2u147hFkuVz0MlQ==} | ||
7913 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7872 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7914 | dependencies: | 7873 | dependencies: |
7915 | - '@jest/environment': 27.4.4 | ||
7916 | - '@jest/fake-timers': 27.4.2 | 7874 | + '@jest/environment': 27.4.6 |
7875 | + '@jest/fake-timers': 27.4.6 | ||
7917 | '@jest/types': 27.4.2 | 7876 | '@jest/types': 27.4.2 |
7918 | - '@types/node': 17.0.5 | ||
7919 | - jest-mock: 27.4.2 | 7877 | + '@types/node': 17.0.9 |
7878 | + jest-mock: 27.4.6 | ||
7920 | jest-util: 27.4.2 | 7879 | jest-util: 27.4.2 |
7921 | dev: true | 7880 | dev: true |
7922 | 7881 | ||
7923 | - /jest-get-type/27.3.1: | ||
7924 | - resolution: {integrity: sha512-+Ilqi8hgHSAdhlQ3s12CAVNd8H96ZkQBfYoXmArzZnOfAtVAJEiPDBirjByEblvG/4LPJmkL+nBqPO3A1YJAEg==} | ||
7925 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | ||
7926 | - dev: true | ||
7927 | - | ||
7928 | /jest-get-type/27.4.0: | 7882 | /jest-get-type/27.4.0: |
7929 | resolution: {integrity: sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==} | 7883 | resolution: {integrity: sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==} |
7930 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7884 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7931 | dev: true | 7885 | dev: true |
7932 | 7886 | ||
7933 | - /jest-haste-map/27.4.5: | ||
7934 | - resolution: {integrity: sha512-oJm1b5qhhPs78K24EDGifWS0dELYxnoBiDhatT/FThgB9yxqUm5F6li3Pv+Q+apMBmmPNzOBnZ7ZxWMB1Leq1Q==} | 7887 | + /jest-haste-map/27.4.6: |
7888 | + resolution: {integrity: sha512-0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ==} | ||
7935 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7889 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7936 | dependencies: | 7890 | dependencies: |
7937 | '@jest/types': 27.4.2 | 7891 | '@jest/types': 27.4.2 |
7938 | '@types/graceful-fs': 4.1.5 | 7892 | '@types/graceful-fs': 4.1.5 |
7939 | - '@types/node': 17.0.5 | 7893 | + '@types/node': 17.0.9 |
7940 | anymatch: 3.1.2 | 7894 | anymatch: 3.1.2 |
7941 | fb-watchman: 2.0.1 | 7895 | fb-watchman: 2.0.1 |
7942 | graceful-fs: 4.2.8 | 7896 | graceful-fs: 4.2.8 |
7943 | jest-regex-util: 27.4.0 | 7897 | jest-regex-util: 27.4.0 |
7944 | jest-serializer: 27.4.0 | 7898 | jest-serializer: 27.4.0 |
7945 | jest-util: 27.4.2 | 7899 | jest-util: 27.4.2 |
7946 | - jest-worker: 27.4.5 | 7900 | + jest-worker: 27.4.6 |
7947 | micromatch: 4.0.4 | 7901 | micromatch: 4.0.4 |
7948 | walker: 1.0.8 | 7902 | walker: 1.0.8 |
7949 | optionalDependencies: | 7903 | optionalDependencies: |
7950 | fsevents: 2.3.2 | 7904 | fsevents: 2.3.2 |
7951 | dev: true | 7905 | dev: true |
7952 | 7906 | ||
7953 | - /jest-jasmine2/27.4.5: | ||
7954 | - resolution: {integrity: sha512-oUnvwhJDj2LhOiUB1kdnJjkx8C5PwgUZQb9urF77mELH9DGR4e2GqpWQKBOYXWs5+uTN9BGDqRz3Aeg5Wts7aw==} | 7907 | + /jest-jasmine2/27.4.6: |
7908 | + resolution: {integrity: sha512-uAGNXF644I/whzhsf7/qf74gqy9OuhvJ0XYp8SDecX2ooGeaPnmJMjXjKt0mqh1Rl5dtRGxJgNrHlBQIBfS5Nw==} | ||
7955 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7909 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7956 | dependencies: | 7910 | dependencies: |
7957 | - '@babel/traverse': 7.16.3 | ||
7958 | - '@jest/environment': 27.4.4 | 7911 | + '@jest/environment': 27.4.6 |
7959 | '@jest/source-map': 27.4.0 | 7912 | '@jest/source-map': 27.4.0 |
7960 | - '@jest/test-result': 27.4.2 | 7913 | + '@jest/test-result': 27.4.6 |
7961 | '@jest/types': 27.4.2 | 7914 | '@jest/types': 27.4.2 |
7962 | - '@types/node': 17.0.5 | 7915 | + '@types/node': 17.0.9 |
7963 | chalk: 4.1.2 | 7916 | chalk: 4.1.2 |
7964 | co: 4.6.0 | 7917 | co: 4.6.0 |
7965 | - expect: 27.4.2 | 7918 | + expect: 27.4.6 |
7966 | is-generator-fn: 2.1.0 | 7919 | is-generator-fn: 2.1.0 |
7967 | - jest-each: 27.4.2 | ||
7968 | - jest-matcher-utils: 27.4.2 | ||
7969 | - jest-message-util: 27.4.2 | ||
7970 | - jest-runtime: 27.4.5 | ||
7971 | - jest-snapshot: 27.4.5 | 7920 | + jest-each: 27.4.6 |
7921 | + jest-matcher-utils: 27.4.6 | ||
7922 | + jest-message-util: 27.4.6 | ||
7923 | + jest-runtime: 27.4.6 | ||
7924 | + jest-snapshot: 27.4.6 | ||
7972 | jest-util: 27.4.2 | 7925 | jest-util: 27.4.2 |
7973 | - pretty-format: 27.4.2 | 7926 | + pretty-format: 27.4.6 |
7974 | throat: 6.0.1 | 7927 | throat: 6.0.1 |
7975 | transitivePeerDependencies: | 7928 | transitivePeerDependencies: |
7976 | - supports-color | 7929 | - supports-color |
7977 | dev: true | 7930 | dev: true |
7978 | 7931 | ||
7979 | - /jest-leak-detector/27.4.2: | ||
7980 | - resolution: {integrity: sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw==} | 7932 | + /jest-leak-detector/27.4.6: |
7933 | + resolution: {integrity: sha512-kkaGixDf9R7CjHm2pOzfTxZTQQQ2gHTIWKY/JZSiYTc90bZp8kSZnUMS3uLAfwTZwc0tcMRoEX74e14LG1WapA==} | ||
7981 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7934 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7982 | dependencies: | 7935 | dependencies: |
7983 | jest-get-type: 27.4.0 | 7936 | jest-get-type: 27.4.0 |
7984 | - pretty-format: 27.4.2 | 7937 | + pretty-format: 27.4.6 |
7985 | dev: true | 7938 | dev: true |
7986 | 7939 | ||
7987 | - /jest-matcher-utils/27.4.2: | ||
7988 | - resolution: {integrity: sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ==} | 7940 | + /jest-matcher-utils/27.4.6: |
7941 | + resolution: {integrity: sha512-XD4PKT3Wn1LQnRAq7ZsTI0VRuEc9OrCPFiO1XL7bftTGmfNF0DcEwMHRgqiu7NGf8ZoZDREpGrCniDkjt79WbA==} | ||
7989 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7942 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
7990 | dependencies: | 7943 | dependencies: |
7991 | chalk: 4.1.2 | 7944 | chalk: 4.1.2 |
7992 | - jest-diff: 27.4.2 | 7945 | + jest-diff: 27.4.6 |
7993 | jest-get-type: 27.4.0 | 7946 | jest-get-type: 27.4.0 |
7994 | - pretty-format: 27.4.2 | 7947 | + pretty-format: 27.4.6 |
7995 | dev: true | 7948 | dev: true |
7996 | 7949 | ||
7997 | - /jest-message-util/27.4.2: | ||
7998 | - resolution: {integrity: sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==} | 7950 | + /jest-message-util/27.4.6: |
7951 | + resolution: {integrity: sha512-0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA==} | ||
7999 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7952 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8000 | dependencies: | 7953 | dependencies: |
8001 | '@babel/code-frame': 7.16.0 | 7954 | '@babel/code-frame': 7.16.0 |
@@ -8004,20 +7957,20 @@ packages: | @@ -8004,20 +7957,20 @@ packages: | ||
8004 | chalk: 4.1.2 | 7957 | chalk: 4.1.2 |
8005 | graceful-fs: 4.2.8 | 7958 | graceful-fs: 4.2.8 |
8006 | micromatch: 4.0.4 | 7959 | micromatch: 4.0.4 |
8007 | - pretty-format: 27.4.2 | 7960 | + pretty-format: 27.4.6 |
8008 | slash: 3.0.0 | 7961 | slash: 3.0.0 |
8009 | stack-utils: 2.0.5 | 7962 | stack-utils: 2.0.5 |
8010 | dev: true | 7963 | dev: true |
8011 | 7964 | ||
8012 | - /jest-mock/27.4.2: | ||
8013 | - resolution: {integrity: sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==} | 7965 | + /jest-mock/27.4.6: |
7966 | + resolution: {integrity: sha512-kvojdYRkst8iVSZ1EJ+vc1RRD9llueBjKzXzeCytH3dMM7zvPV/ULcfI2nr0v0VUgm3Bjt3hBCQvOeaBz+ZTHw==} | ||
8014 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7967 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8015 | dependencies: | 7968 | dependencies: |
8016 | '@jest/types': 27.4.2 | 7969 | '@jest/types': 27.4.2 |
8017 | - '@types/node': 17.0.5 | 7970 | + '@types/node': 17.0.9 |
8018 | dev: true | 7971 | dev: true |
8019 | 7972 | ||
8020 | - /jest-pnp-resolver/1.2.2_jest-resolve@27.4.5: | 7973 | + /jest-pnp-resolver/1.2.2_jest-resolve@27.4.6: |
8021 | resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} | 7974 | resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} |
8022 | engines: {node: '>=6'} | 7975 | engines: {node: '>=6'} |
8023 | peerDependencies: | 7976 | peerDependencies: |
@@ -8026,7 +7979,7 @@ packages: | @@ -8026,7 +7979,7 @@ packages: | ||
8026 | jest-resolve: | 7979 | jest-resolve: |
8027 | optional: true | 7980 | optional: true |
8028 | dependencies: | 7981 | dependencies: |
8029 | - jest-resolve: 27.4.5 | 7982 | + jest-resolve: 27.4.6 |
8030 | dev: true | 7983 | dev: true |
8031 | 7984 | ||
8032 | /jest-regex-util/27.4.0: | 7985 | /jest-regex-util/27.4.0: |
@@ -8034,57 +7987,57 @@ packages: | @@ -8034,57 +7987,57 @@ packages: | ||
8034 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7987 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8035 | dev: true | 7988 | dev: true |
8036 | 7989 | ||
8037 | - /jest-resolve-dependencies/27.4.5: | ||
8038 | - resolution: {integrity: sha512-elEVvkvRK51y037NshtEkEnukMBWvlPzZHiL847OrIljJ8yIsujD2GXRPqDXC4rEVKbcdsy7W0FxoZb4WmEs7w==} | 7990 | + /jest-resolve-dependencies/27.4.6: |
7991 | + resolution: {integrity: sha512-W85uJZcFXEVZ7+MZqIPCscdjuctruNGXUZ3OHSXOfXR9ITgbUKeHj+uGcies+0SsvI5GtUfTw4dY7u9qjTvQOw==} | ||
8039 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 7992 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8040 | dependencies: | 7993 | dependencies: |
8041 | '@jest/types': 27.4.2 | 7994 | '@jest/types': 27.4.2 |
8042 | jest-regex-util: 27.4.0 | 7995 | jest-regex-util: 27.4.0 |
8043 | - jest-snapshot: 27.4.5 | 7996 | + jest-snapshot: 27.4.6 |
8044 | transitivePeerDependencies: | 7997 | transitivePeerDependencies: |
8045 | - supports-color | 7998 | - supports-color |
8046 | dev: true | 7999 | dev: true |
8047 | 8000 | ||
8048 | - /jest-resolve/27.4.5: | ||
8049 | - resolution: {integrity: sha512-xU3z1BuOz/hUhVUL+918KqUgK+skqOuUsAi7A+iwoUldK6/+PW+utK8l8cxIWT9AW7IAhGNXjSAh1UYmjULZZw==} | 8001 | + /jest-resolve/27.4.6: |
8002 | + resolution: {integrity: sha512-SFfITVApqtirbITKFAO7jOVN45UgFzcRdQanOFzjnbd+CACDoyeX7206JyU92l4cRr73+Qy/TlW51+4vHGt+zw==} | ||
8050 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8003 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8051 | dependencies: | 8004 | dependencies: |
8052 | '@jest/types': 27.4.2 | 8005 | '@jest/types': 27.4.2 |
8053 | chalk: 4.1.2 | 8006 | chalk: 4.1.2 |
8054 | graceful-fs: 4.2.8 | 8007 | graceful-fs: 4.2.8 |
8055 | - jest-haste-map: 27.4.5 | ||
8056 | - jest-pnp-resolver: 1.2.2_jest-resolve@27.4.5 | 8008 | + jest-haste-map: 27.4.6 |
8009 | + jest-pnp-resolver: 1.2.2_jest-resolve@27.4.6 | ||
8057 | jest-util: 27.4.2 | 8010 | jest-util: 27.4.2 |
8058 | - jest-validate: 27.4.2 | 8011 | + jest-validate: 27.4.6 |
8059 | resolve: 1.20.0 | 8012 | resolve: 1.20.0 |
8060 | resolve.exports: 1.1.0 | 8013 | resolve.exports: 1.1.0 |
8061 | slash: 3.0.0 | 8014 | slash: 3.0.0 |
8062 | dev: true | 8015 | dev: true |
8063 | 8016 | ||
8064 | - /jest-runner/27.4.5: | ||
8065 | - resolution: {integrity: sha512-/irauncTfmY1WkTaRQGRWcyQLzK1g98GYG/8QvIPviHgO1Fqz1JYeEIsSfF+9mc/UTA6S+IIHFgKyvUrtiBIZg==} | 8017 | + /jest-runner/27.4.6: |
8018 | + resolution: {integrity: sha512-IDeFt2SG4DzqalYBZRgbbPmpwV3X0DcntjezPBERvnhwKGWTW7C5pbbA5lVkmvgteeNfdd/23gwqv3aiilpYPg==} | ||
8066 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8019 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8067 | dependencies: | 8020 | dependencies: |
8068 | - '@jest/console': 27.4.2 | ||
8069 | - '@jest/environment': 27.4.4 | ||
8070 | - '@jest/test-result': 27.4.2 | ||
8071 | - '@jest/transform': 27.4.5 | 8021 | + '@jest/console': 27.4.6 |
8022 | + '@jest/environment': 27.4.6 | ||
8023 | + '@jest/test-result': 27.4.6 | ||
8024 | + '@jest/transform': 27.4.6 | ||
8072 | '@jest/types': 27.4.2 | 8025 | '@jest/types': 27.4.2 |
8073 | - '@types/node': 17.0.5 | 8026 | + '@types/node': 17.0.9 |
8074 | chalk: 4.1.2 | 8027 | chalk: 4.1.2 |
8075 | emittery: 0.8.1 | 8028 | emittery: 0.8.1 |
8076 | exit: 0.1.2 | 8029 | exit: 0.1.2 |
8077 | graceful-fs: 4.2.8 | 8030 | graceful-fs: 4.2.8 |
8078 | jest-docblock: 27.4.0 | 8031 | jest-docblock: 27.4.0 |
8079 | - jest-environment-jsdom: 27.4.4 | ||
8080 | - jest-environment-node: 27.4.4 | ||
8081 | - jest-haste-map: 27.4.5 | ||
8082 | - jest-leak-detector: 27.4.2 | ||
8083 | - jest-message-util: 27.4.2 | ||
8084 | - jest-resolve: 27.4.5 | ||
8085 | - jest-runtime: 27.4.5 | 8032 | + jest-environment-jsdom: 27.4.6 |
8033 | + jest-environment-node: 27.4.6 | ||
8034 | + jest-haste-map: 27.4.6 | ||
8035 | + jest-leak-detector: 27.4.6 | ||
8036 | + jest-message-util: 27.4.6 | ||
8037 | + jest-resolve: 27.4.6 | ||
8038 | + jest-runtime: 27.4.6 | ||
8086 | jest-util: 27.4.2 | 8039 | jest-util: 27.4.2 |
8087 | - jest-worker: 27.4.5 | 8040 | + jest-worker: 27.4.6 |
8088 | source-map-support: 0.5.21 | 8041 | source-map-support: 0.5.21 |
8089 | throat: 6.0.1 | 8042 | throat: 6.0.1 |
8090 | transitivePeerDependencies: | 8043 | transitivePeerDependencies: |
@@ -8094,36 +8047,32 @@ packages: | @@ -8094,36 +8047,32 @@ packages: | ||
8094 | - utf-8-validate | 8047 | - utf-8-validate |
8095 | dev: true | 8048 | dev: true |
8096 | 8049 | ||
8097 | - /jest-runtime/27.4.5: | ||
8098 | - resolution: {integrity: sha512-CIYqwuJQXHQtPd/idgrx4zgJ6iCb6uBjQq1RSAGQrw2S8XifDmoM1Ot8NRd80ooAm+ZNdHVwsktIMGlA1F1FAQ==} | 8050 | + /jest-runtime/27.4.6: |
8051 | + resolution: {integrity: sha512-eXYeoR/MbIpVDrjqy5d6cGCFOYBFFDeKaNWqTp0h6E74dK0zLHzASQXJpl5a2/40euBmKnprNLJ0Kh0LCndnWQ==} | ||
8099 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8052 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8100 | dependencies: | 8053 | dependencies: |
8101 | - '@jest/console': 27.4.2 | ||
8102 | - '@jest/environment': 27.4.4 | ||
8103 | - '@jest/globals': 27.4.4 | 8054 | + '@jest/environment': 27.4.6 |
8055 | + '@jest/fake-timers': 27.4.6 | ||
8056 | + '@jest/globals': 27.4.6 | ||
8104 | '@jest/source-map': 27.4.0 | 8057 | '@jest/source-map': 27.4.0 |
8105 | - '@jest/test-result': 27.4.2 | ||
8106 | - '@jest/transform': 27.4.5 | 8058 | + '@jest/test-result': 27.4.6 |
8059 | + '@jest/transform': 27.4.6 | ||
8107 | '@jest/types': 27.4.2 | 8060 | '@jest/types': 27.4.2 |
8108 | - '@types/yargs': 16.0.4 | ||
8109 | chalk: 4.1.2 | 8061 | chalk: 4.1.2 |
8110 | cjs-module-lexer: 1.2.2 | 8062 | cjs-module-lexer: 1.2.2 |
8111 | collect-v8-coverage: 1.0.1 | 8063 | collect-v8-coverage: 1.0.1 |
8112 | execa: 5.1.1 | 8064 | execa: 5.1.1 |
8113 | - exit: 0.1.2 | ||
8114 | glob: 7.2.0 | 8065 | glob: 7.2.0 |
8115 | graceful-fs: 4.2.8 | 8066 | graceful-fs: 4.2.8 |
8116 | - jest-haste-map: 27.4.5 | ||
8117 | - jest-message-util: 27.4.2 | ||
8118 | - jest-mock: 27.4.2 | 8067 | + jest-haste-map: 27.4.6 |
8068 | + jest-message-util: 27.4.6 | ||
8069 | + jest-mock: 27.4.6 | ||
8119 | jest-regex-util: 27.4.0 | 8070 | jest-regex-util: 27.4.0 |
8120 | - jest-resolve: 27.4.5 | ||
8121 | - jest-snapshot: 27.4.5 | 8071 | + jest-resolve: 27.4.6 |
8072 | + jest-snapshot: 27.4.6 | ||
8122 | jest-util: 27.4.2 | 8073 | jest-util: 27.4.2 |
8123 | - jest-validate: 27.4.2 | ||
8124 | slash: 3.0.0 | 8074 | slash: 3.0.0 |
8125 | strip-bom: 4.0.0 | 8075 | strip-bom: 4.0.0 |
8126 | - yargs: 16.2.0 | ||
8127 | transitivePeerDependencies: | 8076 | transitivePeerDependencies: |
8128 | - supports-color | 8077 | - supports-color |
8129 | dev: true | 8078 | dev: true |
@@ -8132,37 +8081,35 @@ packages: | @@ -8132,37 +8081,35 @@ packages: | ||
8132 | resolution: {integrity: sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==} | 8081 | resolution: {integrity: sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==} |
8133 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8082 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8134 | dependencies: | 8083 | dependencies: |
8135 | - '@types/node': 17.0.5 | 8084 | + '@types/node': 17.0.9 |
8136 | graceful-fs: 4.2.8 | 8085 | graceful-fs: 4.2.8 |
8137 | dev: true | 8086 | dev: true |
8138 | 8087 | ||
8139 | - /jest-snapshot/27.4.5: | ||
8140 | - resolution: {integrity: sha512-eCi/iM1YJFrJWiT9de4+RpWWWBqsHiYxFG9V9o/n0WXs6GpW4lUt4FAHAgFPTLPqCUVzrMQmSmTZSgQzwqR7IQ==} | 8088 | + /jest-snapshot/27.4.6: |
8089 | + resolution: {integrity: sha512-fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ==} | ||
8141 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8090 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8142 | dependencies: | 8091 | dependencies: |
8143 | '@babel/core': 7.16.5 | 8092 | '@babel/core': 7.16.5 |
8144 | - '@babel/generator': 7.16.0 | ||
8145 | - '@babel/parser': 7.16.4 | 8093 | + '@babel/generator': 7.16.5 |
8146 | '@babel/plugin-syntax-typescript': 7.16.0_@babel+core@7.16.5 | 8094 | '@babel/plugin-syntax-typescript': 7.16.0_@babel+core@7.16.5 |
8147 | - '@babel/traverse': 7.16.3 | 8095 | + '@babel/traverse': 7.16.5 |
8148 | '@babel/types': 7.16.0 | 8096 | '@babel/types': 7.16.0 |
8149 | - '@jest/transform': 27.4.5 | 8097 | + '@jest/transform': 27.4.6 |
8150 | '@jest/types': 27.4.2 | 8098 | '@jest/types': 27.4.2 |
8151 | '@types/babel__traverse': 7.14.2 | 8099 | '@types/babel__traverse': 7.14.2 |
8152 | '@types/prettier': 2.4.2 | 8100 | '@types/prettier': 2.4.2 |
8153 | babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.5 | 8101 | babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.5 |
8154 | chalk: 4.1.2 | 8102 | chalk: 4.1.2 |
8155 | - expect: 27.4.2 | 8103 | + expect: 27.4.6 |
8156 | graceful-fs: 4.2.8 | 8104 | graceful-fs: 4.2.8 |
8157 | - jest-diff: 27.4.2 | 8105 | + jest-diff: 27.4.6 |
8158 | jest-get-type: 27.4.0 | 8106 | jest-get-type: 27.4.0 |
8159 | - jest-haste-map: 27.4.5 | ||
8160 | - jest-matcher-utils: 27.4.2 | ||
8161 | - jest-message-util: 27.4.2 | ||
8162 | - jest-resolve: 27.4.5 | 8107 | + jest-haste-map: 27.4.6 |
8108 | + jest-matcher-utils: 27.4.6 | ||
8109 | + jest-message-util: 27.4.6 | ||
8163 | jest-util: 27.4.2 | 8110 | jest-util: 27.4.2 |
8164 | natural-compare: 1.4.0 | 8111 | natural-compare: 1.4.0 |
8165 | - pretty-format: 27.4.2 | 8112 | + pretty-format: 27.4.6 |
8166 | semver: 7.3.5 | 8113 | semver: 7.3.5 |
8167 | transitivePeerDependencies: | 8114 | transitivePeerDependencies: |
8168 | - supports-color | 8115 | - supports-color |
@@ -8173,15 +8120,15 @@ packages: | @@ -8173,15 +8120,15 @@ packages: | ||
8173 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8120 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8174 | dependencies: | 8121 | dependencies: |
8175 | '@jest/types': 27.4.2 | 8122 | '@jest/types': 27.4.2 |
8176 | - '@types/node': 17.0.5 | 8123 | + '@types/node': 17.0.9 |
8177 | chalk: 4.1.2 | 8124 | chalk: 4.1.2 |
8178 | ci-info: 3.3.0 | 8125 | ci-info: 3.3.0 |
8179 | graceful-fs: 4.2.8 | 8126 | graceful-fs: 4.2.8 |
8180 | picomatch: 2.3.0 | 8127 | picomatch: 2.3.0 |
8181 | dev: true | 8128 | dev: true |
8182 | 8129 | ||
8183 | - /jest-validate/27.4.2: | ||
8184 | - resolution: {integrity: sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A==} | 8130 | + /jest-validate/27.4.6: |
8131 | + resolution: {integrity: sha512-872mEmCPVlBqbA5dToC57vA3yJaMRfIdpCoD3cyHWJOMx+SJwLNw0I71EkWs41oza/Er9Zno9XuTkRYCPDUJXQ==} | ||
8185 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8132 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8186 | dependencies: | 8133 | dependencies: |
8187 | '@jest/types': 27.4.2 | 8134 | '@jest/types': 27.4.2 |
@@ -8189,16 +8136,16 @@ packages: | @@ -8189,16 +8136,16 @@ packages: | ||
8189 | chalk: 4.1.2 | 8136 | chalk: 4.1.2 |
8190 | jest-get-type: 27.4.0 | 8137 | jest-get-type: 27.4.0 |
8191 | leven: 3.1.0 | 8138 | leven: 3.1.0 |
8192 | - pretty-format: 27.4.2 | 8139 | + pretty-format: 27.4.6 |
8193 | dev: true | 8140 | dev: true |
8194 | 8141 | ||
8195 | - /jest-watcher/27.4.2: | ||
8196 | - resolution: {integrity: sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg==} | 8142 | + /jest-watcher/27.4.6: |
8143 | + resolution: {integrity: sha512-yKQ20OMBiCDigbD0quhQKLkBO+ObGN79MO4nT7YaCuQ5SM+dkBNWE8cZX0FjU6czwMvWw6StWbe+Wv4jJPJ+fw==} | ||
8197 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8144 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8198 | dependencies: | 8145 | dependencies: |
8199 | - '@jest/test-result': 27.4.2 | 8146 | + '@jest/test-result': 27.4.6 |
8200 | '@jest/types': 27.4.2 | 8147 | '@jest/types': 27.4.2 |
8201 | - '@types/node': 17.0.5 | 8148 | + '@types/node': 17.0.9 |
8202 | ansi-escapes: 4.3.2 | 8149 | ansi-escapes: 4.3.2 |
8203 | chalk: 4.1.2 | 8150 | chalk: 4.1.2 |
8204 | jest-util: 27.4.2 | 8151 | jest-util: 27.4.2 |
@@ -8209,22 +8156,22 @@ packages: | @@ -8209,22 +8156,22 @@ packages: | ||
8209 | resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} | 8156 | resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} |
8210 | engines: {node: '>= 10.13.0'} | 8157 | engines: {node: '>= 10.13.0'} |
8211 | dependencies: | 8158 | dependencies: |
8212 | - '@types/node': 17.0.5 | 8159 | + '@types/node': 17.0.9 |
8213 | merge-stream: 2.0.0 | 8160 | merge-stream: 2.0.0 |
8214 | supports-color: 7.2.0 | 8161 | supports-color: 7.2.0 |
8215 | dev: true | 8162 | dev: true |
8216 | 8163 | ||
8217 | - /jest-worker/27.4.5: | ||
8218 | - resolution: {integrity: sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg==} | 8164 | + /jest-worker/27.4.6: |
8165 | + resolution: {integrity: sha512-gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw==} | ||
8219 | engines: {node: '>= 10.13.0'} | 8166 | engines: {node: '>= 10.13.0'} |
8220 | dependencies: | 8167 | dependencies: |
8221 | - '@types/node': 17.0.5 | 8168 | + '@types/node': 17.0.9 |
8222 | merge-stream: 2.0.0 | 8169 | merge-stream: 2.0.0 |
8223 | supports-color: 8.1.1 | 8170 | supports-color: 8.1.1 |
8224 | dev: true | 8171 | dev: true |
8225 | 8172 | ||
8226 | - /jest/27.4.5_ts-node@10.4.0: | ||
8227 | - resolution: {integrity: sha512-uT5MiVN3Jppt314kidCk47MYIRilJjA/l2mxwiuzzxGUeJIvA8/pDaJOAX5KWvjAo7SCydcW0/4WEtgbLMiJkg==} | 8173 | + /jest/27.4.7_ts-node@10.4.0: |
8174 | + resolution: {integrity: sha512-8heYvsx7nV/m8m24Vk26Y87g73Ba6ueUd0MWed/NXMhSZIm62U/llVbS0PJe1SHunbyXjJ/BqG1z9bFjGUIvTg==} | ||
8228 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 8175 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
8229 | hasBin: true | 8176 | hasBin: true |
8230 | peerDependencies: | 8177 | peerDependencies: |
@@ -8233,9 +8180,9 @@ packages: | @@ -8233,9 +8180,9 @@ packages: | ||
8233 | node-notifier: | 8180 | node-notifier: |
8234 | optional: true | 8181 | optional: true |
8235 | dependencies: | 8182 | dependencies: |
8236 | - '@jest/core': 27.4.5_ts-node@10.4.0 | 8183 | + '@jest/core': 27.4.7_ts-node@10.4.0 |
8237 | import-local: 3.0.3 | 8184 | import-local: 3.0.3 |
8238 | - jest-cli: 27.4.5_ts-node@10.4.0 | 8185 | + jest-cli: 27.4.7_ts-node@10.4.0 |
8239 | transitivePeerDependencies: | 8186 | transitivePeerDependencies: |
8240 | - bufferutil | 8187 | - bufferutil |
8241 | - canvas | 8188 | - canvas |
@@ -8306,7 +8253,7 @@ packages: | @@ -8306,7 +8253,7 @@ packages: | ||
8306 | optional: true | 8253 | optional: true |
8307 | dependencies: | 8254 | dependencies: |
8308 | abab: 2.0.5 | 8255 | abab: 2.0.5 |
8309 | - acorn: 8.6.0 | 8256 | + acorn: 8.7.0 |
8310 | acorn-globals: 6.0.0 | 8257 | acorn-globals: 6.0.0 |
8311 | cssom: 0.4.4 | 8258 | cssom: 0.4.4 |
8312 | cssstyle: 2.3.0 | 8259 | cssstyle: 2.3.0 |
@@ -8531,8 +8478,8 @@ packages: | @@ -8531,8 +8478,8 @@ packages: | ||
8531 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} | 8478 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} |
8532 | dev: true | 8479 | dev: true |
8533 | 8480 | ||
8534 | - /lint-staged/12.1.4: | ||
8535 | - resolution: {integrity: sha512-RgDz9nsFsE0/5eL9Vat0AvCuk0+j5mEuzBIVfrRH5FRtt5wibYe8zTjZs2nuqLFrLAGQGYnj8+HJxolcj08i/A==} | 8481 | + /lint-staged/12.1.7: |
8482 | + resolution: {integrity: sha512-bltv/ejiLWtowExpjU+s5z8j1Byjg9AlmaAjMmqNbIicY69u6sYIwXGg0dCn0TlkrrY2CphtHIXAkbZ+1VoWQQ==} | ||
8536 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} | 8483 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
8537 | hasBin: true | 8484 | hasBin: true |
8538 | dependencies: | 8485 | dependencies: |
@@ -9049,6 +8996,12 @@ packages: | @@ -9049,6 +8996,12 @@ packages: | ||
9049 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} | 8996 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} |
9050 | hasBin: true | 8997 | hasBin: true |
9051 | 8998 | ||
8999 | + /nanoid/3.2.0: | ||
9000 | + resolution: {integrity: sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==} | ||
9001 | + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} | ||
9002 | + hasBin: true | ||
9003 | + dev: true | ||
9004 | + | ||
9052 | /nanomatch/1.2.13: | 9005 | /nanomatch/1.2.13: |
9053 | resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} | 9006 | resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} |
9054 | engines: {node: '>=0.10.0'} | 9007 | engines: {node: '>=0.10.0'} |
@@ -9109,11 +9062,6 @@ packages: | @@ -9109,11 +9062,6 @@ packages: | ||
9109 | resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} | 9062 | resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} |
9110 | dev: true | 9063 | dev: true |
9111 | 9064 | ||
9112 | - /node-modules-regexp/1.0.0: | ||
9113 | - resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=} | ||
9114 | - engines: {node: '>=0.10.0'} | ||
9115 | - dev: true | ||
9116 | - | ||
9117 | /node-releases/2.0.1: | 9065 | /node-releases/2.0.1: |
9118 | resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==} | 9066 | resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==} |
9119 | dev: true | 9067 | dev: true |
@@ -9289,10 +9237,11 @@ packages: | @@ -9289,10 +9237,11 @@ packages: | ||
9289 | mimic-fn: 2.1.0 | 9237 | mimic-fn: 2.1.0 |
9290 | dev: true | 9238 | dev: true |
9291 | 9239 | ||
9292 | - /open/7.4.2: | ||
9293 | - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} | ||
9294 | - engines: {node: '>=8'} | 9240 | + /open/8.4.0: |
9241 | + resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} | ||
9242 | + engines: {node: '>=12'} | ||
9295 | dependencies: | 9243 | dependencies: |
9244 | + define-lazy-prop: 2.0.0 | ||
9296 | is-docker: 2.2.1 | 9245 | is-docker: 2.2.1 |
9297 | is-wsl: 2.2.0 | 9246 | is-wsl: 2.2.0 |
9298 | dev: true | 9247 | dev: true |
@@ -9665,7 +9614,7 @@ packages: | @@ -9665,7 +9614,7 @@ packages: | ||
9665 | engines: {node: '>=6'} | 9614 | engines: {node: '>=6'} |
9666 | dev: true | 9615 | dev: true |
9667 | 9616 | ||
9668 | - /pinia/2.0.9_typescript@4.5.4+vue@3.2.26: | 9617 | + /pinia/2.0.9_typescript@4.5.4+vue@3.2.27: |
9669 | resolution: {integrity: sha512-iuYdxLJKQ07YPyOHYH05wNG9eKWqkP/4y4GE8+RqEYtz5fwHgPA5kr6zQbg/DoEJGnR2XCm1w1vdt6ppzL9ATg==} | 9618 | resolution: {integrity: sha512-iuYdxLJKQ07YPyOHYH05wNG9eKWqkP/4y4GE8+RqEYtz5fwHgPA5kr6zQbg/DoEJGnR2XCm1w1vdt6ppzL9ATg==} |
9670 | peerDependencies: | 9619 | peerDependencies: |
9671 | '@vue/composition-api': ^1.4.0 | 9620 | '@vue/composition-api': ^1.4.0 |
@@ -9679,8 +9628,8 @@ packages: | @@ -9679,8 +9628,8 @@ packages: | ||
9679 | dependencies: | 9628 | dependencies: |
9680 | '@vue/devtools-api': 6.0.0-beta.21.1 | 9629 | '@vue/devtools-api': 6.0.0-beta.21.1 |
9681 | typescript: 4.5.4 | 9630 | typescript: 4.5.4 |
9682 | - vue: 3.2.26 | ||
9683 | - vue-demi: 0.12.1_vue@3.2.26 | 9631 | + vue: 3.2.27 |
9632 | + vue-demi: 0.12.1_vue@3.2.27 | ||
9684 | dev: false | 9633 | dev: false |
9685 | 9634 | ||
9686 | /pinkie-promise/2.0.1: | 9635 | /pinkie-promise/2.0.1: |
@@ -9695,11 +9644,9 @@ packages: | @@ -9695,11 +9644,9 @@ packages: | ||
9695 | engines: {node: '>=0.10.0'} | 9644 | engines: {node: '>=0.10.0'} |
9696 | dev: true | 9645 | dev: true |
9697 | 9646 | ||
9698 | - /pirates/4.0.1: | ||
9699 | - resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==} | 9647 | + /pirates/4.0.4: |
9648 | + resolution: {integrity: sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==} | ||
9700 | engines: {node: '>= 6'} | 9649 | engines: {node: '>= 6'} |
9701 | - dependencies: | ||
9702 | - node-modules-regexp: 1.0.0 | ||
9703 | dev: true | 9650 | dev: true |
9704 | 9651 | ||
9705 | /pkg-dir/4.2.0: | 9652 | /pkg-dir/4.2.0: |
@@ -9739,9 +9686,13 @@ packages: | @@ -9739,9 +9686,13 @@ packages: | ||
9739 | postcss-safe-parser: 6.0.0_postcss@8.4.5 | 9686 | postcss-safe-parser: 6.0.0_postcss@8.4.5 |
9740 | dev: true | 9687 | dev: true |
9741 | 9688 | ||
9742 | - /postcss-less/5.0.0: | ||
9743 | - resolution: {integrity: sha512-djK6NlApALJeBnNx7CzLatq64eMF3BCyzBH+faYPxrvNHHM/YCimJ6XQkgWgtim2G89EzdQG4Ed0lGNCXPfD7A==} | 9689 | + /postcss-less/6.0.0_postcss@8.4.5: |
9690 | + resolution: {integrity: sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg==} | ||
9744 | engines: {node: '>=12'} | 9691 | engines: {node: '>=12'} |
9692 | + peerDependencies: | ||
9693 | + postcss: ^8.3.5 | ||
9694 | + dependencies: | ||
9695 | + postcss: 8.4.5 | ||
9745 | dev: true | 9696 | dev: true |
9746 | 9697 | ||
9747 | /postcss-media-query-parser/0.2.3: | 9698 | /postcss-media-query-parser/0.2.3: |
@@ -9787,6 +9738,10 @@ packages: | @@ -9787,6 +9738,10 @@ packages: | ||
9787 | resolution: {integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==} | 9738 | resolution: {integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==} |
9788 | dev: true | 9739 | dev: true |
9789 | 9740 | ||
9741 | + /postcss-value-parser/4.2.0: | ||
9742 | + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} | ||
9743 | + dev: true | ||
9744 | + | ||
9790 | /postcss/5.2.18: | 9745 | /postcss/5.2.18: |
9791 | resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==} | 9746 | resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==} |
9792 | engines: {node: '>=0.12'} | 9747 | engines: {node: '>=0.12'} |
@@ -9882,21 +9837,20 @@ packages: | @@ -9882,21 +9837,20 @@ packages: | ||
9882 | engines: {node: '>=6'} | 9837 | engines: {node: '>=6'} |
9883 | dev: true | 9838 | dev: true |
9884 | 9839 | ||
9885 | - /pretty-format/27.3.1: | ||
9886 | - resolution: {integrity: sha512-DR/c+pvFc52nLimLROYjnXPtolawm+uWDxr4FjuLDLUn+ktWnSN851KoHwHzzqq6rfCOjkzN8FLgDrSub6UDuA==} | 9840 | + /pretty-format/27.4.2: |
9841 | + resolution: {integrity: sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==} | ||
9887 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 9842 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
9888 | dependencies: | 9843 | dependencies: |
9889 | - '@jest/types': 27.2.5 | 9844 | + '@jest/types': 27.4.2 |
9890 | ansi-regex: 5.0.1 | 9845 | ansi-regex: 5.0.1 |
9891 | ansi-styles: 5.2.0 | 9846 | ansi-styles: 5.2.0 |
9892 | react-is: 17.0.2 | 9847 | react-is: 17.0.2 |
9893 | dev: true | 9848 | dev: true |
9894 | 9849 | ||
9895 | - /pretty-format/27.4.2: | ||
9896 | - resolution: {integrity: sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==} | 9850 | + /pretty-format/27.4.6: |
9851 | + resolution: {integrity: sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==} | ||
9897 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 9852 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
9898 | dependencies: | 9853 | dependencies: |
9899 | - '@jest/types': 27.4.2 | ||
9900 | ansi-regex: 5.0.1 | 9854 | ansi-regex: 5.0.1 |
9901 | ansi-styles: 5.2.0 | 9855 | ansi-styles: 5.2.0 |
9902 | react-is: 17.0.2 | 9856 | react-is: 17.0.2 |
@@ -9928,11 +9882,6 @@ packages: | @@ -9928,11 +9882,6 @@ packages: | ||
9928 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} | 9882 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} |
9929 | dev: true | 9883 | dev: true |
9930 | 9884 | ||
9931 | - /progress/2.0.3: | ||
9932 | - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} | ||
9933 | - engines: {node: '>=0.4.0'} | ||
9934 | - dev: true | ||
9935 | - | ||
9936 | /promise/7.3.1: | 9885 | /promise/7.3.1: |
9937 | resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} | 9886 | resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} |
9938 | dependencies: | 9887 | dependencies: |
@@ -10083,8 +10032,8 @@ packages: | @@ -10083,8 +10032,8 @@ packages: | ||
10083 | yargs: 15.4.1 | 10032 | yargs: 15.4.1 |
10084 | dev: false | 10033 | dev: false |
10085 | 10034 | ||
10086 | - /qs/6.10.2: | ||
10087 | - resolution: {integrity: sha512-mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw==} | 10035 | + /qs/6.10.3: |
10036 | + resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} | ||
10088 | engines: {node: '>=0.6'} | 10037 | engines: {node: '>=0.6'} |
10089 | dependencies: | 10038 | dependencies: |
10090 | side-channel: 1.0.4 | 10039 | side-channel: 1.0.4 |
@@ -10314,10 +10263,6 @@ packages: | @@ -10314,10 +10263,6 @@ packages: | ||
10314 | engines: {node: '>= 0.10'} | 10263 | engines: {node: '>= 0.10'} |
10315 | dev: true | 10264 | dev: true |
10316 | 10265 | ||
10317 | - /request-light/0.5.5: | ||
10318 | - resolution: {integrity: sha512-AvjfJuhyT6dYfhtIBF+IpTPQco+Td1QJ6PsIJ5xui110vQ5p9HxHk+m1XJqXazLQT6CxxSx9eNv6R/+fu4bZig==} | ||
10319 | - dev: true | ||
10320 | - | ||
10321 | /require-directory/2.1.1: | 10266 | /require-directory/2.1.1: |
10322 | resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} | 10267 | resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} |
10323 | engines: {node: '>=0.10.0'} | 10268 | engines: {node: '>=0.10.0'} |
@@ -10458,17 +10403,17 @@ packages: | @@ -10458,17 +10403,17 @@ packages: | ||
10458 | - acorn | 10403 | - acorn |
10459 | dev: true | 10404 | dev: true |
10460 | 10405 | ||
10461 | - /rollup-plugin-visualizer/5.5.2: | ||
10462 | - resolution: {integrity: sha512-sh+P9KhuWTzeStyRA5yNZpoEFGuj5Ph34JLMa9+muhU8CneFf9L0XE4fmAwAojJLWp//uLUEyytBPSCdZEg5AA==} | ||
10463 | - engines: {node: '>=10.16'} | 10406 | + /rollup-plugin-visualizer/5.5.4: |
10407 | + resolution: {integrity: sha512-CJQFUuZ75S1daGEkk62UH7lL6UFCoP86Sn/iz4gXBdamdwFeD5nPGCHHXfXCrly/wNgQOYTH7cdcxk4+OG3Xjw==} | ||
10408 | + engines: {node: '>=12'} | ||
10464 | hasBin: true | 10409 | hasBin: true |
10465 | peerDependencies: | 10410 | peerDependencies: |
10466 | rollup: ^2.0.0 | 10411 | rollup: ^2.0.0 |
10467 | dependencies: | 10412 | dependencies: |
10468 | - nanoid: 3.1.30 | ||
10469 | - open: 7.4.2 | 10413 | + nanoid: 3.2.0 |
10414 | + open: 8.4.0 | ||
10470 | source-map: 0.7.3 | 10415 | source-map: 0.7.3 |
10471 | - yargs: 16.2.0 | 10416 | + yargs: 17.3.1 |
10472 | dev: true | 10417 | dev: true |
10473 | 10418 | ||
10474 | /rollup/2.60.1: | 10419 | /rollup/2.60.1: |
@@ -10762,6 +10707,7 @@ packages: | @@ -10762,6 +10707,7 @@ packages: | ||
10762 | 10707 | ||
10763 | /source-map-resolve/0.5.3: | 10708 | /source-map-resolve/0.5.3: |
10764 | resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} | 10709 | resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} |
10710 | + deprecated: See https://github.com/lydell/source-map-resolve#deprecated | ||
10765 | dependencies: | 10711 | dependencies: |
10766 | atob: 2.1.2 | 10712 | atob: 2.1.2 |
10767 | decode-uri-component: 0.2.0 | 10713 | decode-uri-component: 0.2.0 |
@@ -10779,6 +10725,7 @@ packages: | @@ -10779,6 +10725,7 @@ packages: | ||
10779 | 10725 | ||
10780 | /source-map-url/0.4.1: | 10726 | /source-map-url/0.4.1: |
10781 | resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} | 10727 | resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} |
10728 | + deprecated: See https://github.com/lydell/source-map-url#deprecated | ||
10782 | dev: true | 10729 | dev: true |
10783 | 10730 | ||
10784 | /source-map/0.5.7: | 10731 | /source-map/0.5.7: |
@@ -11535,8 +11482,8 @@ packages: | @@ -11535,8 +11482,8 @@ packages: | ||
11535 | escape-string-regexp: 1.0.5 | 11482 | escape-string-regexp: 1.0.5 |
11536 | dev: true | 11483 | dev: true |
11537 | 11484 | ||
11538 | - /ts-jest/27.1.2_b65cae1b46840061996b6cc0ea16ca56: | ||
11539 | - resolution: {integrity: sha512-eSOiJOWq6Hhs6Khzk5wKC5sgWIXgXqOCiIl1+3lfnearu58Hj4QpE5tUhQcA3xtZrELbcvAGCsd6HB8OsaVaTA==} | 11485 | + /ts-jest/27.1.3_9364f2ad0b7b67f00a4d081c662c6871: |
11486 | + resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} | ||
11540 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | 11487 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} |
11541 | hasBin: true | 11488 | hasBin: true |
11542 | peerDependencies: | 11489 | peerDependencies: |
@@ -11556,10 +11503,10 @@ packages: | @@ -11556,10 +11503,10 @@ packages: | ||
11556 | esbuild: | 11503 | esbuild: |
11557 | optional: true | 11504 | optional: true |
11558 | dependencies: | 11505 | dependencies: |
11559 | - '@types/jest': 27.0.3 | 11506 | + '@types/jest': 27.4.0 |
11560 | bs-logger: 0.2.6 | 11507 | bs-logger: 0.2.6 |
11561 | fast-json-stable-stringify: 2.1.0 | 11508 | fast-json-stable-stringify: 2.1.0 |
11562 | - jest: 27.4.5_ts-node@10.4.0 | 11509 | + jest: 27.4.7_ts-node@10.4.0 |
11563 | jest-util: 27.4.2 | 11510 | jest-util: 27.4.2 |
11564 | json5: 2.2.0 | 11511 | json5: 2.2.0 |
11565 | lodash.memoize: 4.1.2 | 11512 | lodash.memoize: 4.1.2 |
@@ -11569,7 +11516,7 @@ packages: | @@ -11569,7 +11516,7 @@ packages: | ||
11569 | yargs-parser: 20.2.9 | 11516 | yargs-parser: 20.2.9 |
11570 | dev: true | 11517 | dev: true |
11571 | 11518 | ||
11572 | - /ts-node/10.4.0_bad060d5f9aca5284661d88d739ba15b: | 11519 | + /ts-node/10.4.0_58ff8c2ecf784f4683a8548a58a2b611: |
11573 | resolution: {integrity: sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==} | 11520 | resolution: {integrity: sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==} |
11574 | hasBin: true | 11521 | hasBin: true |
11575 | peerDependencies: | 11522 | peerDependencies: |
@@ -11588,7 +11535,7 @@ packages: | @@ -11588,7 +11535,7 @@ packages: | ||
11588 | '@tsconfig/node12': 1.0.9 | 11535 | '@tsconfig/node12': 1.0.9 |
11589 | '@tsconfig/node14': 1.0.1 | 11536 | '@tsconfig/node14': 1.0.1 |
11590 | '@tsconfig/node16': 1.0.2 | 11537 | '@tsconfig/node16': 1.0.2 |
11591 | - '@types/node': 17.0.5 | 11538 | + '@types/node': 17.0.9 |
11592 | acorn: 8.6.0 | 11539 | acorn: 8.6.0 |
11593 | acorn-walk: 8.2.0 | 11540 | acorn-walk: 8.2.0 |
11594 | arg: 4.1.3 | 11541 | arg: 4.1.3 |
@@ -11761,6 +11708,10 @@ packages: | @@ -11761,6 +11708,10 @@ packages: | ||
11761 | crypto-random-string: 2.0.0 | 11708 | crypto-random-string: 2.0.0 |
11762 | dev: true | 11709 | dev: true |
11763 | 11710 | ||
11711 | + /universal-user-agent/6.0.0: | ||
11712 | + resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} | ||
11713 | + dev: true | ||
11714 | + | ||
11764 | /universalify/0.1.2: | 11715 | /universalify/0.1.2: |
11765 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} | 11716 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} |
11766 | engines: {node: '>= 4.0.0'} | 11717 | engines: {node: '>= 4.0.0'} |
@@ -11887,7 +11838,7 @@ packages: | @@ -11887,7 +11838,7 @@ packages: | ||
11887 | diff-match-patch: 1.0.5 | 11838 | diff-match-patch: 1.0.5 |
11888 | dev: false | 11839 | dev: false |
11889 | 11840 | ||
11890 | - /vite-plugin-compression/0.4.0_vite@2.7.8: | 11841 | + /vite-plugin-compression/0.4.0_vite@2.8.0-beta.2: |
11891 | resolution: {integrity: sha512-CGC8DfIey0k4S4o54ylwFIzT1Mjb9s7cMmlXj6DMM1MZZIeWFjPCJc6YZWjnnS28ul3r7R1nmihvYvGg/lOYsQ==} | 11842 | resolution: {integrity: sha512-CGC8DfIey0k4S4o54ylwFIzT1Mjb9s7cMmlXj6DMM1MZZIeWFjPCJc6YZWjnnS28ul3r7R1nmihvYvGg/lOYsQ==} |
11892 | peerDependencies: | 11843 | peerDependencies: |
11893 | vite: '>=2.0.0' | 11844 | vite: '>=2.0.0' |
@@ -11895,12 +11846,12 @@ packages: | @@ -11895,12 +11846,12 @@ packages: | ||
11895 | chalk: 4.1.2 | 11846 | chalk: 4.1.2 |
11896 | debug: 4.3.3 | 11847 | debug: 4.3.3 |
11897 | fs-extra: 10.0.0 | 11848 | fs-extra: 10.0.0 |
11898 | - vite: 2.7.8_less@4.1.2 | 11849 | + vite: 2.8.0-beta.2_less@4.1.2 |
11899 | transitivePeerDependencies: | 11850 | transitivePeerDependencies: |
11900 | - supports-color | 11851 | - supports-color |
11901 | dev: true | 11852 | dev: true |
11902 | 11853 | ||
11903 | - /vite-plugin-html/2.1.2_vite@2.7.8: | 11854 | + /vite-plugin-html/2.1.2_vite@2.8.0-beta.2: |
11904 | resolution: {integrity: sha512-7HXkL6n7M2qDEaUV4Vnz8yM2glW4gV36d5HSBIM5gOoAG1PkuQb4Vv9FTPgPiQxq4sPRf/6IgABX0MeLVW+CyQ==} | 11855 | resolution: {integrity: sha512-7HXkL6n7M2qDEaUV4Vnz8yM2glW4gV36d5HSBIM5gOoAG1PkuQb4Vv9FTPgPiQxq4sPRf/6IgABX0MeLVW+CyQ==} |
11905 | peerDependencies: | 11856 | peerDependencies: |
11906 | vite: '>=2.0.0' | 11857 | vite: '>=2.0.0' |
@@ -11911,12 +11862,12 @@ packages: | @@ -11911,12 +11862,12 @@ packages: | ||
11911 | ejs: 3.1.6 | 11862 | ejs: 3.1.6 |
11912 | fs-extra: 10.0.0 | 11863 | fs-extra: 10.0.0 |
11913 | html-minifier-terser: 6.1.0 | 11864 | html-minifier-terser: 6.1.0 |
11914 | - vite: 2.7.8_less@4.1.2 | 11865 | + vite: 2.8.0-beta.2_less@4.1.2 |
11915 | transitivePeerDependencies: | 11866 | transitivePeerDependencies: |
11916 | - acorn | 11867 | - acorn |
11917 | dev: true | 11868 | dev: true |
11918 | 11869 | ||
11919 | - /vite-plugin-imagemin/0.5.1_vite@2.7.8: | 11870 | + /vite-plugin-imagemin/0.5.1_vite@2.8.0-beta.2: |
11920 | resolution: {integrity: sha512-V/o/JWZZEPHOJLyhyx9a9Q9svAi91KQqXC78vMrRng1ZRMMnEn85PDlb264407WVlI7hZv2fW3p08SoSfZbyTA==} | 11871 | resolution: {integrity: sha512-V/o/JWZZEPHOJLyhyx9a9Q9svAi91KQqXC78vMrRng1ZRMMnEn85PDlb264407WVlI7hZv2fW3p08SoSfZbyTA==} |
11921 | peerDependencies: | 11872 | peerDependencies: |
11922 | vite: '>=2.0.0' | 11873 | vite: '>=2.0.0' |
@@ -11942,12 +11893,23 @@ packages: | @@ -11942,12 +11893,23 @@ packages: | ||
11942 | imagemin-svgo: 9.0.0 | 11893 | imagemin-svgo: 9.0.0 |
11943 | imagemin-webp: 6.0.0 | 11894 | imagemin-webp: 6.0.0 |
11944 | jpegtran-bin: 6.0.1 | 11895 | jpegtran-bin: 6.0.1 |
11945 | - vite: 2.7.8_less@4.1.2 | 11896 | + vite: 2.8.0-beta.2_less@4.1.2 |
11897 | + transitivePeerDependencies: | ||
11898 | + - supports-color | ||
11899 | + dev: true | ||
11900 | + | ||
11901 | + /vite-plugin-mkcert/1.5.2: | ||
11902 | + resolution: {integrity: sha512-hyNxUUCWILC8dQAfBiJBrTNGAYjM14I2OlFQHOmh8GkFQC0J4MOh2MCvh55H7LlwC1nd/sWrI1DNULY6JTxHFg==} | ||
11903 | + dependencies: | ||
11904 | + '@octokit/rest': 18.12.0 | ||
11905 | + axios: 0.21.4_debug@4.3.3 | ||
11906 | + chalk: 4.1.2 | ||
11907 | + debug: 4.3.3 | ||
11946 | transitivePeerDependencies: | 11908 | transitivePeerDependencies: |
11947 | - supports-color | 11909 | - supports-color |
11948 | dev: true | 11910 | dev: true |
11949 | 11911 | ||
11950 | - /vite-plugin-mock/2.9.6_mockjs@1.1.0+vite@2.7.8: | 11912 | + /vite-plugin-mock/2.9.6_mockjs@1.1.0+vite@2.8.0-beta.2: |
11951 | resolution: {integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==} | 11913 | resolution: {integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==} |
11952 | engines: {node: '>=12.0.0'} | 11914 | engines: {node: '>=12.0.0'} |
11953 | peerDependencies: | 11915 | peerDependencies: |
@@ -11955,7 +11917,7 @@ packages: | @@ -11955,7 +11917,7 @@ packages: | ||
11955 | vite: '>=2.0.0' | 11917 | vite: '>=2.0.0' |
11956 | dependencies: | 11918 | dependencies: |
11957 | '@rollup/plugin-node-resolve': 13.0.6 | 11919 | '@rollup/plugin-node-resolve': 13.0.6 |
11958 | - '@types/mockjs': 1.0.4 | 11920 | + '@types/mockjs': 1.0.6 |
11959 | chalk: 4.1.2 | 11921 | chalk: 4.1.2 |
11960 | chokidar: 3.5.2 | 11922 | chokidar: 3.5.2 |
11961 | connect: 3.7.0 | 11923 | connect: 3.7.0 |
@@ -11964,13 +11926,13 @@ packages: | @@ -11964,13 +11926,13 @@ packages: | ||
11964 | fast-glob: 3.2.7 | 11926 | fast-glob: 3.2.7 |
11965 | mockjs: 1.1.0 | 11927 | mockjs: 1.1.0 |
11966 | path-to-regexp: 6.2.0 | 11928 | path-to-regexp: 6.2.0 |
11967 | - vite: 2.7.8_less@4.1.2 | 11929 | + vite: 2.8.0-beta.2_less@4.1.2 |
11968 | transitivePeerDependencies: | 11930 | transitivePeerDependencies: |
11969 | - rollup | 11931 | - rollup |
11970 | - supports-color | 11932 | - supports-color |
11971 | dev: true | 11933 | dev: true |
11972 | 11934 | ||
11973 | - /vite-plugin-purge-icons/0.7.0_vite@2.7.8: | 11935 | + /vite-plugin-purge-icons/0.7.0_vite@2.8.0-beta.2: |
11974 | resolution: {integrity: sha512-oGZUKFAL4waIZIeiCPT5KZvGbBA500AO/03oxW+ODTKUMq+0jbh9s+T8NPzfJQFC1jtE7eUb2ium82IP/gxZjA==} | 11936 | resolution: {integrity: sha512-oGZUKFAL4waIZIeiCPT5KZvGbBA500AO/03oxW+ODTKUMq+0jbh9s+T8NPzfJQFC1jtE7eUb2ium82IP/gxZjA==} |
11975 | engines: {node: '>= 12'} | 11937 | engines: {node: '>= 12'} |
11976 | peerDependencies: | 11938 | peerDependencies: |
@@ -11979,13 +11941,13 @@ packages: | @@ -11979,13 +11941,13 @@ packages: | ||
11979 | '@purge-icons/core': 0.7.0 | 11941 | '@purge-icons/core': 0.7.0 |
11980 | '@purge-icons/generated': 0.7.0 | 11942 | '@purge-icons/generated': 0.7.0 |
11981 | rollup-plugin-purge-icons: 0.7.0 | 11943 | rollup-plugin-purge-icons: 0.7.0 |
11982 | - vite: 2.7.8_less@4.1.2 | 11944 | + vite: 2.8.0-beta.2_less@4.1.2 |
11983 | transitivePeerDependencies: | 11945 | transitivePeerDependencies: |
11984 | - supports-color | 11946 | - supports-color |
11985 | dev: true | 11947 | dev: true |
11986 | 11948 | ||
11987 | - /vite-plugin-pwa/0.11.12_vite@2.7.8: | ||
11988 | - resolution: {integrity: sha512-XqFmA4y9C4RBb5osSsa26GVwOSwbzf2GNVcT5+06KYYdguqLpuI9FW7iV/akZqg0OUNUpH4tHfme8SnHA4PIXA==} | 11949 | + /vite-plugin-pwa/0.11.13_vite@2.8.0-beta.2: |
11950 | + resolution: {integrity: sha512-Ssj14m3TRVLfkFEAWSMcFE2d1cSdEZyrVTzfY2lSL+umHYvcIFHVDAY143sygtBCb44OPczsAOmWwBTxwOvh7g==} | ||
11989 | peerDependencies: | 11951 | peerDependencies: |
11990 | vite: ^2.0.0 | 11952 | vite: ^2.0.0 |
11991 | dependencies: | 11953 | dependencies: |
@@ -11993,7 +11955,7 @@ packages: | @@ -11993,7 +11955,7 @@ packages: | ||
11993 | fast-glob: 3.2.7 | 11955 | fast-glob: 3.2.7 |
11994 | pretty-bytes: 5.6.0 | 11956 | pretty-bytes: 5.6.0 |
11995 | rollup: 2.60.1 | 11957 | rollup: 2.60.1 |
11996 | - vite: 2.7.8_less@4.1.2 | 11958 | + vite: 2.8.0-beta.2_less@4.1.2 |
11997 | workbox-build: 6.4.2 | 11959 | workbox-build: 6.4.2 |
11998 | workbox-window: 6.4.2 | 11960 | workbox-window: 6.4.2 |
11999 | transitivePeerDependencies: | 11961 | transitivePeerDependencies: |
@@ -12002,7 +11964,7 @@ packages: | @@ -12002,7 +11964,7 @@ packages: | ||
12002 | - supports-color | 11964 | - supports-color |
12003 | dev: true | 11965 | dev: true |
12004 | 11966 | ||
12005 | - /vite-plugin-style-import/1.4.1_vite@2.7.8: | 11967 | + /vite-plugin-style-import/1.4.1_vite@2.8.0-beta.2: |
12006 | resolution: {integrity: sha512-lJCRvm7+So0hHdnSJiJPg9gD5mxtL6YY0jmhEph+k7ArpsyvqOh6han2kG5htbWWDZxHkUN9d1BuTFL//yCLLQ==} | 11968 | resolution: {integrity: sha512-lJCRvm7+So0hHdnSJiJPg9gD5mxtL6YY0jmhEph+k7ArpsyvqOh6han2kG5htbWWDZxHkUN9d1BuTFL//yCLLQ==} |
12007 | peerDependencies: | 11969 | peerDependencies: |
12008 | vite: '>=2.0.0' | 11970 | vite: '>=2.0.0' |
@@ -12013,29 +11975,29 @@ packages: | @@ -12013,29 +11975,29 @@ packages: | ||
12013 | es-module-lexer: 0.9.3 | 11975 | es-module-lexer: 0.9.3 |
12014 | fs-extra: 10.0.0 | 11976 | fs-extra: 10.0.0 |
12015 | magic-string: 0.25.7 | 11977 | magic-string: 0.25.7 |
12016 | - vite: 2.7.8_less@4.1.2 | 11978 | + vite: 2.8.0-beta.2_less@4.1.2 |
12017 | transitivePeerDependencies: | 11979 | transitivePeerDependencies: |
12018 | - supports-color | 11980 | - supports-color |
12019 | dev: true | 11981 | dev: true |
12020 | 11982 | ||
12021 | - /vite-plugin-svg-icons/1.0.5_vite@2.7.8: | ||
12022 | - resolution: {integrity: sha512-dzPwIwaxhVzVTQ/NlQgQ/vcZ8jtHFx8xhpVt4iXqM/2G+8HUz6lpew4V8yOprCy2OUAq7gToYhIxT042gKXLMw==} | 11983 | + /vite-plugin-svg-icons/1.1.0_vite@2.8.0-beta.2: |
11984 | + resolution: {integrity: sha512-dmpr7Wq8vQN6ajBrVTrBxy8wJjQfcP30i73q+40uAZc8p7EwphBNZ+bVTI0enFaCrsITI8y0Ruo/mN/SaJQ6Hw==} | ||
12023 | peerDependencies: | 11985 | peerDependencies: |
12024 | vite: '>=2.0.0' | 11986 | vite: '>=2.0.0' |
12025 | dependencies: | 11987 | dependencies: |
12026 | '@types/svgo': 2.6.0 | 11988 | '@types/svgo': 2.6.0 |
12027 | cors: 2.8.5 | 11989 | cors: 2.8.5 |
12028 | - debug: 4.3.2 | 11990 | + debug: 4.3.3 |
12029 | etag: 1.8.1 | 11991 | etag: 1.8.1 |
12030 | fs-extra: 10.0.0 | 11992 | fs-extra: 10.0.0 |
12031 | svg-baker: 1.7.0 | 11993 | svg-baker: 1.7.0 |
12032 | svgo: 2.8.0 | 11994 | svgo: 2.8.0 |
12033 | - vite: 2.7.8_less@4.1.2 | 11995 | + vite: 2.8.0-beta.2_less@4.1.2 |
12034 | transitivePeerDependencies: | 11996 | transitivePeerDependencies: |
12035 | - supports-color | 11997 | - supports-color |
12036 | dev: true | 11998 | dev: true |
12037 | 11999 | ||
12038 | - /vite-plugin-theme/0.8.1_vite@2.7.8: | 12000 | + /vite-plugin-theme/0.8.1_vite@2.8.0-beta.2: |
12039 | resolution: {integrity: sha512-kyfcMW9YOBuNWHvORWJoq2tJ53Eaq3O7rFntENHtqp6hbblqdGhGlCzxXDbepVthFCxlyIel8S6EFIsCT6CVfg==} | 12001 | resolution: {integrity: sha512-kyfcMW9YOBuNWHvORWJoq2tJ53Eaq3O7rFntENHtqp6hbblqdGhGlCzxXDbepVthFCxlyIel8S6EFIsCT6CVfg==} |
12040 | peerDependencies: | 12002 | peerDependencies: |
12041 | vite: '>=2.0.0-beta.49' | 12003 | vite: '>=2.0.0-beta.49' |
@@ -12048,37 +12010,37 @@ packages: | @@ -12048,37 +12010,37 @@ packages: | ||
12048 | esbuild: 0.11.23 | 12010 | esbuild: 0.11.23 |
12049 | esbuild-plugin-alias: 0.1.2 | 12011 | esbuild-plugin-alias: 0.1.2 |
12050 | tinycolor2: 1.4.2 | 12012 | tinycolor2: 1.4.2 |
12051 | - vite: 2.7.8_less@4.1.2 | 12013 | + vite: 2.8.0-beta.2_less@4.1.2 |
12052 | transitivePeerDependencies: | 12014 | transitivePeerDependencies: |
12053 | - supports-color | 12015 | - supports-color |
12054 | dev: true | 12016 | dev: true |
12055 | 12017 | ||
12056 | - /vite-plugin-vue-setup-extend/0.3.0_vite@2.7.8: | 12018 | + /vite-plugin-vue-setup-extend/0.3.0_vite@2.8.0-beta.2: |
12057 | resolution: {integrity: sha512-9Nd7Bj4TftB2CoOAD2ZI4cHLW5zjKMF3LNihWbrnAPx3nuGBn33tM9SVUGBVjBB6uv1mGAPavwKCTU0xAD8qhw==} | 12019 | resolution: {integrity: sha512-9Nd7Bj4TftB2CoOAD2ZI4cHLW5zjKMF3LNihWbrnAPx3nuGBn33tM9SVUGBVjBB6uv1mGAPavwKCTU0xAD8qhw==} |
12058 | peerDependencies: | 12020 | peerDependencies: |
12059 | vite: '>=2.0.0' | 12021 | vite: '>=2.0.0' |
12060 | dependencies: | 12022 | dependencies: |
12061 | - '@vue/compiler-sfc': 3.2.26 | 12023 | + '@vue/compiler-sfc': 3.2.27 |
12062 | magic-string: 0.25.7 | 12024 | magic-string: 0.25.7 |
12063 | - vite: 2.7.8_less@4.1.2 | 12025 | + vite: 2.8.0-beta.2_less@4.1.2 |
12064 | dev: true | 12026 | dev: true |
12065 | 12027 | ||
12066 | - /vite-plugin-windicss/1.6.1_vite@2.7.8: | ||
12067 | - resolution: {integrity: sha512-63uv4HqBxtSZB0WOtrZS8yhyfQPgGQwYgcBald+/BpLSlYJREcDKgX9Xd/qDgTAjpDRozxKQj/JWreIlyIahGg==} | 12028 | + /vite-plugin-windicss/1.6.3_vite@2.8.0-beta.2: |
12029 | + resolution: {integrity: sha512-D4fEUcAPoLRLdDZMee8NrHZHmn0Qj7AjSg1xNGBnZsMTwRPj93NKZk0fIIUoiKTEh1KrdQejW8g6cg0SgGKTww==} | ||
12068 | peerDependencies: | 12030 | peerDependencies: |
12069 | vite: ^2.0.1 | 12031 | vite: ^2.0.1 |
12070 | dependencies: | 12032 | dependencies: |
12071 | - '@windicss/plugin-utils': 1.6.1 | 12033 | + '@windicss/plugin-utils': 1.6.3 |
12072 | debug: 4.3.3 | 12034 | debug: 4.3.3 |
12073 | kolorist: 1.5.1 | 12035 | kolorist: 1.5.1 |
12074 | - vite: 2.7.8_less@4.1.2 | ||
12075 | - windicss: 3.4.1 | 12036 | + vite: 2.8.0-beta.2_less@4.1.2 |
12037 | + windicss: 3.4.3 | ||
12076 | transitivePeerDependencies: | 12038 | transitivePeerDependencies: |
12077 | - supports-color | 12039 | - supports-color |
12078 | dev: true | 12040 | dev: true |
12079 | 12041 | ||
12080 | - /vite/2.7.8_less@4.1.2: | ||
12081 | - resolution: {integrity: sha512-NOgvRtXUq4/7srE2cTQ2IU1oERdGq2njVOlZtgRrjMO+PPJpncd61/AUzxzZklQ1zBkiWXEVrw3Csq0Sbgr0rQ==} | 12042 | + /vite/2.8.0-beta.2_less@4.1.2: |
12043 | + resolution: {integrity: sha512-FjaZAFL+Ln3M9C2eSskp54n0Esyx2Hh2STj0mAAPcnYK16yyNmZRe77ZFh3RQuwPcE1tMo7pQzimzcgfrfkJ+Q==} | ||
12082 | engines: {node: '>=12.2.0'} | 12044 | engines: {node: '>=12.2.0'} |
12083 | hasBin: true | 12045 | hasBin: true |
12084 | peerDependencies: | 12046 | peerDependencies: |
@@ -12093,7 +12055,8 @@ packages: | @@ -12093,7 +12055,8 @@ packages: | ||
12093 | stylus: | 12055 | stylus: |
12094 | optional: true | 12056 | optional: true |
12095 | dependencies: | 12057 | dependencies: |
12096 | - esbuild: 0.13.15 | 12058 | + esbuild: 0.14.3 |
12059 | + json5: 2.2.0 | ||
12097 | less: 4.1.2 | 12060 | less: 4.1.2 |
12098 | postcss: 8.4.5 | 12061 | postcss: 8.4.5 |
12099 | resolve: 1.20.0 | 12062 | resolve: 1.20.0 |
@@ -12107,8 +12070,8 @@ packages: | @@ -12107,8 +12070,8 @@ packages: | ||
12107 | engines: {node: '>=0.10.0'} | 12070 | engines: {node: '>=0.10.0'} |
12108 | dev: true | 12071 | dev: true |
12109 | 12072 | ||
12110 | - /vscode-css-languageservice/5.1.8: | ||
12111 | - resolution: {integrity: sha512-Si1sMykS8U/p8LYgLGPCfZD1YFT0AtvUJQp9XJGw64DZWhtwYo28G2l64USLS9ge4ZPMZpwdpOK7PfbVKfgiiA==} | 12073 | + /vscode-css-languageservice/5.1.9: |
12074 | + resolution: {integrity: sha512-/tFOWeZBL3Oc9Zc+2MAi3rEwiXJTSZsvjB+M7nSjWLbGPUIjukUA7YzLgsBoUfR35sPJYnXWUkL56PdfIYM8GA==} | ||
12112 | dependencies: | 12075 | dependencies: |
12113 | vscode-languageserver-textdocument: 1.0.3 | 12076 | vscode-languageserver-textdocument: 1.0.3 |
12114 | vscode-languageserver-types: 3.16.0 | 12077 | vscode-languageserver-types: 3.16.0 |
@@ -12116,8 +12079,8 @@ packages: | @@ -12116,8 +12079,8 @@ packages: | ||
12116 | vscode-uri: 3.0.2 | 12079 | vscode-uri: 3.0.2 |
12117 | dev: true | 12080 | dev: true |
12118 | 12081 | ||
12119 | - /vscode-html-languageservice/4.1.1: | ||
12120 | - resolution: {integrity: sha512-rrDyCiOgMwOPgchpPGAeLzjYVVEW/Ror2/a1BWUEI3S9+NQhA9vj4SQkzmH6g2Bq9S9SV0OQeadD+xphOf1N3w==} | 12082 | + /vscode-html-languageservice/4.2.1: |
12083 | + resolution: {integrity: sha512-PgaToZVXJ44nFWEBuSINdDgVV6EnpC3MnXBsysR3O5TKcAfywbYeRGRy+Y4dVR7YeUgDvtb+JkJoSkaYC0mxXQ==} | ||
12121 | dependencies: | 12084 | dependencies: |
12122 | vscode-languageserver-textdocument: 1.0.3 | 12085 | vscode-languageserver-textdocument: 1.0.3 |
12123 | vscode-languageserver-types: 3.16.0 | 12086 | vscode-languageserver-types: 3.16.0 |
@@ -12159,37 +12122,32 @@ packages: | @@ -12159,37 +12122,32 @@ packages: | ||
12159 | resolution: {integrity: sha512-Zcfaw8BznhlJWB09LDR0dscXyxn9+liREqJnPF4pigeUCHwKxYapYqizwuCpMHQ/oLYiAvKwU+f28hPleYu7pA==} | 12122 | resolution: {integrity: sha512-Zcfaw8BznhlJWB09LDR0dscXyxn9+liREqJnPF4pigeUCHwKxYapYqizwuCpMHQ/oLYiAvKwU+f28hPleYu7pA==} |
12160 | dev: true | 12123 | dev: true |
12161 | 12124 | ||
12162 | - /vscode-languageserver/8.0.0-next.5: | ||
12163 | - resolution: {integrity: sha512-3E2W0eWtGKb6QAJqspOnD0thrBRRo8IGUMV5jpDNMcMKvmtkcxMwsBh0VxdvuWaZ51PiNyR4L+B+GUvkYsyFEg==} | ||
12164 | - hasBin: true | ||
12165 | - dependencies: | ||
12166 | - vscode-languageserver-protocol: 3.17.0-next.11 | ||
12167 | - dev: true | ||
12168 | - | ||
12169 | /vscode-nls/5.0.0: | 12125 | /vscode-nls/5.0.0: |
12170 | resolution: {integrity: sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==} | 12126 | resolution: {integrity: sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==} |
12171 | dev: true | 12127 | dev: true |
12172 | 12128 | ||
12173 | - /vscode-pug-languageservice/0.30.1: | ||
12174 | - resolution: {integrity: sha512-ytco+lziRQNrpHpI8X+/rhYaX4KUWAnYZHd1f1epu2m+9WoIf9swbk8/slIOeyec1DPg4Y7AS8hTLcEfOfY71g==} | 12129 | + /vscode-pug-languageservice/0.30.5: |
12130 | + resolution: {integrity: sha512-vv/Cu+kWfJ4Hocn7uoqUxOtJ5udXge53RCrXyKuhvBYef4QVcjCwx5xFzN1PX2f8+FoMoixAlCrZPw/E86kBSA==} | ||
12175 | dependencies: | 12131 | dependencies: |
12176 | - '@volar/code-gen': 0.30.1 | ||
12177 | - '@volar/shared': 0.30.1 | ||
12178 | - '@volar/source-map': 0.30.1 | ||
12179 | - '@volar/transforms': 0.30.1 | 12132 | + '@volar/code-gen': 0.30.5 |
12133 | + '@volar/shared': 0.30.5 | ||
12134 | + '@volar/source-map': 0.30.5 | ||
12135 | + '@volar/transforms': 0.30.5 | ||
12180 | pug-lexer: 5.0.1 | 12136 | pug-lexer: 5.0.1 |
12181 | pug-parser: 6.0.0 | 12137 | pug-parser: 6.0.0 |
12182 | - vscode-languageserver: 8.0.0-next.5 | 12138 | + vscode-languageserver-textdocument: 1.0.3 |
12139 | + vscode-languageserver-types: 3.17.0-next.5 | ||
12183 | dev: true | 12140 | dev: true |
12184 | 12141 | ||
12185 | - /vscode-typescript-languageservice/0.30.1: | ||
12186 | - resolution: {integrity: sha512-7EBJiaLXThlrbm2K5VU+qWPR3z+RtmCFLWiZaNdJYO/E5UFBQiPmO8qXlxcB2x1N7zId2GZoogAbT15oexY2eQ==} | 12142 | + /vscode-typescript-languageservice/0.30.5: |
12143 | + resolution: {integrity: sha512-zIPnGuxo53NtvmWTIJnHXByf5X8eVBunbEqO4YYoqHw4yCWbYFJlnN7CaOh3ORKjfbG4knBg6ULl54XKaL5Txg==} | ||
12187 | dependencies: | 12144 | dependencies: |
12188 | - '@volar/shared': 0.30.1 | 12145 | + '@volar/shared': 0.30.5 |
12189 | semver: 7.3.5 | 12146 | semver: 7.3.5 |
12190 | upath: 2.0.1 | 12147 | upath: 2.0.1 |
12191 | - vscode-languageserver: 8.0.0-next.5 | 12148 | + vscode-languageserver-protocol: 3.17.0-next.11 |
12192 | vscode-languageserver-textdocument: 1.0.3 | 12149 | vscode-languageserver-textdocument: 1.0.3 |
12150 | + vscode-nls: 5.0.0 | ||
12193 | dev: true | 12151 | dev: true |
12194 | 12152 | ||
12195 | /vscode-uri/2.1.2: | 12153 | /vscode-uri/2.1.2: |
@@ -12200,30 +12158,29 @@ packages: | @@ -12200,30 +12158,29 @@ packages: | ||
12200 | resolution: {integrity: sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==} | 12158 | resolution: {integrity: sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==} |
12201 | dev: true | 12159 | dev: true |
12202 | 12160 | ||
12203 | - /vscode-vue-languageservice/0.30.1: | ||
12204 | - resolution: {integrity: sha512-l9R5vXkrGY0N4hA2o9ZFBIKL44z7UbHc45YjOmnslGwYL15YXfb7T4quW8VYSWJNRbiFBTNnNLWORIDEcWazBA==} | 12161 | + /vscode-vue-languageservice/0.30.5: |
12162 | + resolution: {integrity: sha512-QljaoVk0x0X3028WRGswjN4LWbp7CJXu8y/gw8KnmKIBN/q09yUKP8TfFV760QQLjUci9IniGymyHaBop01zsA==} | ||
12205 | dependencies: | 12163 | dependencies: |
12206 | - '@volar/code-gen': 0.30.1 | ||
12207 | - '@volar/html2pug': 0.30.1 | ||
12208 | - '@volar/shared': 0.30.1 | ||
12209 | - '@volar/source-map': 0.30.1 | ||
12210 | - '@volar/transforms': 0.30.1 | ||
12211 | - '@volar/vue-code-gen': 0.30.1 | ||
12212 | - '@vscode/emmet-helper': 2.8.2 | ||
12213 | - '@vue/reactivity': 3.2.26 | ||
12214 | - '@vue/shared': 3.2.26 | ||
12215 | - request-light: 0.5.5 | 12164 | + '@volar/code-gen': 0.30.5 |
12165 | + '@volar/html2pug': 0.30.5 | ||
12166 | + '@volar/shared': 0.30.5 | ||
12167 | + '@volar/source-map': 0.30.5 | ||
12168 | + '@volar/transforms': 0.30.5 | ||
12169 | + '@volar/vue-code-gen': 0.30.5 | ||
12170 | + '@vscode/emmet-helper': 2.8.3 | ||
12171 | + '@vue/reactivity': 3.2.27 | ||
12172 | + '@vue/shared': 3.2.27 | ||
12216 | upath: 2.0.1 | 12173 | upath: 2.0.1 |
12217 | - vscode-css-languageservice: 5.1.8 | ||
12218 | - vscode-html-languageservice: 4.1.1 | 12174 | + vscode-css-languageservice: 5.1.9 |
12175 | + vscode-html-languageservice: 4.2.1 | ||
12219 | vscode-json-languageservice: 4.1.10 | 12176 | vscode-json-languageservice: 4.1.10 |
12220 | - vscode-languageserver: 8.0.0-next.5 | 12177 | + vscode-languageserver-protocol: 3.17.0-next.11 |
12221 | vscode-languageserver-textdocument: 1.0.3 | 12178 | vscode-languageserver-textdocument: 1.0.3 |
12222 | - vscode-pug-languageservice: 0.30.1 | ||
12223 | - vscode-typescript-languageservice: 0.30.1 | 12179 | + vscode-pug-languageservice: 0.30.5 |
12180 | + vscode-typescript-languageservice: 0.30.5 | ||
12224 | dev: true | 12181 | dev: true |
12225 | 12182 | ||
12226 | - /vue-demi/0.12.1_vue@3.2.26: | 12183 | + /vue-demi/0.12.1_vue@3.2.27: |
12227 | resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} | 12184 | resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} |
12228 | engines: {node: '>=12'} | 12185 | engines: {node: '>=12'} |
12229 | hasBin: true | 12186 | hasBin: true |
@@ -12235,17 +12192,17 @@ packages: | @@ -12235,17 +12192,17 @@ packages: | ||
12235 | '@vue/composition-api': | 12192 | '@vue/composition-api': |
12236 | optional: true | 12193 | optional: true |
12237 | dependencies: | 12194 | dependencies: |
12238 | - vue: 3.2.26 | 12195 | + vue: 3.2.27 |
12239 | dev: false | 12196 | dev: false |
12240 | 12197 | ||
12241 | - /vue-eslint-parser/8.0.1_eslint@8.5.0: | 12198 | + /vue-eslint-parser/8.0.1_eslint@8.7.0: |
12242 | resolution: {integrity: sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==} | 12199 | resolution: {integrity: sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==} |
12243 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | 12200 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
12244 | peerDependencies: | 12201 | peerDependencies: |
12245 | eslint: '>=6.0.0' | 12202 | eslint: '>=6.0.0' |
12246 | dependencies: | 12203 | dependencies: |
12247 | debug: 4.3.2 | 12204 | debug: 4.3.2 |
12248 | - eslint: 8.5.0 | 12205 | + eslint: 8.7.0 |
12249 | eslint-scope: 6.0.0 | 12206 | eslint-scope: 6.0.0 |
12250 | eslint-visitor-keys: 3.1.0 | 12207 | eslint-visitor-keys: 3.1.0 |
12251 | espree: 9.1.0 | 12208 | espree: 9.1.0 |
@@ -12256,7 +12213,7 @@ packages: | @@ -12256,7 +12213,7 @@ packages: | ||
12256 | - supports-color | 12213 | - supports-color |
12257 | dev: true | 12214 | dev: true |
12258 | 12215 | ||
12259 | - /vue-i18n/9.1.9_vue@3.2.26: | 12216 | + /vue-i18n/9.1.9_vue@3.2.27: |
12260 | resolution: {integrity: sha512-JeRdNVxS2OGp1E+pye5XB6+M6BBkHwAv9C80Q7+kzoMdUDGRna06tjC0vCB/jDX9aWrl5swxOMFcyAr7or8XTA==} | 12217 | resolution: {integrity: sha512-JeRdNVxS2OGp1E+pye5XB6+M6BBkHwAv9C80Q7+kzoMdUDGRna06tjC0vCB/jDX9aWrl5swxOMFcyAr7or8XTA==} |
12261 | engines: {node: '>= 10'} | 12218 | engines: {node: '>= 10'} |
12262 | peerDependencies: | 12219 | peerDependencies: |
@@ -12266,7 +12223,7 @@ packages: | @@ -12266,7 +12223,7 @@ packages: | ||
12266 | '@intlify/shared': 9.1.9 | 12223 | '@intlify/shared': 9.1.9 |
12267 | '@intlify/vue-devtools': 9.1.9 | 12224 | '@intlify/vue-devtools': 9.1.9 |
12268 | '@vue/devtools-api': 6.0.0-beta.20.1 | 12225 | '@vue/devtools-api': 6.0.0-beta.20.1 |
12269 | - vue: 3.2.26 | 12226 | + vue: 3.2.27 |
12270 | dev: false | 12227 | dev: false |
12271 | 12228 | ||
12272 | /vue-json-pretty/1.8.2: | 12229 | /vue-json-pretty/1.8.2: |
@@ -12274,54 +12231,54 @@ packages: | @@ -12274,54 +12231,54 @@ packages: | ||
12274 | engines: {node: '>= 10.0.0', npm: '>= 5.0.0'} | 12231 | engines: {node: '>= 10.0.0', npm: '>= 5.0.0'} |
12275 | dev: false | 12232 | dev: false |
12276 | 12233 | ||
12277 | - /vue-router/4.0.12_vue@3.2.26: | 12234 | + /vue-router/4.0.12_vue@3.2.27: |
12278 | resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==} | 12235 | resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==} |
12279 | peerDependencies: | 12236 | peerDependencies: |
12280 | vue: ^3.0.0 | 12237 | vue: ^3.0.0 |
12281 | dependencies: | 12238 | dependencies: |
12282 | '@vue/devtools-api': 6.0.0-beta.20.1 | 12239 | '@vue/devtools-api': 6.0.0-beta.20.1 |
12283 | - vue: 3.2.26 | 12240 | + vue: 3.2.27 |
12284 | dev: false | 12241 | dev: false |
12285 | 12242 | ||
12286 | - /vue-tsc/0.30.1_typescript@4.5.4: | ||
12287 | - resolution: {integrity: sha512-AVBPWF70LvuzAt6phaF3U8pg1WmjmZQBfZvkX4Ve9EHTPh4R2JiJnSjf3MQgnx03qF5w0PGkBJ90l12aaLZeKQ==} | 12243 | + /vue-tsc/0.30.5_typescript@4.5.4: |
12244 | + resolution: {integrity: sha512-EHVoJ/Ys+gQazqF6NWaWGpi7hXX/Ty+qQv/1ECcVTHY78yoM7caY2LgyyfnXroSonFa0BDo0zMNc1L6E5PIG4A==} | ||
12288 | hasBin: true | 12245 | hasBin: true |
12289 | peerDependencies: | 12246 | peerDependencies: |
12290 | typescript: '*' | 12247 | typescript: '*' |
12291 | dependencies: | 12248 | dependencies: |
12292 | - '@volar/shared': 0.30.1 | 12249 | + '@volar/shared': 0.30.5 |
12293 | typescript: 4.5.4 | 12250 | typescript: 4.5.4 |
12294 | - vscode-vue-languageservice: 0.30.1 | 12251 | + vscode-vue-languageservice: 0.30.5 |
12295 | dev: true | 12252 | dev: true |
12296 | 12253 | ||
12297 | - /vue-types/3.0.2_vue@3.2.26: | 12254 | + /vue-types/3.0.2_vue@3.2.27: |
12298 | resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} | 12255 | resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} |
12299 | engines: {node: '>=10.15.0'} | 12256 | engines: {node: '>=10.15.0'} |
12300 | peerDependencies: | 12257 | peerDependencies: |
12301 | vue: ^3.0.0 | 12258 | vue: ^3.0.0 |
12302 | dependencies: | 12259 | dependencies: |
12303 | is-plain-object: 3.0.1 | 12260 | is-plain-object: 3.0.1 |
12304 | - vue: 3.2.26 | 12261 | + vue: 3.2.27 |
12305 | dev: false | 12262 | dev: false |
12306 | 12263 | ||
12307 | - /vue-types/4.1.1_vue@3.2.26: | 12264 | + /vue-types/4.1.1_vue@3.2.27: |
12308 | resolution: {integrity: sha512-Jq2GZ/w6rExJbLA/h7nHBFLciu+YNekgox0DB64wN1snZ4IIJMq+qnqp1/vE4fc7vEjZcP5KGhLzkkSjIHLRzw==} | 12265 | resolution: {integrity: sha512-Jq2GZ/w6rExJbLA/h7nHBFLciu+YNekgox0DB64wN1snZ4IIJMq+qnqp1/vE4fc7vEjZcP5KGhLzkkSjIHLRzw==} |
12309 | engines: {node: '>=12.16.0'} | 12266 | engines: {node: '>=12.16.0'} |
12310 | peerDependencies: | 12267 | peerDependencies: |
12311 | vue: ^2.0.0 || ^3.0.0 | 12268 | vue: ^2.0.0 || ^3.0.0 |
12312 | dependencies: | 12269 | dependencies: |
12313 | is-plain-object: 5.0.0 | 12270 | is-plain-object: 5.0.0 |
12314 | - vue: 3.2.26 | 12271 | + vue: 3.2.27 |
12315 | dev: false | 12272 | dev: false |
12316 | 12273 | ||
12317 | - /vue/3.2.26: | ||
12318 | - resolution: {integrity: sha512-KD4lULmskL5cCsEkfhERVRIOEDrfEL9CwAsLYpzptOGjaGFNWo3BQ9g8MAb7RaIO71rmVOziZ/uEN/rHwcUIhg==} | 12274 | + /vue/3.2.27: |
12275 | + resolution: {integrity: sha512-p1cH8Q6eaPwvANCjFQj497a914cxXKKwOG3Lg9USddTOrn4/zFMKjn9dnovkx+L8VtFaNgbVqW8mLJS/eTA6xw==} | ||
12319 | dependencies: | 12276 | dependencies: |
12320 | - '@vue/compiler-dom': 3.2.26 | ||
12321 | - '@vue/compiler-sfc': 3.2.26 | ||
12322 | - '@vue/runtime-dom': 3.2.26 | ||
12323 | - '@vue/server-renderer': 3.2.26_vue@3.2.26 | ||
12324 | - '@vue/shared': 3.2.26 | 12277 | + '@vue/compiler-dom': 3.2.27 |
12278 | + '@vue/compiler-sfc': 3.2.27 | ||
12279 | + '@vue/runtime-dom': 3.2.27 | ||
12280 | + '@vue/server-renderer': 3.2.27_vue@3.2.27 | ||
12281 | + '@vue/shared': 3.2.27 | ||
12325 | dev: false | 12282 | dev: false |
12326 | 12283 | ||
12327 | /w3c-hr-time/1.0.2: | 12284 | /w3c-hr-time/1.0.2: |
@@ -12425,8 +12382,8 @@ packages: | @@ -12425,8 +12382,8 @@ packages: | ||
12425 | isexe: 2.0.0 | 12382 | isexe: 2.0.0 |
12426 | dev: true | 12383 | dev: true |
12427 | 12384 | ||
12428 | - /windicss/3.4.1: | ||
12429 | - resolution: {integrity: sha512-g6mX0q8divtPT+TSWqvI35lc77pOhGwMrwCdcX48dFA16wUlSDn1kOv5z1msZy3SlWLx3Bjbe7FA6uNTvdVH8A==} | 12385 | + /windicss/3.4.3: |
12386 | + resolution: {integrity: sha512-UnugThsvEgy8RsPm4/B5DYMCAqvZzD6yWU7Anh+f07t5RSJ8zvmAylGLbXrHPJEmCKzo2Mf+fOUvISH7IJqM3A==} | ||
12430 | engines: {node: '>= 12'} | 12387 | engines: {node: '>= 12'} |
12431 | hasBin: true | 12388 | hasBin: true |
12432 | dev: true | 12389 | dev: true |
@@ -12478,10 +12435,10 @@ packages: | @@ -12478,10 +12435,10 @@ packages: | ||
12478 | engines: {node: '>=10.0.0'} | 12435 | engines: {node: '>=10.0.0'} |
12479 | dependencies: | 12436 | dependencies: |
12480 | '@apideck/better-ajv-errors': 0.3.1_ajv@8.8.2 | 12437 | '@apideck/better-ajv-errors': 0.3.1_ajv@8.8.2 |
12481 | - '@babel/core': 7.16.0 | ||
12482 | - '@babel/preset-env': 7.16.4_@babel+core@7.16.0 | 12438 | + '@babel/core': 7.16.5 |
12439 | + '@babel/preset-env': 7.16.4_@babel+core@7.16.5 | ||
12483 | '@babel/runtime': 7.16.3 | 12440 | '@babel/runtime': 7.16.3 |
12484 | - '@rollup/plugin-babel': 5.3.0_@babel+core@7.16.0+rollup@2.60.1 | 12441 | + '@rollup/plugin-babel': 5.3.0_@babel+core@7.16.5+rollup@2.60.1 |
12485 | '@rollup/plugin-node-resolve': 11.2.1_rollup@2.60.1 | 12442 | '@rollup/plugin-node-resolve': 11.2.1_rollup@2.60.1 |
12486 | '@rollup/plugin-replace': 2.4.2_rollup@2.60.1 | 12443 | '@rollup/plugin-replace': 2.4.2_rollup@2.60.1 |
12487 | '@surma/rollup-plugin-off-main-thread': 2.2.3 | 12444 | '@surma/rollup-plugin-off-main-thread': 2.2.3 |
@@ -12660,8 +12617,8 @@ packages: | @@ -12660,8 +12617,8 @@ packages: | ||
12660 | optional: true | 12617 | optional: true |
12661 | dev: true | 12618 | dev: true |
12662 | 12619 | ||
12663 | - /xlsx/0.17.4: | ||
12664 | - resolution: {integrity: sha512-9aKt8g9ZLP0CUdBX8L5xnoMDFwSiLI997eQnDThCaqQMYB9AEBIRzblSSNN/ICMGLYIHUO3VKaItcedZJ3ijIg==} | 12620 | + /xlsx/0.17.5: |
12621 | + resolution: {integrity: sha512-lXNU0TuYsvElzvtI6O7WIVb9Zar1XYw7Xb3VAx2wn8N/n0whBYrCnHMxtFyIiUU1Wjf09WzmLALDfBO5PqTb1g==} | ||
12665 | engines: {node: '>=0.8'} | 12622 | engines: {node: '>=0.8'} |
12666 | hasBin: true | 12623 | hasBin: true |
12667 | dependencies: | 12624 | dependencies: |
@@ -12729,6 +12686,11 @@ packages: | @@ -12729,6 +12686,11 @@ packages: | ||
12729 | engines: {node: '>=10'} | 12686 | engines: {node: '>=10'} |
12730 | dev: true | 12687 | dev: true |
12731 | 12688 | ||
12689 | + /yargs-parser/21.0.0: | ||
12690 | + resolution: {integrity: sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==} | ||
12691 | + engines: {node: '>=12'} | ||
12692 | + dev: true | ||
12693 | + | ||
12732 | /yargs/14.2.3: | 12694 | /yargs/14.2.3: |
12733 | resolution: {integrity: sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==} | 12695 | resolution: {integrity: sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==} |
12734 | dependencies: | 12696 | dependencies: |
@@ -12788,6 +12750,19 @@ packages: | @@ -12788,6 +12750,19 @@ packages: | ||
12788 | yargs-parser: 20.2.9 | 12750 | yargs-parser: 20.2.9 |
12789 | dev: true | 12751 | dev: true |
12790 | 12752 | ||
12753 | + /yargs/17.3.1: | ||
12754 | + resolution: {integrity: sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==} | ||
12755 | + engines: {node: '>=12'} | ||
12756 | + dependencies: | ||
12757 | + cliui: 7.0.4 | ||
12758 | + escalade: 3.1.1 | ||
12759 | + get-caller-file: 2.0.5 | ||
12760 | + require-directory: 2.1.1 | ||
12761 | + string-width: 4.2.3 | ||
12762 | + y18n: 5.0.8 | ||
12763 | + yargs-parser: 21.0.0 | ||
12764 | + dev: true | ||
12765 | + | ||
12791 | /yauzl/2.10.0: | 12766 | /yauzl/2.10.0: |
12792 | resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} | 12767 | resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} |
12793 | dependencies: | 12768 | dependencies: |
tests/server/package.json
@@ -24,13 +24,13 @@ | @@ -24,13 +24,13 @@ | ||
24 | "@types/koa": "^2.13.4", | 24 | "@types/koa": "^2.13.4", |
25 | "@types/koa-bodyparser": "^5.0.2", | 25 | "@types/koa-bodyparser": "^5.0.2", |
26 | "@types/koa-router": "^7.4.4", | 26 | "@types/koa-router": "^7.4.4", |
27 | - "@types/node": "^17.0.5", | 27 | + "@types/node": "^17.0.9", |
28 | "nodemon": "^2.0.15", | 28 | "nodemon": "^2.0.15", |
29 | "pm2": "^5.1.2", | 29 | "pm2": "^5.1.2", |
30 | "rimraf": "^3.0.2", | 30 | "rimraf": "^3.0.2", |
31 | "ts-node": "^10.4.0", | 31 | "ts-node": "^10.4.0", |
32 | "tsconfig-paths": "^3.12.0", | 32 | "tsconfig-paths": "^3.12.0", |
33 | - "tsup": "^5.11.9", | 33 | + "tsup": "^5.11.11", |
34 | "typescript": "^4.5.4" | 34 | "typescript": "^4.5.4" |
35 | } | 35 | } |
36 | } | 36 | } |
vite.config.ts
@@ -53,6 +53,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { | @@ -53,6 +53,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { | ||
53 | ], | 53 | ], |
54 | }, | 54 | }, |
55 | server: { | 55 | server: { |
56 | + https: true, | ||
56 | // Listening on all local IPs | 57 | // Listening on all local IPs |
57 | host: true, | 58 | host: true, |
58 | port: VITE_PORT, | 59 | port: VITE_PORT, |