├── .all-contributorsrc ├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .vercelignore ├── Dockerfile ├── LICENSE ├── README.md ├── __snapshots__ └── index.test.ts.snap ├── adaptor.ts ├── index.html ├── index.test.ts ├── index.ts ├── jest.config.js ├── package.json ├── server.ts ├── test.sh ├── tsconfig.json ├── vercel.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "projectName": "math-api", 3 | "projectOwner": "uetchy", 4 | "repoType": "github", 5 | "repoHost": "https://github.com", 6 | "files": [ 7 | "README.md" 8 | ], 9 | "imageSize": 100, 10 | "commit": false, 11 | "commitConvention": "none", 12 | "contributors": [ 13 | { 14 | "login": "uetchy", 15 | "name": "uetchy", 16 | "avatar_url": "https://avatars.githubusercontent.com/u/431808?v=4", 17 | "profile": "https://github.com/uetchy", 18 | "contributions": [ 19 | "code", 20 | "design" 21 | ] 22 | }, 23 | { 24 | "login": "Long0x0", 25 | "name": "Long0x0", 26 | "avatar_url": "https://avatars.githubusercontent.com/u/51022287?v=4", 27 | "profile": "https://github.com/Long0x0", 28 | "contributions": [ 29 | "code" 30 | ] 31 | } 32 | ], 33 | "contributorsPerLine": 7 34 | } 35 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.classpath 2 | **/.dockerignore 3 | **/.env 4 | **/.git 5 | **/.gitignore 6 | **/.project 7 | **/.settings 8 | **/.toolstarget 9 | **/.vs 10 | **/.vscode 11 | **/*.*proj.user 12 | **/*.dbmdl 13 | **/*.jfm 14 | **/azds.yaml 15 | **/charts 16 | **/docker-compose* 17 | **/Dockerfile* 18 | **/node_modules 19 | **/npm-debug.log 20 | **/obj 21 | **/secrets.dev.yaml 22 | **/values.dev.yaml 23 | LICENSE 24 | README.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [uetchy] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: test 2 | on: push 3 | jobs: 4 | test: 5 | name: Test 6 | runs-on: ubuntu-latest 7 | timeout-minutes: 3 8 | steps: 9 | - uses: actions/checkout@v2 10 | - uses: actions/setup-node@v2 11 | with: 12 | node-version: '16' 13 | - name: Get yarn cache directory path 14 | id: yarn-cache-dir-path 15 | run: echo "::set-output name=dir::$(yarn cache dir)" 16 | - uses: actions/cache@v2 17 | id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) 18 | with: 19 | path: ${{ steps.yarn-cache-dir-path.outputs.dir }} 20 | key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} 21 | restore-keys: | 22 | ${{ runner.os }}-yarn- 23 | - run: yarn install 24 | - run: yarn test 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | # Created by https://www.gitignore.io/api/node 3 | 4 | ### Node ### 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | 24 | # nyc test coverage 25 | .nyc_output 26 | 27 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 28 | .grunt 29 | 30 | # Bower dependency directory (https://bower.io/) 31 | bower_components 32 | 33 | # node-waf configuration 34 | .lock-wscript 35 | 36 | # Compiled binary addons (https://nodejs.org/api/addons.html) 37 | build/Release 38 | 39 | # Dependency directories 40 | node_modules/ 41 | jspm_packages/ 42 | 43 | # TypeScript v1 declaration files 44 | typings/ 45 | 46 | # Optional npm cache directory 47 | .npm 48 | 49 | # Optional eslint cache 50 | .eslintcache 51 | 52 | # Optional REPL history 53 | .node_repl_history 54 | 55 | # Output of 'npm pack' 56 | *.tgz 57 | 58 | # Yarn Integrity file 59 | .yarn-integrity 60 | 61 | # dotenv environment variables file 62 | .env 63 | 64 | # parcel-bundler cache (https://parceljs.org/) 65 | .cache 66 | 67 | # next.js build output 68 | .next 69 | 70 | # nuxt.js build output 71 | .nuxt 72 | 73 | # vuepress build output 74 | .vuepress/dist 75 | 76 | # Serverless directories 77 | .serverless 78 | 79 | 80 | # End of https://www.gitignore.io/api/node 81 | 82 | .now -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | .dependabot 2 | .env 3 | .envrc 4 | .github 5 | .vscode 6 | README.md 7 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:16-alpine 2 | WORKDIR /usr/src/app 3 | COPY package.json yarn.lock ./ 4 | RUN yarn install 5 | COPY . . 6 | CMD yarn test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2019 Yasuaki Uechi 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Math API 2 | 3 | [![workflow-badge]][workflow-url] 4 | 5 | [workflow-badge]: https://github.com/uetchy/math-api/workflows/test/badge.svg 6 | [workflow-url]: https://github.com/uetchy/math-api/actions?workflow=test 7 | 8 | Place LaTeX Math equation on anywhere as `` tag. 9 | 10 | - https://math.vercel.app 11 | - [Online Editor](https://math.vercel.app/#online-editor) 12 | 13 | ## Usage 14 | 15 | ``` 16 | curl https://math.vercel.app?bgcolor=auto&from=\sum^{N}_{i}x_i 17 | ``` 18 | 19 | ### HTML 20 | 21 | ``` 22 | 23 | ``` 24 | 25 | 26 | 27 | ``` 28 | 29 | ``` 30 | 31 | 32 | 33 | ### Markdown 34 | 35 | ``` 36 | ![](https://math.vercel.app?bgcolor=auto&from=\LaTeX) 37 | ``` 38 | 39 | ![Equation 1](https://math.vercel.app?bgcolor=auto&from=\LaTeX) 40 | 41 | ## Option 42 | 43 | ### **.svg** extension 44 | 45 | URL ends with **.svg** extension will be treated as a normal math formula. 46 | 47 | Some Markdown blog services won't treat image tags correctly whose URL has no any image extension in it. This option may give fixes to these situations. 48 | 49 | ## Contributors ✨ 50 | 51 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 |

uetchy

💻 🎨

Long0x0

💻
62 | 63 | 64 | 65 | 66 | 67 | 68 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 69 | -------------------------------------------------------------------------------- /__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`renders home 1`] = ` 4 | " 5 | 6 | 7 | " 13 | `; 14 | -------------------------------------------------------------------------------- /adaptor.ts: -------------------------------------------------------------------------------- 1 | import { mathjax } from "mathjax-full/js/mathjax"; 2 | import { TeX } from "mathjax-full/js/input/tex"; 3 | import { SVG } from "mathjax-full/js/output/svg"; 4 | import { LiteAdaptor } from "mathjax-full/js/adaptors/liteAdaptor"; 5 | import { RegisterHTMLHandler } from "mathjax-full/js/handlers/html"; 6 | import { AllPackages } from "mathjax-full/js/input/tex/AllPackages"; 7 | import { colord, extend } from "colord"; 8 | import harmoniesPlugin from "colord/plugins/harmonies"; 9 | import namesPlugin from "colord/plugins/names"; 10 | 11 | // Colord bootstrap 12 | extend([namesPlugin, harmoniesPlugin]); 13 | 14 | // MathJax bootstrap 15 | const adaptor = new LiteAdaptor(); 16 | RegisterHTMLHandler(adaptor); 17 | 18 | const html = mathjax.document("", { 19 | InputJax: new TeX({ packages: AllPackages }), 20 | OutputJax: new SVG({ fontCache: "none" }), 21 | }); 22 | 23 | export function tex2svg( 24 | equation: string, 25 | isInline: boolean, 26 | color: string = "black", 27 | bgColor?: string 28 | ): string { 29 | const autoBg = colord(color).isDark() ? "white" : "black"; 30 | const bg = bgColor === "auto" ? autoBg : bgColor; 31 | 32 | const svg = adaptor 33 | .innerHTML(html.convert(equation, { display: !isInline })) 34 | .replace( 35 | /(?<=)/, 36 | ` 37 | ` 43 | ); 44 | if (svg.includes("merror")) { 45 | return svg.replace(/<\/rect>/, ""); 46 | } 47 | return svg; 48 | } 49 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Math API 4 | 5 | 88 | 94 | 95 | 96 |
97 |

Math API

98 |

99 | 103 |

104 |

Usage

105 |

106 | https://math.vercel.app?from=[LaTeX Math Equation] 109 |

110 | 111 |

Block notation

112 |

113 | https://math.vercel.app?from=\frac{1}{\Gamma(s)}\int_{0}^{\infty}\frac{u^{s-1}}{e^{u}-1}\mathrm{d}u 117 |

118 | 121 | 122 |

Inline notation

123 |

124 | https://math.vercel.app?inline=\frac{1}{\Gamma(s)}\int_{0}^{\infty}\frac{u^{s-1}}{e^{u}-1}\mathrm{d}u 128 |

129 | 132 | 133 |

Color

134 |

135 | By default, the text color is black. You can manually change this 136 | behavior by passing `color` parameter. 137 |

138 |

139 | https://math.vercel.app?color=red&from=\frac{1}{\Gamma(s)}\int_{0}^{\infty}\frac{u^{s-1}}{e^{u}-1}\mathrm{d}u 143 |

144 | 147 | 148 |

Background Color

149 |

150 | By default, the background is transparent. You can manually change this 151 | behavior by passing `bgcolor` parameter. `auto` or any CSS color name 152 | can be used. 153 |

154 |

155 | https://math.vercel.app?color=white&bgcolor=auto&from=\frac{1}{\Gamma(s)}\int_{0}^{\infty}\frac{u^{s-1}}{e^{u}-1}\mathrm{d}u 161 |

162 | 165 | 166 |

Online Editor

167 |

170 |
171 |

178 | 186 |
187 |
188 |

Preview

189 | 190 |

HTML

191 | 197 |

Markdown

198 | 204 |

URL

205 | 211 |
212 | 213 | 282 |

Resources

283 | Source Code (GitHub)
285 | Author (Twitter)
286 | Math API: LaTeX Math as SVG image - DEV Community 👩‍💻👨‍💻
289 |
290 | 291 | 292 | -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- 1 | import request from "supertest"; 2 | import app from "."; 3 | 4 | const PREPARE_LIMIT = 50 * 1000; 5 | const OVERALL_LIMIT = PREPARE_LIMIT + 20 * 1000; 6 | 7 | jest.retryTimes(3); 8 | 9 | it( 10 | "renders home", 11 | async () => { 12 | const response = await request(app).get("/?from=\\sum").redirects(1); 13 | 14 | expect(response.body.toString()).toMatchSnapshot(); 15 | }, 16 | OVERALL_LIMIT 17 | ); 18 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | import express from "express"; 2 | import { urlencoded } from "body-parser"; 3 | import helmet from "helmet"; 4 | import { tex2svg } from "./adaptor"; 5 | 6 | const app = express(); 7 | 8 | app.use(helmet()); 9 | app.use(urlencoded({ extended: false })); 10 | 11 | app.get("*", async function (req, res, next) { 12 | const mode = Object.keys(req.query).includes("from") 13 | ? "block" 14 | : Object.keys(req.query).includes("inline") 15 | ? "inline" 16 | : null; 17 | if (!mode) { 18 | return next(); 19 | } 20 | const isInline = mode === "inline"; 21 | const equation = isInline 22 | ? (req.query.inline as string) 23 | : (req.query.from as string); 24 | if (!equation || equation.match(/\.ico$/)) { 25 | return next(); 26 | } 27 | 28 | const color = req.query.color as string | undefined; 29 | const bgColor = req.query.bgcolor as string | undefined; 30 | 31 | if (color && /[^a-zA-Z0-9#]/.test(color)) { 32 | return next(); 33 | } 34 | if (bgColor && /[^a-zA-Z0-9#]/.test(bgColor)) { 35 | return next(); 36 | } 37 | 38 | const normalizedEquation = equation.replace(/\.(svg|png)$/, ""); 39 | 40 | try { 41 | const svgString = tex2svg(normalizedEquation, isInline, color, bgColor); 42 | 43 | res.setHeader("cache-control", "s-maxage=604800, max-age=604800"); 44 | res.contentType("image/svg+xml"); 45 | res.write(` 46 | 47 | `); 48 | 49 | res.end(svgString); 50 | } catch (err) { 51 | res.status(500); 52 | res.write( 53 | '' 54 | ); 55 | res.write(err); 56 | res.end(""); 57 | } 58 | }); 59 | 60 | app.get("/", function (req, res) { 61 | res.redirect(301, "/home"); 62 | }); 63 | 64 | export default app; 65 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | testEnvironment: 'node', 4 | testRunner: 'jest-circus/runner', 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "math-api", 3 | "description": "LaTeX Math-to-Image API", 4 | "version": "1.0.0", 5 | "author": "Yasuaki Uechi (https://uechi.io/)", 6 | "scripts": { 7 | "deploy": "vc", 8 | "dev": "vc dev", 9 | "rollout": "vc --target production && vc rm math --safe", 10 | "test": "jest" 11 | }, 12 | "dependencies": { 13 | "body-parser": "^1.20.0", 14 | "colord": "^2.9.2", 15 | "corser": "^2.0.1", 16 | "express": "^4.17.3", 17 | "helmet": "^4.6.0", 18 | "mathjax-full": "^3.2.0" 19 | }, 20 | "devDependencies": { 21 | "@types/express": "^4.17.13", 22 | "@types/jest": "^27.4.1", 23 | "@types/memory-cache": "^0.2.2", 24 | "@types/node": "^16.10.3", 25 | "@types/supertest": "^2.0.12", 26 | "@vercel/node": "^1.14.1", 27 | "jest": "^27.5.1", 28 | "jest-circus": "^27.5.1", 29 | "supertest": "^6.2.2", 30 | "ts-jest": "^27.1.4", 31 | "ts-node": "^10.7.0", 32 | "typescript": "^4.6.3" 33 | }, 34 | "homepage": "https://github.com/uetchy/math-api", 35 | "repository": { 36 | "type": "git", 37 | "url": "https://github.com/uetchy/math-api.git" 38 | }, 39 | "bugs": { 40 | "url": "https://github.com/uetchy/math-api/issues" 41 | }, 42 | "license": "Apache-2.0", 43 | "keywords": [ 44 | "api", 45 | "latex", 46 | "math" 47 | ], 48 | "engines": { 49 | "node": ">=10.0.0" 50 | }, 51 | "private": true 52 | } 53 | -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- 1 | import path from 'path'; 2 | import app from '.'; 3 | 4 | app.get('/home', (req, res) => { 5 | res.sendFile(path.join(__dirname, 'index.html')); 6 | }); 7 | 8 | app.listen(process.env.PORT || 3000); 9 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t math-api-test . 4 | docker run --rm -t math-api-test -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | // "incremental": true, /* Enable incremental compilation */ 5 | "target": "es2018" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, 6 | "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, 7 | // "lib": [], /* Specify library files to be included in the compilation. */ 8 | // "allowJs": true, /* Allow javascript files to be compiled. */ 9 | // "checkJs": true, /* Report errors in .js files. */ 10 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 11 | // "declaration": true, /* Generates corresponding '.d.ts' file. */ 12 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ 13 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 14 | // "outFile": "./", /* Concatenate and emit output to single file. */ 15 | // "outDir": "./", /* Redirect output structure to the directory. */ 16 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 17 | // "composite": true, /* Enable project compilation */ 18 | // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ 19 | // "removeComments": true, /* Do not emit comments to output. */ 20 | // "noEmit": true, /* Do not emit outputs. */ 21 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 22 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 23 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 24 | 25 | /* Strict Type-Checking Options */ 26 | "strict": true /* Enable all strict type-checking options. */, 27 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 28 | // "strictNullChecks": true, /* Enable strict null checks. */ 29 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 30 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ 31 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 32 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 33 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 34 | 35 | /* Additional Checks */ 36 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 37 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 38 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 39 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 40 | 41 | /* Module Resolution Options */ 42 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 43 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 44 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 45 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 46 | // "typeRoots": [], /* List of folders to include type definitions from. */ 47 | // "types": [], /* Type declaration files to be included in compilation. */ 48 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 49 | "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, 50 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 51 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 52 | 53 | /* Source Map Options */ 54 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 55 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 56 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 57 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 58 | 59 | /* Experimental Options */ 60 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 61 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 62 | "skipLibCheck": true 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "builds": [ 3 | { 4 | "src": "index.ts", 5 | "use": "@vercel/node", 6 | "config": { 7 | "maxLambdaSize": "50mb" 8 | } 9 | }, 10 | { 11 | "src": "index.html", 12 | "use": "@vercel/static" 13 | } 14 | ], 15 | "routes": [ 16 | { 17 | "src": "/home", 18 | "dest": "index.html", 19 | "headers": { 20 | "cache-control": "s-maxage=604800" 21 | } 22 | }, 23 | { 24 | "src": "/*", 25 | "dest": "index.ts" 26 | } 27 | ], 28 | "github": { 29 | "silent": true 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.1.0": 6 | version "2.1.2" 7 | resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34" 8 | integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg== 9 | dependencies: 10 | "@jridgewell/trace-mapping" "^0.3.0" 11 | 12 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7": 13 | version "7.16.7" 14 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" 15 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 16 | dependencies: 17 | "@babel/highlight" "^7.16.7" 18 | 19 | "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.15.8": 20 | version "7.15.8" 21 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz#45990c47adadb00c03677baa89221f7cc23d2503" 22 | integrity sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg== 23 | dependencies: 24 | "@babel/highlight" "^7.14.5" 25 | 26 | "@babel/compat-data@^7.15.0": 27 | version "7.15.0" 28 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" 29 | integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== 30 | 31 | "@babel/compat-data@^7.17.7": 32 | version "7.17.7" 33 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz#078d8b833fbbcc95286613be8c716cef2b519fa2" 34 | integrity sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ== 35 | 36 | "@babel/core@^7.1.0", "@babel/core@^7.7.2": 37 | version "7.15.8" 38 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz#195b9f2bffe995d2c6c159e72fe525b4114e8c10" 39 | integrity sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og== 40 | dependencies: 41 | "@babel/code-frame" "^7.15.8" 42 | "@babel/generator" "^7.15.8" 43 | "@babel/helper-compilation-targets" "^7.15.4" 44 | "@babel/helper-module-transforms" "^7.15.8" 45 | "@babel/helpers" "^7.15.4" 46 | "@babel/parser" "^7.15.8" 47 | "@babel/template" "^7.15.4" 48 | "@babel/traverse" "^7.15.4" 49 | "@babel/types" "^7.15.6" 50 | convert-source-map "^1.7.0" 51 | debug "^4.1.0" 52 | gensync "^1.0.0-beta.2" 53 | json5 "^2.1.2" 54 | semver "^6.3.0" 55 | source-map "^0.5.0" 56 | 57 | "@babel/core@^7.12.3", "@babel/core@^7.8.0": 58 | version "7.17.9" 59 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz#6bae81a06d95f4d0dec5bb9d74bbc1f58babdcfe" 60 | integrity sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw== 61 | dependencies: 62 | "@ampproject/remapping" "^2.1.0" 63 | "@babel/code-frame" "^7.16.7" 64 | "@babel/generator" "^7.17.9" 65 | "@babel/helper-compilation-targets" "^7.17.7" 66 | "@babel/helper-module-transforms" "^7.17.7" 67 | "@babel/helpers" "^7.17.9" 68 | "@babel/parser" "^7.17.9" 69 | "@babel/template" "^7.16.7" 70 | "@babel/traverse" "^7.17.9" 71 | "@babel/types" "^7.17.0" 72 | convert-source-map "^1.7.0" 73 | debug "^4.1.0" 74 | gensync "^1.0.0-beta.2" 75 | json5 "^2.2.1" 76 | semver "^6.3.0" 77 | 78 | "@babel/generator@^7.15.4", "@babel/generator@^7.15.8", "@babel/generator@^7.7.2": 79 | version "7.15.8" 80 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz#fa56be6b596952ceb231048cf84ee499a19c0cd1" 81 | integrity sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g== 82 | dependencies: 83 | "@babel/types" "^7.15.6" 84 | jsesc "^2.5.1" 85 | source-map "^0.5.0" 86 | 87 | "@babel/generator@^7.17.9": 88 | version "7.17.9" 89 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz#f4af9fd38fa8de143c29fce3f71852406fc1e2fc" 90 | integrity sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ== 91 | dependencies: 92 | "@babel/types" "^7.17.0" 93 | jsesc "^2.5.1" 94 | source-map "^0.5.0" 95 | 96 | "@babel/helper-compilation-targets@^7.15.4": 97 | version "7.15.4" 98 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9" 99 | integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ== 100 | dependencies: 101 | "@babel/compat-data" "^7.15.0" 102 | "@babel/helper-validator-option" "^7.14.5" 103 | browserslist "^4.16.6" 104 | semver "^6.3.0" 105 | 106 | "@babel/helper-compilation-targets@^7.17.7": 107 | version "7.17.7" 108 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz#a3c2924f5e5f0379b356d4cfb313d1414dc30e46" 109 | integrity sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w== 110 | dependencies: 111 | "@babel/compat-data" "^7.17.7" 112 | "@babel/helper-validator-option" "^7.16.7" 113 | browserslist "^4.17.5" 114 | semver "^6.3.0" 115 | 116 | "@babel/helper-environment-visitor@^7.16.7": 117 | version "7.16.7" 118 | resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" 119 | integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== 120 | dependencies: 121 | "@babel/types" "^7.16.7" 122 | 123 | "@babel/helper-function-name@^7.15.4": 124 | version "7.15.4" 125 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" 126 | integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw== 127 | dependencies: 128 | "@babel/helper-get-function-arity" "^7.15.4" 129 | "@babel/template" "^7.15.4" 130 | "@babel/types" "^7.15.4" 131 | 132 | "@babel/helper-function-name@^7.17.9": 133 | version "7.17.9" 134 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" 135 | integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== 136 | dependencies: 137 | "@babel/template" "^7.16.7" 138 | "@babel/types" "^7.17.0" 139 | 140 | "@babel/helper-get-function-arity@^7.15.4": 141 | version "7.15.4" 142 | resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" 143 | integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA== 144 | dependencies: 145 | "@babel/types" "^7.15.4" 146 | 147 | "@babel/helper-hoist-variables@^7.15.4": 148 | version "7.15.4" 149 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" 150 | integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA== 151 | dependencies: 152 | "@babel/types" "^7.15.4" 153 | 154 | "@babel/helper-hoist-variables@^7.16.7": 155 | version "7.16.7" 156 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" 157 | integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== 158 | dependencies: 159 | "@babel/types" "^7.16.7" 160 | 161 | "@babel/helper-member-expression-to-functions@^7.15.4": 162 | version "7.15.4" 163 | resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef" 164 | integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA== 165 | dependencies: 166 | "@babel/types" "^7.15.4" 167 | 168 | "@babel/helper-module-imports@^7.15.4": 169 | version "7.15.4" 170 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" 171 | integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA== 172 | dependencies: 173 | "@babel/types" "^7.15.4" 174 | 175 | "@babel/helper-module-imports@^7.16.7": 176 | version "7.16.7" 177 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" 178 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 179 | dependencies: 180 | "@babel/types" "^7.16.7" 181 | 182 | "@babel/helper-module-transforms@^7.15.8": 183 | version "7.15.8" 184 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz#d8c0e75a87a52e374a8f25f855174786a09498b2" 185 | integrity sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg== 186 | dependencies: 187 | "@babel/helper-module-imports" "^7.15.4" 188 | "@babel/helper-replace-supers" "^7.15.4" 189 | "@babel/helper-simple-access" "^7.15.4" 190 | "@babel/helper-split-export-declaration" "^7.15.4" 191 | "@babel/helper-validator-identifier" "^7.15.7" 192 | "@babel/template" "^7.15.4" 193 | "@babel/traverse" "^7.15.4" 194 | "@babel/types" "^7.15.6" 195 | 196 | "@babel/helper-module-transforms@^7.17.7": 197 | version "7.17.7" 198 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz#3943c7f777139e7954a5355c815263741a9c1cbd" 199 | integrity sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw== 200 | dependencies: 201 | "@babel/helper-environment-visitor" "^7.16.7" 202 | "@babel/helper-module-imports" "^7.16.7" 203 | "@babel/helper-simple-access" "^7.17.7" 204 | "@babel/helper-split-export-declaration" "^7.16.7" 205 | "@babel/helper-validator-identifier" "^7.16.7" 206 | "@babel/template" "^7.16.7" 207 | "@babel/traverse" "^7.17.3" 208 | "@babel/types" "^7.17.0" 209 | 210 | "@babel/helper-optimise-call-expression@^7.15.4": 211 | version "7.15.4" 212 | resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171" 213 | integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw== 214 | dependencies: 215 | "@babel/types" "^7.15.4" 216 | 217 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": 218 | version "7.14.5" 219 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" 220 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== 221 | 222 | "@babel/helper-replace-supers@^7.15.4": 223 | version "7.15.4" 224 | resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a" 225 | integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw== 226 | dependencies: 227 | "@babel/helper-member-expression-to-functions" "^7.15.4" 228 | "@babel/helper-optimise-call-expression" "^7.15.4" 229 | "@babel/traverse" "^7.15.4" 230 | "@babel/types" "^7.15.4" 231 | 232 | "@babel/helper-simple-access@^7.15.4": 233 | version "7.15.4" 234 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b" 235 | integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg== 236 | dependencies: 237 | "@babel/types" "^7.15.4" 238 | 239 | "@babel/helper-simple-access@^7.17.7": 240 | version "7.17.7" 241 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz#aaa473de92b7987c6dfa7ce9a7d9674724823367" 242 | integrity sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA== 243 | dependencies: 244 | "@babel/types" "^7.17.0" 245 | 246 | "@babel/helper-split-export-declaration@^7.15.4": 247 | version "7.15.4" 248 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" 249 | integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw== 250 | dependencies: 251 | "@babel/types" "^7.15.4" 252 | 253 | "@babel/helper-split-export-declaration@^7.16.7": 254 | version "7.16.7" 255 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" 256 | integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 257 | dependencies: 258 | "@babel/types" "^7.16.7" 259 | 260 | "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7": 261 | version "7.15.7" 262 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 263 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 264 | 265 | "@babel/helper-validator-identifier@^7.16.7": 266 | version "7.16.7" 267 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 268 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 269 | 270 | "@babel/helper-validator-option@^7.14.5": 271 | version "7.14.5" 272 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 273 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 274 | 275 | "@babel/helper-validator-option@^7.16.7": 276 | version "7.16.7" 277 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" 278 | integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 279 | 280 | "@babel/helpers@^7.15.4": 281 | version "7.15.4" 282 | resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43" 283 | integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ== 284 | dependencies: 285 | "@babel/template" "^7.15.4" 286 | "@babel/traverse" "^7.15.4" 287 | "@babel/types" "^7.15.4" 288 | 289 | "@babel/helpers@^7.17.9": 290 | version "7.17.9" 291 | resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz#b2af120821bfbe44f9907b1826e168e819375a1a" 292 | integrity sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q== 293 | dependencies: 294 | "@babel/template" "^7.16.7" 295 | "@babel/traverse" "^7.17.9" 296 | "@babel/types" "^7.17.0" 297 | 298 | "@babel/highlight@^7.14.5": 299 | version "7.14.5" 300 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 301 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 302 | dependencies: 303 | "@babel/helper-validator-identifier" "^7.14.5" 304 | chalk "^2.0.0" 305 | js-tokens "^4.0.0" 306 | 307 | "@babel/highlight@^7.16.7": 308 | version "7.17.9" 309 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3" 310 | integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== 311 | dependencies: 312 | "@babel/helper-validator-identifier" "^7.16.7" 313 | chalk "^2.0.0" 314 | js-tokens "^4.0.0" 315 | 316 | "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.8": 317 | version "7.15.8" 318 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz#7bacdcbe71bdc3ff936d510c15dcea7cf0b99016" 319 | integrity sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA== 320 | 321 | "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.9": 322 | version "7.17.9" 323 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz#9c94189a6062f0291418ca021077983058e171ef" 324 | integrity sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg== 325 | 326 | "@babel/plugin-syntax-async-generators@^7.8.4": 327 | version "7.8.4" 328 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 329 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.8.0" 332 | 333 | "@babel/plugin-syntax-bigint@^7.8.3": 334 | version "7.8.3" 335 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 336 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 337 | dependencies: 338 | "@babel/helper-plugin-utils" "^7.8.0" 339 | 340 | "@babel/plugin-syntax-class-properties@^7.8.3": 341 | version "7.12.13" 342 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 343 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 344 | dependencies: 345 | "@babel/helper-plugin-utils" "^7.12.13" 346 | 347 | "@babel/plugin-syntax-import-meta@^7.8.3": 348 | version "7.10.4" 349 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 350 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 351 | dependencies: 352 | "@babel/helper-plugin-utils" "^7.10.4" 353 | 354 | "@babel/plugin-syntax-json-strings@^7.8.3": 355 | version "7.8.3" 356 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 357 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 358 | dependencies: 359 | "@babel/helper-plugin-utils" "^7.8.0" 360 | 361 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 362 | version "7.10.4" 363 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 364 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 365 | dependencies: 366 | "@babel/helper-plugin-utils" "^7.10.4" 367 | 368 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 369 | version "7.8.3" 370 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 371 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 372 | dependencies: 373 | "@babel/helper-plugin-utils" "^7.8.0" 374 | 375 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 376 | version "7.10.4" 377 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 378 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 379 | dependencies: 380 | "@babel/helper-plugin-utils" "^7.10.4" 381 | 382 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 383 | version "7.8.3" 384 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 385 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 386 | dependencies: 387 | "@babel/helper-plugin-utils" "^7.8.0" 388 | 389 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 390 | version "7.8.3" 391 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 392 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 393 | dependencies: 394 | "@babel/helper-plugin-utils" "^7.8.0" 395 | 396 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 397 | version "7.8.3" 398 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 399 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 400 | dependencies: 401 | "@babel/helper-plugin-utils" "^7.8.0" 402 | 403 | "@babel/plugin-syntax-top-level-await@^7.8.3": 404 | version "7.14.5" 405 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 406 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 407 | dependencies: 408 | "@babel/helper-plugin-utils" "^7.14.5" 409 | 410 | "@babel/plugin-syntax-typescript@^7.7.2": 411 | version "7.14.5" 412 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" 413 | integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== 414 | dependencies: 415 | "@babel/helper-plugin-utils" "^7.14.5" 416 | 417 | "@babel/template@^7.15.4", "@babel/template@^7.3.3": 418 | version "7.15.4" 419 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" 420 | integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg== 421 | dependencies: 422 | "@babel/code-frame" "^7.14.5" 423 | "@babel/parser" "^7.15.4" 424 | "@babel/types" "^7.15.4" 425 | 426 | "@babel/template@^7.16.7": 427 | version "7.16.7" 428 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" 429 | integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== 430 | dependencies: 431 | "@babel/code-frame" "^7.16.7" 432 | "@babel/parser" "^7.16.7" 433 | "@babel/types" "^7.16.7" 434 | 435 | "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2": 436 | version "7.15.4" 437 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" 438 | integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA== 439 | dependencies: 440 | "@babel/code-frame" "^7.14.5" 441 | "@babel/generator" "^7.15.4" 442 | "@babel/helper-function-name" "^7.15.4" 443 | "@babel/helper-hoist-variables" "^7.15.4" 444 | "@babel/helper-split-export-declaration" "^7.15.4" 445 | "@babel/parser" "^7.15.4" 446 | "@babel/types" "^7.15.4" 447 | debug "^4.1.0" 448 | globals "^11.1.0" 449 | 450 | "@babel/traverse@^7.17.3", "@babel/traverse@^7.17.9": 451 | version "7.17.9" 452 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz#1f9b207435d9ae4a8ed6998b2b82300d83c37a0d" 453 | integrity sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw== 454 | dependencies: 455 | "@babel/code-frame" "^7.16.7" 456 | "@babel/generator" "^7.17.9" 457 | "@babel/helper-environment-visitor" "^7.16.7" 458 | "@babel/helper-function-name" "^7.17.9" 459 | "@babel/helper-hoist-variables" "^7.16.7" 460 | "@babel/helper-split-export-declaration" "^7.16.7" 461 | "@babel/parser" "^7.17.9" 462 | "@babel/types" "^7.17.0" 463 | debug "^4.1.0" 464 | globals "^11.1.0" 465 | 466 | "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 467 | version "7.15.6" 468 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" 469 | integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig== 470 | dependencies: 471 | "@babel/helper-validator-identifier" "^7.14.9" 472 | to-fast-properties "^2.0.0" 473 | 474 | "@babel/types@^7.16.7", "@babel/types@^7.17.0": 475 | version "7.17.0" 476 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" 477 | integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== 478 | dependencies: 479 | "@babel/helper-validator-identifier" "^7.16.7" 480 | to-fast-properties "^2.0.0" 481 | 482 | "@bcoe/v8-coverage@^0.2.3": 483 | version "0.2.3" 484 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 485 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 486 | 487 | "@cspotcode/source-map-consumer@0.8.0": 488 | version "0.8.0" 489 | resolved "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz#33bf4b7b39c178821606f669bbc447a6a629786b" 490 | integrity sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg== 491 | 492 | "@cspotcode/source-map-support@0.7.0": 493 | version "0.7.0" 494 | resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz#4789840aa859e46d2f3173727ab707c66bf344f5" 495 | integrity sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA== 496 | dependencies: 497 | "@cspotcode/source-map-consumer" "0.8.0" 498 | 499 | "@istanbuljs/load-nyc-config@^1.0.0": 500 | version "1.1.0" 501 | resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 502 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 503 | dependencies: 504 | camelcase "^5.3.1" 505 | find-up "^4.1.0" 506 | get-package-type "^0.1.0" 507 | js-yaml "^3.13.1" 508 | resolve-from "^5.0.0" 509 | 510 | "@istanbuljs/schema@^0.1.2": 511 | version "0.1.3" 512 | resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 513 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 514 | 515 | "@jest/console@^27.5.1": 516 | version "27.5.1" 517 | resolved "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba" 518 | integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== 519 | dependencies: 520 | "@jest/types" "^27.5.1" 521 | "@types/node" "*" 522 | chalk "^4.0.0" 523 | jest-message-util "^27.5.1" 524 | jest-util "^27.5.1" 525 | slash "^3.0.0" 526 | 527 | "@jest/core@^27.5.1": 528 | version "27.5.1" 529 | resolved "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz#267ac5f704e09dc52de2922cbf3af9edcd64b626" 530 | integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== 531 | dependencies: 532 | "@jest/console" "^27.5.1" 533 | "@jest/reporters" "^27.5.1" 534 | "@jest/test-result" "^27.5.1" 535 | "@jest/transform" "^27.5.1" 536 | "@jest/types" "^27.5.1" 537 | "@types/node" "*" 538 | ansi-escapes "^4.2.1" 539 | chalk "^4.0.0" 540 | emittery "^0.8.1" 541 | exit "^0.1.2" 542 | graceful-fs "^4.2.9" 543 | jest-changed-files "^27.5.1" 544 | jest-config "^27.5.1" 545 | jest-haste-map "^27.5.1" 546 | jest-message-util "^27.5.1" 547 | jest-regex-util "^27.5.1" 548 | jest-resolve "^27.5.1" 549 | jest-resolve-dependencies "^27.5.1" 550 | jest-runner "^27.5.1" 551 | jest-runtime "^27.5.1" 552 | jest-snapshot "^27.5.1" 553 | jest-util "^27.5.1" 554 | jest-validate "^27.5.1" 555 | jest-watcher "^27.5.1" 556 | micromatch "^4.0.4" 557 | rimraf "^3.0.0" 558 | slash "^3.0.0" 559 | strip-ansi "^6.0.0" 560 | 561 | "@jest/environment@^27.5.1": 562 | version "27.5.1" 563 | resolved "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz#d7425820511fe7158abbecc010140c3fd3be9c74" 564 | integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== 565 | dependencies: 566 | "@jest/fake-timers" "^27.5.1" 567 | "@jest/types" "^27.5.1" 568 | "@types/node" "*" 569 | jest-mock "^27.5.1" 570 | 571 | "@jest/fake-timers@^27.5.1": 572 | version "27.5.1" 573 | resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz#76979745ce0579c8a94a4678af7a748eda8ada74" 574 | integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== 575 | dependencies: 576 | "@jest/types" "^27.5.1" 577 | "@sinonjs/fake-timers" "^8.0.1" 578 | "@types/node" "*" 579 | jest-message-util "^27.5.1" 580 | jest-mock "^27.5.1" 581 | jest-util "^27.5.1" 582 | 583 | "@jest/globals@^27.5.1": 584 | version "27.5.1" 585 | resolved "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz#7ac06ce57ab966566c7963431cef458434601b2b" 586 | integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== 587 | dependencies: 588 | "@jest/environment" "^27.5.1" 589 | "@jest/types" "^27.5.1" 590 | expect "^27.5.1" 591 | 592 | "@jest/reporters@^27.5.1": 593 | version "27.5.1" 594 | resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz#ceda7be96170b03c923c37987b64015812ffec04" 595 | integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== 596 | dependencies: 597 | "@bcoe/v8-coverage" "^0.2.3" 598 | "@jest/console" "^27.5.1" 599 | "@jest/test-result" "^27.5.1" 600 | "@jest/transform" "^27.5.1" 601 | "@jest/types" "^27.5.1" 602 | "@types/node" "*" 603 | chalk "^4.0.0" 604 | collect-v8-coverage "^1.0.0" 605 | exit "^0.1.2" 606 | glob "^7.1.2" 607 | graceful-fs "^4.2.9" 608 | istanbul-lib-coverage "^3.0.0" 609 | istanbul-lib-instrument "^5.1.0" 610 | istanbul-lib-report "^3.0.0" 611 | istanbul-lib-source-maps "^4.0.0" 612 | istanbul-reports "^3.1.3" 613 | jest-haste-map "^27.5.1" 614 | jest-resolve "^27.5.1" 615 | jest-util "^27.5.1" 616 | jest-worker "^27.5.1" 617 | slash "^3.0.0" 618 | source-map "^0.6.0" 619 | string-length "^4.0.1" 620 | terminal-link "^2.0.0" 621 | v8-to-istanbul "^8.1.0" 622 | 623 | "@jest/source-map@^27.5.1": 624 | version "27.5.1" 625 | resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz#6608391e465add4205eae073b55e7f279e04e8cf" 626 | integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== 627 | dependencies: 628 | callsites "^3.0.0" 629 | graceful-fs "^4.2.9" 630 | source-map "^0.6.0" 631 | 632 | "@jest/test-result@^27.5.1": 633 | version "27.5.1" 634 | resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb" 635 | integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== 636 | dependencies: 637 | "@jest/console" "^27.5.1" 638 | "@jest/types" "^27.5.1" 639 | "@types/istanbul-lib-coverage" "^2.0.0" 640 | collect-v8-coverage "^1.0.0" 641 | 642 | "@jest/test-sequencer@^27.5.1": 643 | version "27.5.1" 644 | resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz#4057e0e9cea4439e544c6353c6affe58d095745b" 645 | integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== 646 | dependencies: 647 | "@jest/test-result" "^27.5.1" 648 | graceful-fs "^4.2.9" 649 | jest-haste-map "^27.5.1" 650 | jest-runtime "^27.5.1" 651 | 652 | "@jest/transform@^27.5.1": 653 | version "27.5.1" 654 | resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz#6c3501dcc00c4c08915f292a600ece5ecfe1f409" 655 | integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== 656 | dependencies: 657 | "@babel/core" "^7.1.0" 658 | "@jest/types" "^27.5.1" 659 | babel-plugin-istanbul "^6.1.1" 660 | chalk "^4.0.0" 661 | convert-source-map "^1.4.0" 662 | fast-json-stable-stringify "^2.0.0" 663 | graceful-fs "^4.2.9" 664 | jest-haste-map "^27.5.1" 665 | jest-regex-util "^27.5.1" 666 | jest-util "^27.5.1" 667 | micromatch "^4.0.4" 668 | pirates "^4.0.4" 669 | slash "^3.0.0" 670 | source-map "^0.6.1" 671 | write-file-atomic "^3.0.0" 672 | 673 | "@jest/types@^27.2.4": 674 | version "27.2.4" 675 | resolved "https://registry.npmjs.org/@jest/types/-/types-27.2.4.tgz#2430042a66e00dc5b140c3636f4474d464c21ee8" 676 | integrity sha512-IDO2ezTxeMvQAHxzG/ZvEyA47q0aVfzT95rGFl7bZs/Go0aIucvfDbS2rmnoEdXxlLQhcolmoG/wvL/uKx4tKA== 677 | dependencies: 678 | "@types/istanbul-lib-coverage" "^2.0.0" 679 | "@types/istanbul-reports" "^3.0.0" 680 | "@types/node" "*" 681 | "@types/yargs" "^16.0.0" 682 | chalk "^4.0.0" 683 | 684 | "@jest/types@^27.5.1": 685 | version "27.5.1" 686 | resolved "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" 687 | integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== 688 | dependencies: 689 | "@types/istanbul-lib-coverage" "^2.0.0" 690 | "@types/istanbul-reports" "^3.0.0" 691 | "@types/node" "*" 692 | "@types/yargs" "^16.0.0" 693 | chalk "^4.0.0" 694 | 695 | "@jridgewell/resolve-uri@^3.0.3": 696 | version "3.0.5" 697 | resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c" 698 | integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew== 699 | 700 | "@jridgewell/sourcemap-codec@^1.4.10": 701 | version "1.4.11" 702 | resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec" 703 | integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg== 704 | 705 | "@jridgewell/trace-mapping@^0.3.0": 706 | version "0.3.4" 707 | resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz#f6a0832dffd5b8a6aaa633b7d9f8e8e94c83a0c3" 708 | integrity sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ== 709 | dependencies: 710 | "@jridgewell/resolve-uri" "^3.0.3" 711 | "@jridgewell/sourcemap-codec" "^1.4.10" 712 | 713 | "@sinonjs/commons@^1.7.0": 714 | version "1.8.3" 715 | resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 716 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 717 | dependencies: 718 | type-detect "4.0.8" 719 | 720 | "@sinonjs/fake-timers@^8.0.1": 721 | version "8.0.1" 722 | resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz#1c1c9a91419f804e59ae8df316a07dd1c3a76b94" 723 | integrity sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew== 724 | dependencies: 725 | "@sinonjs/commons" "^1.7.0" 726 | 727 | "@tootallnate/once@1": 728 | version "1.1.2" 729 | resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 730 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 731 | 732 | "@tsconfig/node10@^1.0.7": 733 | version "1.0.8" 734 | resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" 735 | integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== 736 | 737 | "@tsconfig/node12@^1.0.7": 738 | version "1.0.9" 739 | resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz#62c1f6dee2ebd9aead80dc3afa56810e58e1a04c" 740 | integrity sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw== 741 | 742 | "@tsconfig/node14@^1.0.0": 743 | version "1.0.1" 744 | resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" 745 | integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== 746 | 747 | "@tsconfig/node16@^1.0.2": 748 | version "1.0.2" 749 | resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" 750 | integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== 751 | 752 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 753 | version "7.1.16" 754 | resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702" 755 | integrity sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ== 756 | dependencies: 757 | "@babel/parser" "^7.1.0" 758 | "@babel/types" "^7.0.0" 759 | "@types/babel__generator" "*" 760 | "@types/babel__template" "*" 761 | "@types/babel__traverse" "*" 762 | 763 | "@types/babel__generator@*": 764 | version "7.6.3" 765 | resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" 766 | integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== 767 | dependencies: 768 | "@babel/types" "^7.0.0" 769 | 770 | "@types/babel__template@*": 771 | version "7.4.1" 772 | resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 773 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 774 | dependencies: 775 | "@babel/parser" "^7.1.0" 776 | "@babel/types" "^7.0.0" 777 | 778 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 779 | version "7.14.2" 780 | resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" 781 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 782 | dependencies: 783 | "@babel/types" "^7.3.0" 784 | 785 | "@types/body-parser@*": 786 | version "1.19.1" 787 | resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.1.tgz#0c0174c42a7d017b818303d4b5d969cb0b75929c" 788 | integrity sha512-a6bTJ21vFOGIkwM0kzh9Yr89ziVxq4vYH2fQ6N8AeipEzai/cFK6aGMArIkUeIdRIgpwQa+2bXiLuUJCpSf2Cg== 789 | dependencies: 790 | "@types/connect" "*" 791 | "@types/node" "*" 792 | 793 | "@types/connect@*": 794 | version "3.4.35" 795 | resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" 796 | integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== 797 | dependencies: 798 | "@types/node" "*" 799 | 800 | "@types/cookiejar@*": 801 | version "2.1.2" 802 | resolved "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.2.tgz#66ad9331f63fe8a3d3d9d8c6e3906dd10f6446e8" 803 | integrity sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog== 804 | 805 | "@types/express-serve-static-core@^4.17.18": 806 | version "4.17.24" 807 | resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz#ea41f93bf7e0d59cd5a76665068ed6aab6815c07" 808 | integrity sha512-3UJuW+Qxhzwjq3xhwXm2onQcFHn76frIYVbTu+kn24LFxI+dEhdfISDFovPB8VpEgW8oQCTpRuCe+0zJxB7NEA== 809 | dependencies: 810 | "@types/node" "*" 811 | "@types/qs" "*" 812 | "@types/range-parser" "*" 813 | 814 | "@types/express@^4.17.13": 815 | version "4.17.13" 816 | resolved "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034" 817 | integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA== 818 | dependencies: 819 | "@types/body-parser" "*" 820 | "@types/express-serve-static-core" "^4.17.18" 821 | "@types/qs" "*" 822 | "@types/serve-static" "*" 823 | 824 | "@types/graceful-fs@^4.1.2": 825 | version "4.1.5" 826 | resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 827 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 828 | dependencies: 829 | "@types/node" "*" 830 | 831 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 832 | version "2.0.3" 833 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 834 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== 835 | 836 | "@types/istanbul-lib-report@*": 837 | version "3.0.0" 838 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 839 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 840 | dependencies: 841 | "@types/istanbul-lib-coverage" "*" 842 | 843 | "@types/istanbul-reports@^3.0.0": 844 | version "3.0.1" 845 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 846 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 847 | dependencies: 848 | "@types/istanbul-lib-report" "*" 849 | 850 | "@types/jest@^27.4.1": 851 | version "27.4.1" 852 | resolved "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz#185cbe2926eaaf9662d340cc02e548ce9e11ab6d" 853 | integrity sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw== 854 | dependencies: 855 | jest-matcher-utils "^27.0.0" 856 | pretty-format "^27.0.0" 857 | 858 | "@types/memory-cache@^0.2.2": 859 | version "0.2.2" 860 | resolved "https://registry.npmjs.org/@types/memory-cache/-/memory-cache-0.2.2.tgz#f8fb6d8aa0eb006ed44fc659bf8bfdc1a5cc57fa" 861 | integrity sha512-xNnm6EkmYYhTnLiOHC2bdKgcYY5qjjrq5vl9KXD2nh0em0koZoFS500EL4Q4V/eW+A3P7NC7P7GIYzNOSQp7jQ== 862 | 863 | "@types/mime@^1": 864 | version "1.3.2" 865 | resolved "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" 866 | integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== 867 | 868 | "@types/node@*", "@types/node@^16.10.3": 869 | version "16.10.3" 870 | resolved "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz#7a8f2838603ea314d1d22bb3171d899e15c57bd5" 871 | integrity sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ== 872 | 873 | "@types/prettier@^2.1.5": 874 | version "2.4.1" 875 | resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.1.tgz#e1303048d5389563e130f5bdd89d37a99acb75eb" 876 | integrity sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw== 877 | 878 | "@types/qs@*": 879 | version "6.9.7" 880 | resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" 881 | integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== 882 | 883 | "@types/range-parser@*": 884 | version "1.2.4" 885 | resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" 886 | integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== 887 | 888 | "@types/serve-static@*": 889 | version "1.13.10" 890 | resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz#f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9" 891 | integrity sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ== 892 | dependencies: 893 | "@types/mime" "^1" 894 | "@types/node" "*" 895 | 896 | "@types/stack-utils@^2.0.0": 897 | version "2.0.1" 898 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 899 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 900 | 901 | "@types/superagent@*": 902 | version "4.1.13" 903 | resolved "https://registry.npmjs.org/@types/superagent/-/superagent-4.1.13.tgz#0aaa3f4ff9404b94932d1dcdfb7f3d39d23997a0" 904 | integrity sha512-YIGelp3ZyMiH0/A09PMAORO0EBGlF5xIKfDpK74wdYvWUs2o96b5CItJcWPdH409b7SAXIIG6p8NdU/4U2Maww== 905 | dependencies: 906 | "@types/cookiejar" "*" 907 | "@types/node" "*" 908 | 909 | "@types/supertest@^2.0.12": 910 | version "2.0.12" 911 | resolved "https://registry.npmjs.org/@types/supertest/-/supertest-2.0.12.tgz#ddb4a0568597c9aadff8dbec5b2e8fddbe8692fc" 912 | integrity sha512-X3HPWTwXRerBZS7Mo1k6vMVR1Z6zmJcDVn5O/31whe0tnjE4te6ZJSJGq1RiqHPjzPdMTfjCFogDJmwng9xHaQ== 913 | dependencies: 914 | "@types/superagent" "*" 915 | 916 | "@types/yargs-parser@*": 917 | version "20.2.1" 918 | resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" 919 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== 920 | 921 | "@types/yargs@^16.0.0": 922 | version "16.0.4" 923 | resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 924 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 925 | dependencies: 926 | "@types/yargs-parser" "*" 927 | 928 | "@vercel/node-bridge@2.2.0": 929 | version "2.2.0" 930 | resolved "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-2.2.0.tgz#9f77e68733d782bb6edd1e86c2d2eae8e4ca7a3c" 931 | integrity sha512-ydYlZyIQfsuriF6qTt/F4vaAt+nb4ZKhLEl2o5AQFa5ED7LoPS5w01Xbujy+25pqS1ODu8/bsqOCUSX8y/+tSQ== 932 | 933 | "@vercel/node@^1.14.1": 934 | version "1.14.1" 935 | resolved "https://registry.npmjs.org/@vercel/node/-/node-1.14.1.tgz#a63d8bfc0274cb0f89e4835f418d1b36e439f965" 936 | integrity sha512-/R1tERotQMTBoB4gw390B8wJAOS9IO4iejing9jqLFSISdW7uVU6kgkUbLM8OtuN0DGwi1qYQ6DcdxySX2qYzw== 937 | dependencies: 938 | "@types/node" "*" 939 | "@vercel/node-bridge" "2.2.0" 940 | ts-node "8.9.1" 941 | typescript "4.3.4" 942 | 943 | abab@^2.0.3, abab@^2.0.5: 944 | version "2.0.5" 945 | resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 946 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 947 | 948 | accepts@~1.3.8: 949 | version "1.3.8" 950 | resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" 951 | integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== 952 | dependencies: 953 | mime-types "~2.1.34" 954 | negotiator "0.6.3" 955 | 956 | acorn-globals@^6.0.0: 957 | version "6.0.0" 958 | resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 959 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 960 | dependencies: 961 | acorn "^7.1.1" 962 | acorn-walk "^7.1.1" 963 | 964 | acorn-walk@^7.1.1: 965 | version "7.2.0" 966 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 967 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 968 | 969 | acorn-walk@^8.1.1: 970 | version "8.2.0" 971 | resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" 972 | integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== 973 | 974 | acorn@^7.1.1: 975 | version "7.4.1" 976 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 977 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 978 | 979 | acorn@^8.2.4, acorn@^8.4.1: 980 | version "8.5.0" 981 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" 982 | integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q== 983 | 984 | agent-base@6: 985 | version "6.0.2" 986 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 987 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 988 | dependencies: 989 | debug "4" 990 | 991 | ansi-escapes@^4.2.1: 992 | version "4.3.2" 993 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 994 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 995 | dependencies: 996 | type-fest "^0.21.3" 997 | 998 | ansi-regex@^5.0.1: 999 | version "5.0.1" 1000 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 1001 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1002 | 1003 | ansi-styles@^3.2.1: 1004 | version "3.2.1" 1005 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1006 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1007 | dependencies: 1008 | color-convert "^1.9.0" 1009 | 1010 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1011 | version "4.3.0" 1012 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1013 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1014 | dependencies: 1015 | color-convert "^2.0.1" 1016 | 1017 | ansi-styles@^5.0.0: 1018 | version "5.2.0" 1019 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 1020 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 1021 | 1022 | anymatch@^3.0.3: 1023 | version "3.1.2" 1024 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 1025 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 1026 | dependencies: 1027 | normalize-path "^3.0.0" 1028 | picomatch "^2.0.4" 1029 | 1030 | arg@^4.1.0: 1031 | version "4.1.3" 1032 | resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 1033 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 1034 | 1035 | argparse@^1.0.7: 1036 | version "1.0.10" 1037 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1038 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1039 | dependencies: 1040 | sprintf-js "~1.0.2" 1041 | 1042 | array-flatten@1.1.1: 1043 | version "1.1.1" 1044 | resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 1045 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 1046 | 1047 | asap@^2.0.0: 1048 | version "2.0.6" 1049 | resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 1050 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= 1051 | 1052 | asynckit@^0.4.0: 1053 | version "0.4.0" 1054 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 1055 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 1056 | 1057 | babel-jest@^27.5.1: 1058 | version "27.5.1" 1059 | resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz#a1bf8d61928edfefd21da27eb86a695bfd691444" 1060 | integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== 1061 | dependencies: 1062 | "@jest/transform" "^27.5.1" 1063 | "@jest/types" "^27.5.1" 1064 | "@types/babel__core" "^7.1.14" 1065 | babel-plugin-istanbul "^6.1.1" 1066 | babel-preset-jest "^27.5.1" 1067 | chalk "^4.0.0" 1068 | graceful-fs "^4.2.9" 1069 | slash "^3.0.0" 1070 | 1071 | babel-plugin-istanbul@^6.1.1: 1072 | version "6.1.1" 1073 | resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 1074 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 1075 | dependencies: 1076 | "@babel/helper-plugin-utils" "^7.0.0" 1077 | "@istanbuljs/load-nyc-config" "^1.0.0" 1078 | "@istanbuljs/schema" "^0.1.2" 1079 | istanbul-lib-instrument "^5.0.4" 1080 | test-exclude "^6.0.0" 1081 | 1082 | babel-plugin-jest-hoist@^27.5.1: 1083 | version "27.5.1" 1084 | resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz#9be98ecf28c331eb9f5df9c72d6f89deb8181c2e" 1085 | integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== 1086 | dependencies: 1087 | "@babel/template" "^7.3.3" 1088 | "@babel/types" "^7.3.3" 1089 | "@types/babel__core" "^7.0.0" 1090 | "@types/babel__traverse" "^7.0.6" 1091 | 1092 | babel-preset-current-node-syntax@^1.0.0: 1093 | version "1.0.1" 1094 | resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 1095 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 1096 | dependencies: 1097 | "@babel/plugin-syntax-async-generators" "^7.8.4" 1098 | "@babel/plugin-syntax-bigint" "^7.8.3" 1099 | "@babel/plugin-syntax-class-properties" "^7.8.3" 1100 | "@babel/plugin-syntax-import-meta" "^7.8.3" 1101 | "@babel/plugin-syntax-json-strings" "^7.8.3" 1102 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1103 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1104 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1105 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1106 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1107 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1108 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 1109 | 1110 | babel-preset-jest@^27.5.1: 1111 | version "27.5.1" 1112 | resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz#91f10f58034cb7989cb4f962b69fa6eef6a6bc81" 1113 | integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== 1114 | dependencies: 1115 | babel-plugin-jest-hoist "^27.5.1" 1116 | babel-preset-current-node-syntax "^1.0.0" 1117 | 1118 | balanced-match@^1.0.0: 1119 | version "1.0.2" 1120 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1121 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1122 | 1123 | body-parser@1.19.2: 1124 | version "1.19.2" 1125 | resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz#4714ccd9c157d44797b8b5607d72c0b89952f26e" 1126 | integrity sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw== 1127 | dependencies: 1128 | bytes "3.1.2" 1129 | content-type "~1.0.4" 1130 | debug "2.6.9" 1131 | depd "~1.1.2" 1132 | http-errors "1.8.1" 1133 | iconv-lite "0.4.24" 1134 | on-finished "~2.3.0" 1135 | qs "6.9.7" 1136 | raw-body "2.4.3" 1137 | type-is "~1.6.18" 1138 | 1139 | body-parser@^1.20.0: 1140 | version "1.20.0" 1141 | resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5" 1142 | integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg== 1143 | dependencies: 1144 | bytes "3.1.2" 1145 | content-type "~1.0.4" 1146 | debug "2.6.9" 1147 | depd "2.0.0" 1148 | destroy "1.2.0" 1149 | http-errors "2.0.0" 1150 | iconv-lite "0.4.24" 1151 | on-finished "2.4.1" 1152 | qs "6.10.3" 1153 | raw-body "2.5.1" 1154 | type-is "~1.6.18" 1155 | unpipe "1.0.0" 1156 | 1157 | brace-expansion@^1.1.7: 1158 | version "1.1.11" 1159 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1160 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1161 | dependencies: 1162 | balanced-match "^1.0.0" 1163 | concat-map "0.0.1" 1164 | 1165 | braces@^3.0.1: 1166 | version "3.0.2" 1167 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1168 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1169 | dependencies: 1170 | fill-range "^7.0.1" 1171 | 1172 | browser-process-hrtime@^1.0.0: 1173 | version "1.0.0" 1174 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 1175 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 1176 | 1177 | browserslist@^4.16.6: 1178 | version "4.17.3" 1179 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.17.3.tgz#2844cd6eebe14d12384b0122d217550160d2d624" 1180 | integrity sha512-59IqHJV5VGdcJZ+GZ2hU5n4Kv3YiASzW6Xk5g9tf5a/MAzGeFwgGWU39fVzNIOVcgB3+Gp+kiQu0HEfTVU/3VQ== 1181 | dependencies: 1182 | caniuse-lite "^1.0.30001264" 1183 | electron-to-chromium "^1.3.857" 1184 | escalade "^3.1.1" 1185 | node-releases "^1.1.77" 1186 | picocolors "^0.2.1" 1187 | 1188 | browserslist@^4.17.5: 1189 | version "4.20.2" 1190 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz#567b41508757ecd904dab4d1c646c612cd3d4f88" 1191 | integrity sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA== 1192 | dependencies: 1193 | caniuse-lite "^1.0.30001317" 1194 | electron-to-chromium "^1.4.84" 1195 | escalade "^3.1.1" 1196 | node-releases "^2.0.2" 1197 | picocolors "^1.0.0" 1198 | 1199 | bs-logger@0.x: 1200 | version "0.2.6" 1201 | resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 1202 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 1203 | dependencies: 1204 | fast-json-stable-stringify "2.x" 1205 | 1206 | bser@2.1.1: 1207 | version "2.1.1" 1208 | resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 1209 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 1210 | dependencies: 1211 | node-int64 "^0.4.0" 1212 | 1213 | buffer-from@^1.0.0: 1214 | version "1.1.2" 1215 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 1216 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1217 | 1218 | bytes@3.1.2: 1219 | version "3.1.2" 1220 | resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" 1221 | integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== 1222 | 1223 | call-bind@^1.0.0: 1224 | version "1.0.2" 1225 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 1226 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1227 | dependencies: 1228 | function-bind "^1.1.1" 1229 | get-intrinsic "^1.0.2" 1230 | 1231 | callsites@^3.0.0: 1232 | version "3.1.0" 1233 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1234 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1235 | 1236 | camelcase@^5.3.1: 1237 | version "5.3.1" 1238 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1239 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1240 | 1241 | camelcase@^6.2.0: 1242 | version "6.2.0" 1243 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 1244 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 1245 | 1246 | caniuse-lite@^1.0.30001264: 1247 | version "1.0.30001265" 1248 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001265.tgz#0613c9e6c922e422792e6fcefdf9a3afeee4f8c3" 1249 | integrity sha512-YzBnspggWV5hep1m9Z6sZVLOt7vrju8xWooFAgN6BA5qvy98qPAPb7vNUzypFaoh2pb3vlfzbDO8tB57UPGbtw== 1250 | 1251 | caniuse-lite@^1.0.30001317: 1252 | version "1.0.30001328" 1253 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001328.tgz#0ed7a2ca65ec45872c613630201644237ba1e329" 1254 | integrity sha512-Ue55jHkR/s4r00FLNiX+hGMMuwml/QGqqzVeMQ5thUewznU2EdULFvI3JR7JJid6OrjJNfFvHY2G2dIjmRaDDQ== 1255 | 1256 | chalk@^2.0.0: 1257 | version "2.4.2" 1258 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1259 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1260 | dependencies: 1261 | ansi-styles "^3.2.1" 1262 | escape-string-regexp "^1.0.5" 1263 | supports-color "^5.3.0" 1264 | 1265 | chalk@^4.0.0: 1266 | version "4.1.2" 1267 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 1268 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1269 | dependencies: 1270 | ansi-styles "^4.1.0" 1271 | supports-color "^7.1.0" 1272 | 1273 | char-regex@^1.0.2: 1274 | version "1.0.2" 1275 | resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 1276 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1277 | 1278 | ci-info@^3.1.1: 1279 | version "3.2.0" 1280 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" 1281 | integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== 1282 | 1283 | ci-info@^3.2.0: 1284 | version "3.3.0" 1285 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" 1286 | integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== 1287 | 1288 | cjs-module-lexer@^1.0.0: 1289 | version "1.2.2" 1290 | resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 1291 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 1292 | 1293 | cliui@^7.0.2: 1294 | version "7.0.4" 1295 | resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 1296 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 1297 | dependencies: 1298 | string-width "^4.2.0" 1299 | strip-ansi "^6.0.0" 1300 | wrap-ansi "^7.0.0" 1301 | 1302 | co@^4.6.0: 1303 | version "4.6.0" 1304 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1305 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1306 | 1307 | collect-v8-coverage@^1.0.0: 1308 | version "1.0.1" 1309 | resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 1310 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 1311 | 1312 | color-convert@^1.9.0: 1313 | version "1.9.3" 1314 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1315 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1316 | dependencies: 1317 | color-name "1.1.3" 1318 | 1319 | color-convert@^2.0.1: 1320 | version "2.0.1" 1321 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1322 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1323 | dependencies: 1324 | color-name "~1.1.4" 1325 | 1326 | color-name@1.1.3: 1327 | version "1.1.3" 1328 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1329 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1330 | 1331 | color-name@~1.1.4: 1332 | version "1.1.4" 1333 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1334 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1335 | 1336 | colord@^2.9.2: 1337 | version "2.9.2" 1338 | resolved "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz#25e2bacbbaa65991422c07ea209e2089428effb1" 1339 | integrity sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ== 1340 | 1341 | combined-stream@^1.0.8: 1342 | version "1.0.8" 1343 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 1344 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 1345 | dependencies: 1346 | delayed-stream "~1.0.0" 1347 | 1348 | commander@>=7.0.0: 1349 | version "8.2.0" 1350 | resolved "https://registry.npmjs.org/commander/-/commander-8.2.0.tgz#37fe2bde301d87d47a53adeff8b5915db1381ca8" 1351 | integrity sha512-LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA== 1352 | 1353 | component-emitter@^1.3.0: 1354 | version "1.3.0" 1355 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1356 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1357 | 1358 | concat-map@0.0.1: 1359 | version "0.0.1" 1360 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1361 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1362 | 1363 | content-disposition@0.5.4: 1364 | version "0.5.4" 1365 | resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" 1366 | integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== 1367 | dependencies: 1368 | safe-buffer "5.2.1" 1369 | 1370 | content-type@~1.0.4: 1371 | version "1.0.4" 1372 | resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1373 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 1374 | 1375 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1376 | version "1.8.0" 1377 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 1378 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1379 | dependencies: 1380 | safe-buffer "~5.1.1" 1381 | 1382 | cookie-signature@1.0.6: 1383 | version "1.0.6" 1384 | resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1385 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 1386 | 1387 | cookie@0.4.2: 1388 | version "0.4.2" 1389 | resolved "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" 1390 | integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== 1391 | 1392 | cookiejar@^2.1.3: 1393 | version "2.1.3" 1394 | resolved "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz#fc7a6216e408e74414b90230050842dacda75acc" 1395 | integrity sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ== 1396 | 1397 | corser@^2.0.1: 1398 | version "2.0.1" 1399 | resolved "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" 1400 | integrity sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c= 1401 | 1402 | create-require@^1.1.0: 1403 | version "1.1.1" 1404 | resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" 1405 | integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== 1406 | 1407 | cross-spawn@^7.0.3: 1408 | version "7.0.3" 1409 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1410 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1411 | dependencies: 1412 | path-key "^3.1.0" 1413 | shebang-command "^2.0.0" 1414 | which "^2.0.1" 1415 | 1416 | cssom@^0.4.4: 1417 | version "0.4.4" 1418 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 1419 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 1420 | 1421 | cssom@~0.3.6: 1422 | version "0.3.8" 1423 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 1424 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1425 | 1426 | cssstyle@^2.3.0: 1427 | version "2.3.0" 1428 | resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1429 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1430 | dependencies: 1431 | cssom "~0.3.6" 1432 | 1433 | data-urls@^2.0.0: 1434 | version "2.0.0" 1435 | resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 1436 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 1437 | dependencies: 1438 | abab "^2.0.3" 1439 | whatwg-mimetype "^2.3.0" 1440 | whatwg-url "^8.0.0" 1441 | 1442 | debug@2.6.9: 1443 | version "2.6.9" 1444 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1445 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1446 | dependencies: 1447 | ms "2.0.0" 1448 | 1449 | debug@4, debug@^4.1.0, debug@^4.1.1: 1450 | version "4.3.2" 1451 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 1452 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 1453 | dependencies: 1454 | ms "2.1.2" 1455 | 1456 | debug@^4.3.3: 1457 | version "4.3.4" 1458 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1459 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1460 | dependencies: 1461 | ms "2.1.2" 1462 | 1463 | decimal.js@^10.2.1: 1464 | version "10.3.1" 1465 | resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 1466 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 1467 | 1468 | dedent@^0.7.0: 1469 | version "0.7.0" 1470 | resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1471 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1472 | 1473 | deep-is@~0.1.3: 1474 | version "0.1.4" 1475 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1476 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1477 | 1478 | deepmerge@^4.2.2: 1479 | version "4.2.2" 1480 | resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1481 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1482 | 1483 | delayed-stream@~1.0.0: 1484 | version "1.0.0" 1485 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1486 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1487 | 1488 | depd@2.0.0: 1489 | version "2.0.0" 1490 | resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 1491 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== 1492 | 1493 | depd@~1.1.2: 1494 | version "1.1.2" 1495 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1496 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 1497 | 1498 | destroy@1.2.0: 1499 | version "1.2.0" 1500 | resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" 1501 | integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== 1502 | 1503 | destroy@~1.0.4: 1504 | version "1.0.4" 1505 | resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1506 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 1507 | 1508 | detect-newline@^3.0.0: 1509 | version "3.1.0" 1510 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1511 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1512 | 1513 | dezalgo@1.0.3: 1514 | version "1.0.3" 1515 | resolved "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 1516 | integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY= 1517 | dependencies: 1518 | asap "^2.0.0" 1519 | wrappy "1" 1520 | 1521 | diff-sequences@^27.5.1: 1522 | version "27.5.1" 1523 | resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" 1524 | integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== 1525 | 1526 | diff@^4.0.1: 1527 | version "4.0.2" 1528 | resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 1529 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 1530 | 1531 | domexception@^2.0.1: 1532 | version "2.0.1" 1533 | resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1534 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1535 | dependencies: 1536 | webidl-conversions "^5.0.0" 1537 | 1538 | ee-first@1.1.1: 1539 | version "1.1.1" 1540 | resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1541 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 1542 | 1543 | electron-to-chromium@^1.3.857: 1544 | version "1.3.861" 1545 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.861.tgz#981e37a79af7a7b29bbaeed36376f4795527de13" 1546 | integrity sha512-GZyflmpMnZRdZ1e2yAyvuFwz1MPSVQelwHX4TJZyXypB8NcxdPvPNwy5lOTxnlkrK13EiQzyTPugRSnj6cBgKg== 1547 | 1548 | electron-to-chromium@^1.4.84: 1549 | version "1.4.107" 1550 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.107.tgz#564257014ab14033b4403a309c813123c58a3fb9" 1551 | integrity sha512-Huen6taaVrUrSy8o7mGStByba8PfOWWluHNxSHGBrCgEdFVLtvdQDBr9LBCF9Uci8SYxh28QNNMO0oC17wbGAg== 1552 | 1553 | emittery@^0.8.1: 1554 | version "0.8.1" 1555 | resolved "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" 1556 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== 1557 | 1558 | emoji-regex@^8.0.0: 1559 | version "8.0.0" 1560 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1561 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1562 | 1563 | encodeurl@~1.0.2: 1564 | version "1.0.2" 1565 | resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1566 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 1567 | 1568 | error-ex@^1.3.1: 1569 | version "1.3.2" 1570 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1571 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1572 | dependencies: 1573 | is-arrayish "^0.2.1" 1574 | 1575 | escalade@^3.1.1: 1576 | version "3.1.1" 1577 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1578 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1579 | 1580 | escape-html@~1.0.3: 1581 | version "1.0.3" 1582 | resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1583 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 1584 | 1585 | escape-string-regexp@^1.0.5: 1586 | version "1.0.5" 1587 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1588 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1589 | 1590 | escape-string-regexp@^2.0.0: 1591 | version "2.0.0" 1592 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1593 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1594 | 1595 | escodegen@^2.0.0: 1596 | version "2.0.0" 1597 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1598 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1599 | dependencies: 1600 | esprima "^4.0.1" 1601 | estraverse "^5.2.0" 1602 | esutils "^2.0.2" 1603 | optionator "^0.8.1" 1604 | optionalDependencies: 1605 | source-map "~0.6.1" 1606 | 1607 | esm@^3.2.25: 1608 | version "3.2.25" 1609 | resolved "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" 1610 | integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== 1611 | 1612 | esprima@^4.0.0, esprima@^4.0.1: 1613 | version "4.0.1" 1614 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1615 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1616 | 1617 | estraverse@^5.2.0: 1618 | version "5.2.0" 1619 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1620 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1621 | 1622 | esutils@^2.0.2: 1623 | version "2.0.3" 1624 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1625 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1626 | 1627 | etag@~1.8.1: 1628 | version "1.8.1" 1629 | resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1630 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 1631 | 1632 | execa@^5.0.0: 1633 | version "5.1.1" 1634 | resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1635 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1636 | dependencies: 1637 | cross-spawn "^7.0.3" 1638 | get-stream "^6.0.0" 1639 | human-signals "^2.1.0" 1640 | is-stream "^2.0.0" 1641 | merge-stream "^2.0.0" 1642 | npm-run-path "^4.0.1" 1643 | onetime "^5.1.2" 1644 | signal-exit "^3.0.3" 1645 | strip-final-newline "^2.0.0" 1646 | 1647 | exit@^0.1.2: 1648 | version "0.1.2" 1649 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1650 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1651 | 1652 | expect@^27.5.1: 1653 | version "27.5.1" 1654 | resolved "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz#83ce59f1e5bdf5f9d2b94b61d2050db48f3fef74" 1655 | integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== 1656 | dependencies: 1657 | "@jest/types" "^27.5.1" 1658 | jest-get-type "^27.5.1" 1659 | jest-matcher-utils "^27.5.1" 1660 | jest-message-util "^27.5.1" 1661 | 1662 | express@^4.17.3: 1663 | version "4.17.3" 1664 | resolved "https://registry.npmjs.org/express/-/express-4.17.3.tgz#f6c7302194a4fb54271b73a1fe7a06478c8f85a1" 1665 | integrity sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg== 1666 | dependencies: 1667 | accepts "~1.3.8" 1668 | array-flatten "1.1.1" 1669 | body-parser "1.19.2" 1670 | content-disposition "0.5.4" 1671 | content-type "~1.0.4" 1672 | cookie "0.4.2" 1673 | cookie-signature "1.0.6" 1674 | debug "2.6.9" 1675 | depd "~1.1.2" 1676 | encodeurl "~1.0.2" 1677 | escape-html "~1.0.3" 1678 | etag "~1.8.1" 1679 | finalhandler "~1.1.2" 1680 | fresh "0.5.2" 1681 | merge-descriptors "1.0.1" 1682 | methods "~1.1.2" 1683 | on-finished "~2.3.0" 1684 | parseurl "~1.3.3" 1685 | path-to-regexp "0.1.7" 1686 | proxy-addr "~2.0.7" 1687 | qs "6.9.7" 1688 | range-parser "~1.2.1" 1689 | safe-buffer "5.2.1" 1690 | send "0.17.2" 1691 | serve-static "1.14.2" 1692 | setprototypeof "1.2.0" 1693 | statuses "~1.5.0" 1694 | type-is "~1.6.18" 1695 | utils-merge "1.0.1" 1696 | vary "~1.1.2" 1697 | 1698 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1699 | version "2.1.0" 1700 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1701 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1702 | 1703 | fast-levenshtein@~2.0.6: 1704 | version "2.0.6" 1705 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1706 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1707 | 1708 | fast-safe-stringify@^2.1.1: 1709 | version "2.1.1" 1710 | resolved "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" 1711 | integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== 1712 | 1713 | fb-watchman@^2.0.0: 1714 | version "2.0.1" 1715 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1716 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1717 | dependencies: 1718 | bser "2.1.1" 1719 | 1720 | fill-range@^7.0.1: 1721 | version "7.0.1" 1722 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1723 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1724 | dependencies: 1725 | to-regex-range "^5.0.1" 1726 | 1727 | finalhandler@~1.1.2: 1728 | version "1.1.2" 1729 | resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 1730 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 1731 | dependencies: 1732 | debug "2.6.9" 1733 | encodeurl "~1.0.2" 1734 | escape-html "~1.0.3" 1735 | on-finished "~2.3.0" 1736 | parseurl "~1.3.3" 1737 | statuses "~1.5.0" 1738 | unpipe "~1.0.0" 1739 | 1740 | find-up@^4.0.0, find-up@^4.1.0: 1741 | version "4.1.0" 1742 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1743 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1744 | dependencies: 1745 | locate-path "^5.0.0" 1746 | path-exists "^4.0.0" 1747 | 1748 | form-data@^3.0.0: 1749 | version "3.0.1" 1750 | resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1751 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1752 | dependencies: 1753 | asynckit "^0.4.0" 1754 | combined-stream "^1.0.8" 1755 | mime-types "^2.1.12" 1756 | 1757 | form-data@^4.0.0: 1758 | version "4.0.0" 1759 | resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" 1760 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== 1761 | dependencies: 1762 | asynckit "^0.4.0" 1763 | combined-stream "^1.0.8" 1764 | mime-types "^2.1.12" 1765 | 1766 | formidable@^2.0.1: 1767 | version "2.0.1" 1768 | resolved "https://registry.npmjs.org/formidable/-/formidable-2.0.1.tgz#4310bc7965d185536f9565184dee74fbb75557ff" 1769 | integrity sha512-rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ== 1770 | dependencies: 1771 | dezalgo "1.0.3" 1772 | hexoid "1.0.0" 1773 | once "1.4.0" 1774 | qs "6.9.3" 1775 | 1776 | forwarded@0.2.0: 1777 | version "0.2.0" 1778 | resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" 1779 | integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== 1780 | 1781 | fresh@0.5.2: 1782 | version "0.5.2" 1783 | resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1784 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 1785 | 1786 | fs.realpath@^1.0.0: 1787 | version "1.0.0" 1788 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1789 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1790 | 1791 | fsevents@^2.3.2: 1792 | version "2.3.2" 1793 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1794 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1795 | 1796 | function-bind@^1.1.1: 1797 | version "1.1.1" 1798 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1799 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1800 | 1801 | gensync@^1.0.0-beta.2: 1802 | version "1.0.0-beta.2" 1803 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1804 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1805 | 1806 | get-caller-file@^2.0.5: 1807 | version "2.0.5" 1808 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1809 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1810 | 1811 | get-intrinsic@^1.0.2: 1812 | version "1.1.1" 1813 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 1814 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1815 | dependencies: 1816 | function-bind "^1.1.1" 1817 | has "^1.0.3" 1818 | has-symbols "^1.0.1" 1819 | 1820 | get-package-type@^0.1.0: 1821 | version "0.1.0" 1822 | resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1823 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1824 | 1825 | get-stream@^6.0.0: 1826 | version "6.0.1" 1827 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1828 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1829 | 1830 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1831 | version "7.2.0" 1832 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1833 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1834 | dependencies: 1835 | fs.realpath "^1.0.0" 1836 | inflight "^1.0.4" 1837 | inherits "2" 1838 | minimatch "^3.0.4" 1839 | once "^1.3.0" 1840 | path-is-absolute "^1.0.0" 1841 | 1842 | globals@^11.1.0: 1843 | version "11.12.0" 1844 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1845 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1846 | 1847 | graceful-fs@^4.2.4: 1848 | version "4.2.8" 1849 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1850 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1851 | 1852 | graceful-fs@^4.2.9: 1853 | version "4.2.10" 1854 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1855 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1856 | 1857 | has-flag@^3.0.0: 1858 | version "3.0.0" 1859 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1860 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1861 | 1862 | has-flag@^4.0.0: 1863 | version "4.0.0" 1864 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1865 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1866 | 1867 | has-symbols@^1.0.1: 1868 | version "1.0.2" 1869 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 1870 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1871 | 1872 | has@^1.0.3: 1873 | version "1.0.3" 1874 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1875 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1876 | dependencies: 1877 | function-bind "^1.1.1" 1878 | 1879 | helmet@^4.6.0: 1880 | version "4.6.0" 1881 | resolved "https://registry.npmjs.org/helmet/-/helmet-4.6.0.tgz#579971196ba93c5978eb019e4e8ec0e50076b4df" 1882 | integrity sha512-HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg== 1883 | 1884 | hexoid@1.0.0: 1885 | version "1.0.0" 1886 | resolved "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz#ad10c6573fb907de23d9ec63a711267d9dc9bc18" 1887 | integrity sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g== 1888 | 1889 | html-encoding-sniffer@^2.0.1: 1890 | version "2.0.1" 1891 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1892 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1893 | dependencies: 1894 | whatwg-encoding "^1.0.5" 1895 | 1896 | html-escaper@^2.0.0: 1897 | version "2.0.2" 1898 | resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1899 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1900 | 1901 | http-errors@1.8.1: 1902 | version "1.8.1" 1903 | resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" 1904 | integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== 1905 | dependencies: 1906 | depd "~1.1.2" 1907 | inherits "2.0.4" 1908 | setprototypeof "1.2.0" 1909 | statuses ">= 1.5.0 < 2" 1910 | toidentifier "1.0.1" 1911 | 1912 | http-errors@2.0.0: 1913 | version "2.0.0" 1914 | resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" 1915 | integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== 1916 | dependencies: 1917 | depd "2.0.0" 1918 | inherits "2.0.4" 1919 | setprototypeof "1.2.0" 1920 | statuses "2.0.1" 1921 | toidentifier "1.0.1" 1922 | 1923 | http-proxy-agent@^4.0.1: 1924 | version "4.0.1" 1925 | resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1926 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1927 | dependencies: 1928 | "@tootallnate/once" "1" 1929 | agent-base "6" 1930 | debug "4" 1931 | 1932 | https-proxy-agent@^5.0.0: 1933 | version "5.0.0" 1934 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1935 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1936 | dependencies: 1937 | agent-base "6" 1938 | debug "4" 1939 | 1940 | human-signals@^2.1.0: 1941 | version "2.1.0" 1942 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1943 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1944 | 1945 | iconv-lite@0.4.24: 1946 | version "0.4.24" 1947 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1948 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1949 | dependencies: 1950 | safer-buffer ">= 2.1.2 < 3" 1951 | 1952 | import-local@^3.0.2: 1953 | version "3.0.3" 1954 | resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" 1955 | integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== 1956 | dependencies: 1957 | pkg-dir "^4.2.0" 1958 | resolve-cwd "^3.0.0" 1959 | 1960 | imurmurhash@^0.1.4: 1961 | version "0.1.4" 1962 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1963 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1964 | 1965 | inflight@^1.0.4: 1966 | version "1.0.6" 1967 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1968 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1969 | dependencies: 1970 | once "^1.3.0" 1971 | wrappy "1" 1972 | 1973 | inherits@2, inherits@2.0.4, inherits@^2.0.3: 1974 | version "2.0.4" 1975 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1976 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1977 | 1978 | ipaddr.js@1.9.1: 1979 | version "1.9.1" 1980 | resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 1981 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 1982 | 1983 | is-arrayish@^0.2.1: 1984 | version "0.2.1" 1985 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1986 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1987 | 1988 | is-ci@^3.0.0: 1989 | version "3.0.0" 1990 | resolved "https://registry.npmjs.org/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994" 1991 | integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ== 1992 | dependencies: 1993 | ci-info "^3.1.1" 1994 | 1995 | is-core-module@^2.2.0: 1996 | version "2.7.0" 1997 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz#3c0ef7d31b4acfc574f80c58409d568a836848e3" 1998 | integrity sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ== 1999 | dependencies: 2000 | has "^1.0.3" 2001 | 2002 | is-fullwidth-code-point@^3.0.0: 2003 | version "3.0.0" 2004 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 2005 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 2006 | 2007 | is-generator-fn@^2.0.0: 2008 | version "2.1.0" 2009 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 2010 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 2011 | 2012 | is-number@^7.0.0: 2013 | version "7.0.0" 2014 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 2015 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2016 | 2017 | is-potential-custom-element-name@^1.0.1: 2018 | version "1.0.1" 2019 | resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 2020 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 2021 | 2022 | is-stream@^2.0.0: 2023 | version "2.0.1" 2024 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 2025 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 2026 | 2027 | is-typedarray@^1.0.0: 2028 | version "1.0.0" 2029 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2030 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 2031 | 2032 | isexe@^2.0.0: 2033 | version "2.0.0" 2034 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2035 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2036 | 2037 | istanbul-lib-coverage@^3.0.0: 2038 | version "3.0.0" 2039 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 2040 | integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== 2041 | 2042 | istanbul-lib-coverage@^3.2.0: 2043 | version "3.2.0" 2044 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 2045 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 2046 | 2047 | istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: 2048 | version "5.1.0" 2049 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a" 2050 | integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== 2051 | dependencies: 2052 | "@babel/core" "^7.12.3" 2053 | "@babel/parser" "^7.14.7" 2054 | "@istanbuljs/schema" "^0.1.2" 2055 | istanbul-lib-coverage "^3.2.0" 2056 | semver "^6.3.0" 2057 | 2058 | istanbul-lib-report@^3.0.0: 2059 | version "3.0.0" 2060 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 2061 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 2062 | dependencies: 2063 | istanbul-lib-coverage "^3.0.0" 2064 | make-dir "^3.0.0" 2065 | supports-color "^7.1.0" 2066 | 2067 | istanbul-lib-source-maps@^4.0.0: 2068 | version "4.0.0" 2069 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" 2070 | integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== 2071 | dependencies: 2072 | debug "^4.1.1" 2073 | istanbul-lib-coverage "^3.0.0" 2074 | source-map "^0.6.1" 2075 | 2076 | istanbul-reports@^3.1.3: 2077 | version "3.1.4" 2078 | resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" 2079 | integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== 2080 | dependencies: 2081 | html-escaper "^2.0.0" 2082 | istanbul-lib-report "^3.0.0" 2083 | 2084 | jest-changed-files@^27.5.1: 2085 | version "27.5.1" 2086 | resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz#a348aed00ec9bf671cc58a66fcbe7c3dfd6a68f5" 2087 | integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== 2088 | dependencies: 2089 | "@jest/types" "^27.5.1" 2090 | execa "^5.0.0" 2091 | throat "^6.0.1" 2092 | 2093 | jest-circus@^27.5.1: 2094 | version "27.5.1" 2095 | resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz#37a5a4459b7bf4406e53d637b49d22c65d125ecc" 2096 | integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== 2097 | dependencies: 2098 | "@jest/environment" "^27.5.1" 2099 | "@jest/test-result" "^27.5.1" 2100 | "@jest/types" "^27.5.1" 2101 | "@types/node" "*" 2102 | chalk "^4.0.0" 2103 | co "^4.6.0" 2104 | dedent "^0.7.0" 2105 | expect "^27.5.1" 2106 | is-generator-fn "^2.0.0" 2107 | jest-each "^27.5.1" 2108 | jest-matcher-utils "^27.5.1" 2109 | jest-message-util "^27.5.1" 2110 | jest-runtime "^27.5.1" 2111 | jest-snapshot "^27.5.1" 2112 | jest-util "^27.5.1" 2113 | pretty-format "^27.5.1" 2114 | slash "^3.0.0" 2115 | stack-utils "^2.0.3" 2116 | throat "^6.0.1" 2117 | 2118 | jest-cli@^27.5.1: 2119 | version "27.5.1" 2120 | resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz#278794a6e6458ea8029547e6c6cbf673bd30b145" 2121 | integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== 2122 | dependencies: 2123 | "@jest/core" "^27.5.1" 2124 | "@jest/test-result" "^27.5.1" 2125 | "@jest/types" "^27.5.1" 2126 | chalk "^4.0.0" 2127 | exit "^0.1.2" 2128 | graceful-fs "^4.2.9" 2129 | import-local "^3.0.2" 2130 | jest-config "^27.5.1" 2131 | jest-util "^27.5.1" 2132 | jest-validate "^27.5.1" 2133 | prompts "^2.0.1" 2134 | yargs "^16.2.0" 2135 | 2136 | jest-config@^27.5.1: 2137 | version "27.5.1" 2138 | resolved "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz#5c387de33dca3f99ad6357ddeccd91bf3a0e4a41" 2139 | integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== 2140 | dependencies: 2141 | "@babel/core" "^7.8.0" 2142 | "@jest/test-sequencer" "^27.5.1" 2143 | "@jest/types" "^27.5.1" 2144 | babel-jest "^27.5.1" 2145 | chalk "^4.0.0" 2146 | ci-info "^3.2.0" 2147 | deepmerge "^4.2.2" 2148 | glob "^7.1.1" 2149 | graceful-fs "^4.2.9" 2150 | jest-circus "^27.5.1" 2151 | jest-environment-jsdom "^27.5.1" 2152 | jest-environment-node "^27.5.1" 2153 | jest-get-type "^27.5.1" 2154 | jest-jasmine2 "^27.5.1" 2155 | jest-regex-util "^27.5.1" 2156 | jest-resolve "^27.5.1" 2157 | jest-runner "^27.5.1" 2158 | jest-util "^27.5.1" 2159 | jest-validate "^27.5.1" 2160 | micromatch "^4.0.4" 2161 | parse-json "^5.2.0" 2162 | pretty-format "^27.5.1" 2163 | slash "^3.0.0" 2164 | strip-json-comments "^3.1.1" 2165 | 2166 | jest-diff@^27.5.1: 2167 | version "27.5.1" 2168 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" 2169 | integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== 2170 | dependencies: 2171 | chalk "^4.0.0" 2172 | diff-sequences "^27.5.1" 2173 | jest-get-type "^27.5.1" 2174 | pretty-format "^27.5.1" 2175 | 2176 | jest-docblock@^27.5.1: 2177 | version "27.5.1" 2178 | resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz#14092f364a42c6108d42c33c8cf30e058e25f6c0" 2179 | integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== 2180 | dependencies: 2181 | detect-newline "^3.0.0" 2182 | 2183 | jest-each@^27.5.1: 2184 | version "27.5.1" 2185 | resolved "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz#5bc87016f45ed9507fed6e4702a5b468a5b2c44e" 2186 | integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== 2187 | dependencies: 2188 | "@jest/types" "^27.5.1" 2189 | chalk "^4.0.0" 2190 | jest-get-type "^27.5.1" 2191 | jest-util "^27.5.1" 2192 | pretty-format "^27.5.1" 2193 | 2194 | jest-environment-jsdom@^27.5.1: 2195 | version "27.5.1" 2196 | resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz#ea9ccd1fc610209655a77898f86b2b559516a546" 2197 | integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== 2198 | dependencies: 2199 | "@jest/environment" "^27.5.1" 2200 | "@jest/fake-timers" "^27.5.1" 2201 | "@jest/types" "^27.5.1" 2202 | "@types/node" "*" 2203 | jest-mock "^27.5.1" 2204 | jest-util "^27.5.1" 2205 | jsdom "^16.6.0" 2206 | 2207 | jest-environment-node@^27.5.1: 2208 | version "27.5.1" 2209 | resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz#dedc2cfe52fab6b8f5714b4808aefa85357a365e" 2210 | integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== 2211 | dependencies: 2212 | "@jest/environment" "^27.5.1" 2213 | "@jest/fake-timers" "^27.5.1" 2214 | "@jest/types" "^27.5.1" 2215 | "@types/node" "*" 2216 | jest-mock "^27.5.1" 2217 | jest-util "^27.5.1" 2218 | 2219 | jest-get-type@^27.5.1: 2220 | version "27.5.1" 2221 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" 2222 | integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== 2223 | 2224 | jest-haste-map@^27.5.1: 2225 | version "27.5.1" 2226 | resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f" 2227 | integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== 2228 | dependencies: 2229 | "@jest/types" "^27.5.1" 2230 | "@types/graceful-fs" "^4.1.2" 2231 | "@types/node" "*" 2232 | anymatch "^3.0.3" 2233 | fb-watchman "^2.0.0" 2234 | graceful-fs "^4.2.9" 2235 | jest-regex-util "^27.5.1" 2236 | jest-serializer "^27.5.1" 2237 | jest-util "^27.5.1" 2238 | jest-worker "^27.5.1" 2239 | micromatch "^4.0.4" 2240 | walker "^1.0.7" 2241 | optionalDependencies: 2242 | fsevents "^2.3.2" 2243 | 2244 | jest-jasmine2@^27.5.1: 2245 | version "27.5.1" 2246 | resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz#a037b0034ef49a9f3d71c4375a796f3b230d1ac4" 2247 | integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== 2248 | dependencies: 2249 | "@jest/environment" "^27.5.1" 2250 | "@jest/source-map" "^27.5.1" 2251 | "@jest/test-result" "^27.5.1" 2252 | "@jest/types" "^27.5.1" 2253 | "@types/node" "*" 2254 | chalk "^4.0.0" 2255 | co "^4.6.0" 2256 | expect "^27.5.1" 2257 | is-generator-fn "^2.0.0" 2258 | jest-each "^27.5.1" 2259 | jest-matcher-utils "^27.5.1" 2260 | jest-message-util "^27.5.1" 2261 | jest-runtime "^27.5.1" 2262 | jest-snapshot "^27.5.1" 2263 | jest-util "^27.5.1" 2264 | pretty-format "^27.5.1" 2265 | throat "^6.0.1" 2266 | 2267 | jest-leak-detector@^27.5.1: 2268 | version "27.5.1" 2269 | resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz#6ec9d54c3579dd6e3e66d70e3498adf80fde3fb8" 2270 | integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== 2271 | dependencies: 2272 | jest-get-type "^27.5.1" 2273 | pretty-format "^27.5.1" 2274 | 2275 | jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.5.1: 2276 | version "27.5.1" 2277 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" 2278 | integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== 2279 | dependencies: 2280 | chalk "^4.0.0" 2281 | jest-diff "^27.5.1" 2282 | jest-get-type "^27.5.1" 2283 | pretty-format "^27.5.1" 2284 | 2285 | jest-message-util@^27.5.1: 2286 | version "27.5.1" 2287 | resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf" 2288 | integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== 2289 | dependencies: 2290 | "@babel/code-frame" "^7.12.13" 2291 | "@jest/types" "^27.5.1" 2292 | "@types/stack-utils" "^2.0.0" 2293 | chalk "^4.0.0" 2294 | graceful-fs "^4.2.9" 2295 | micromatch "^4.0.4" 2296 | pretty-format "^27.5.1" 2297 | slash "^3.0.0" 2298 | stack-utils "^2.0.3" 2299 | 2300 | jest-mock@^27.5.1: 2301 | version "27.5.1" 2302 | resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" 2303 | integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== 2304 | dependencies: 2305 | "@jest/types" "^27.5.1" 2306 | "@types/node" "*" 2307 | 2308 | jest-pnp-resolver@^1.2.2: 2309 | version "1.2.2" 2310 | resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 2311 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 2312 | 2313 | jest-regex-util@^27.5.1: 2314 | version "27.5.1" 2315 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95" 2316 | integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== 2317 | 2318 | jest-resolve-dependencies@^27.5.1: 2319 | version "27.5.1" 2320 | resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz#d811ecc8305e731cc86dd79741ee98fed06f1da8" 2321 | integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== 2322 | dependencies: 2323 | "@jest/types" "^27.5.1" 2324 | jest-regex-util "^27.5.1" 2325 | jest-snapshot "^27.5.1" 2326 | 2327 | jest-resolve@^27.5.1: 2328 | version "27.5.1" 2329 | resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz#a2f1c5a0796ec18fe9eb1536ac3814c23617b384" 2330 | integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== 2331 | dependencies: 2332 | "@jest/types" "^27.5.1" 2333 | chalk "^4.0.0" 2334 | graceful-fs "^4.2.9" 2335 | jest-haste-map "^27.5.1" 2336 | jest-pnp-resolver "^1.2.2" 2337 | jest-util "^27.5.1" 2338 | jest-validate "^27.5.1" 2339 | resolve "^1.20.0" 2340 | resolve.exports "^1.1.0" 2341 | slash "^3.0.0" 2342 | 2343 | jest-runner@^27.5.1: 2344 | version "27.5.1" 2345 | resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz#071b27c1fa30d90540805c5645a0ec167c7b62e5" 2346 | integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== 2347 | dependencies: 2348 | "@jest/console" "^27.5.1" 2349 | "@jest/environment" "^27.5.1" 2350 | "@jest/test-result" "^27.5.1" 2351 | "@jest/transform" "^27.5.1" 2352 | "@jest/types" "^27.5.1" 2353 | "@types/node" "*" 2354 | chalk "^4.0.0" 2355 | emittery "^0.8.1" 2356 | graceful-fs "^4.2.9" 2357 | jest-docblock "^27.5.1" 2358 | jest-environment-jsdom "^27.5.1" 2359 | jest-environment-node "^27.5.1" 2360 | jest-haste-map "^27.5.1" 2361 | jest-leak-detector "^27.5.1" 2362 | jest-message-util "^27.5.1" 2363 | jest-resolve "^27.5.1" 2364 | jest-runtime "^27.5.1" 2365 | jest-util "^27.5.1" 2366 | jest-worker "^27.5.1" 2367 | source-map-support "^0.5.6" 2368 | throat "^6.0.1" 2369 | 2370 | jest-runtime@^27.5.1: 2371 | version "27.5.1" 2372 | resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz#4896003d7a334f7e8e4a53ba93fb9bcd3db0a1af" 2373 | integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== 2374 | dependencies: 2375 | "@jest/environment" "^27.5.1" 2376 | "@jest/fake-timers" "^27.5.1" 2377 | "@jest/globals" "^27.5.1" 2378 | "@jest/source-map" "^27.5.1" 2379 | "@jest/test-result" "^27.5.1" 2380 | "@jest/transform" "^27.5.1" 2381 | "@jest/types" "^27.5.1" 2382 | chalk "^4.0.0" 2383 | cjs-module-lexer "^1.0.0" 2384 | collect-v8-coverage "^1.0.0" 2385 | execa "^5.0.0" 2386 | glob "^7.1.3" 2387 | graceful-fs "^4.2.9" 2388 | jest-haste-map "^27.5.1" 2389 | jest-message-util "^27.5.1" 2390 | jest-mock "^27.5.1" 2391 | jest-regex-util "^27.5.1" 2392 | jest-resolve "^27.5.1" 2393 | jest-snapshot "^27.5.1" 2394 | jest-util "^27.5.1" 2395 | slash "^3.0.0" 2396 | strip-bom "^4.0.0" 2397 | 2398 | jest-serializer@^27.5.1: 2399 | version "27.5.1" 2400 | resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64" 2401 | integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== 2402 | dependencies: 2403 | "@types/node" "*" 2404 | graceful-fs "^4.2.9" 2405 | 2406 | jest-snapshot@^27.5.1: 2407 | version "27.5.1" 2408 | resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz#b668d50d23d38054a51b42c4039cab59ae6eb6a1" 2409 | integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== 2410 | dependencies: 2411 | "@babel/core" "^7.7.2" 2412 | "@babel/generator" "^7.7.2" 2413 | "@babel/plugin-syntax-typescript" "^7.7.2" 2414 | "@babel/traverse" "^7.7.2" 2415 | "@babel/types" "^7.0.0" 2416 | "@jest/transform" "^27.5.1" 2417 | "@jest/types" "^27.5.1" 2418 | "@types/babel__traverse" "^7.0.4" 2419 | "@types/prettier" "^2.1.5" 2420 | babel-preset-current-node-syntax "^1.0.0" 2421 | chalk "^4.0.0" 2422 | expect "^27.5.1" 2423 | graceful-fs "^4.2.9" 2424 | jest-diff "^27.5.1" 2425 | jest-get-type "^27.5.1" 2426 | jest-haste-map "^27.5.1" 2427 | jest-matcher-utils "^27.5.1" 2428 | jest-message-util "^27.5.1" 2429 | jest-util "^27.5.1" 2430 | natural-compare "^1.4.0" 2431 | pretty-format "^27.5.1" 2432 | semver "^7.3.2" 2433 | 2434 | jest-util@^27.0.0: 2435 | version "27.2.4" 2436 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.2.4.tgz#3d7ce081b2e7f4cfe0156452ac01f3cb456cc656" 2437 | integrity sha512-mW++4u+fSvAt3YBWm5IpbmRAceUqa2B++JlUZTiuEt2AmNYn0Yw5oay4cP17TGsMINRNPSGiJ2zNnX60g+VbFg== 2438 | dependencies: 2439 | "@jest/types" "^27.2.4" 2440 | "@types/node" "*" 2441 | chalk "^4.0.0" 2442 | graceful-fs "^4.2.4" 2443 | is-ci "^3.0.0" 2444 | picomatch "^2.2.3" 2445 | 2446 | jest-util@^27.5.1: 2447 | version "27.5.1" 2448 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9" 2449 | integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== 2450 | dependencies: 2451 | "@jest/types" "^27.5.1" 2452 | "@types/node" "*" 2453 | chalk "^4.0.0" 2454 | ci-info "^3.2.0" 2455 | graceful-fs "^4.2.9" 2456 | picomatch "^2.2.3" 2457 | 2458 | jest-validate@^27.5.1: 2459 | version "27.5.1" 2460 | resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz#9197d54dc0bdb52260b8db40b46ae668e04df067" 2461 | integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== 2462 | dependencies: 2463 | "@jest/types" "^27.5.1" 2464 | camelcase "^6.2.0" 2465 | chalk "^4.0.0" 2466 | jest-get-type "^27.5.1" 2467 | leven "^3.1.0" 2468 | pretty-format "^27.5.1" 2469 | 2470 | jest-watcher@^27.5.1: 2471 | version "27.5.1" 2472 | resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2" 2473 | integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== 2474 | dependencies: 2475 | "@jest/test-result" "^27.5.1" 2476 | "@jest/types" "^27.5.1" 2477 | "@types/node" "*" 2478 | ansi-escapes "^4.2.1" 2479 | chalk "^4.0.0" 2480 | jest-util "^27.5.1" 2481 | string-length "^4.0.1" 2482 | 2483 | jest-worker@^27.5.1: 2484 | version "27.5.1" 2485 | resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" 2486 | integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== 2487 | dependencies: 2488 | "@types/node" "*" 2489 | merge-stream "^2.0.0" 2490 | supports-color "^8.0.0" 2491 | 2492 | jest@^27.5.1: 2493 | version "27.5.1" 2494 | resolved "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz#dadf33ba70a779be7a6fc33015843b51494f63fc" 2495 | integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ== 2496 | dependencies: 2497 | "@jest/core" "^27.5.1" 2498 | import-local "^3.0.2" 2499 | jest-cli "^27.5.1" 2500 | 2501 | js-tokens@^4.0.0: 2502 | version "4.0.0" 2503 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2504 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2505 | 2506 | js-yaml@^3.13.1: 2507 | version "3.14.1" 2508 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 2509 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2510 | dependencies: 2511 | argparse "^1.0.7" 2512 | esprima "^4.0.0" 2513 | 2514 | jsdom@^16.6.0: 2515 | version "16.7.0" 2516 | resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 2517 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 2518 | dependencies: 2519 | abab "^2.0.5" 2520 | acorn "^8.2.4" 2521 | acorn-globals "^6.0.0" 2522 | cssom "^0.4.4" 2523 | cssstyle "^2.3.0" 2524 | data-urls "^2.0.0" 2525 | decimal.js "^10.2.1" 2526 | domexception "^2.0.1" 2527 | escodegen "^2.0.0" 2528 | form-data "^3.0.0" 2529 | html-encoding-sniffer "^2.0.1" 2530 | http-proxy-agent "^4.0.1" 2531 | https-proxy-agent "^5.0.0" 2532 | is-potential-custom-element-name "^1.0.1" 2533 | nwsapi "^2.2.0" 2534 | parse5 "6.0.1" 2535 | saxes "^5.0.1" 2536 | symbol-tree "^3.2.4" 2537 | tough-cookie "^4.0.0" 2538 | w3c-hr-time "^1.0.2" 2539 | w3c-xmlserializer "^2.0.0" 2540 | webidl-conversions "^6.1.0" 2541 | whatwg-encoding "^1.0.5" 2542 | whatwg-mimetype "^2.3.0" 2543 | whatwg-url "^8.5.0" 2544 | ws "^7.4.6" 2545 | xml-name-validator "^3.0.0" 2546 | 2547 | jsesc@^2.5.1: 2548 | version "2.5.2" 2549 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2550 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2551 | 2552 | json-parse-even-better-errors@^2.3.0: 2553 | version "2.3.1" 2554 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 2555 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2556 | 2557 | json5@2.x, json5@^2.1.2: 2558 | version "2.2.0" 2559 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 2560 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 2561 | dependencies: 2562 | minimist "^1.2.5" 2563 | 2564 | json5@^2.2.1: 2565 | version "2.2.1" 2566 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" 2567 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== 2568 | 2569 | kleur@^3.0.3: 2570 | version "3.0.3" 2571 | resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2572 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2573 | 2574 | leven@^3.1.0: 2575 | version "3.1.0" 2576 | resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2577 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2578 | 2579 | levn@~0.3.0: 2580 | version "0.3.0" 2581 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2582 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2583 | dependencies: 2584 | prelude-ls "~1.1.2" 2585 | type-check "~0.3.2" 2586 | 2587 | lines-and-columns@^1.1.6: 2588 | version "1.2.4" 2589 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 2590 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2591 | 2592 | locate-path@^5.0.0: 2593 | version "5.0.0" 2594 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2595 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2596 | dependencies: 2597 | p-locate "^4.1.0" 2598 | 2599 | lodash.memoize@4.x: 2600 | version "4.1.2" 2601 | resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2602 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 2603 | 2604 | lodash@^4.7.0: 2605 | version "4.17.21" 2606 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2607 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2608 | 2609 | lru-cache@^6.0.0: 2610 | version "6.0.0" 2611 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2612 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2613 | dependencies: 2614 | yallist "^4.0.0" 2615 | 2616 | lru-cache@^7.4.0: 2617 | version "7.8.1" 2618 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.8.1.tgz#68ee3f4807a57d2ba185b7fd90827d5c21ce82bb" 2619 | integrity sha512-E1v547OCgJvbvevfjgK9sNKIVXO96NnsTsFPBlg4ZxjhsJSODoH9lk8Bm0OxvHNm6Vm5Yqkl/1fErDxhYL8Skg== 2620 | 2621 | make-dir@^3.0.0: 2622 | version "3.1.0" 2623 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2624 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2625 | dependencies: 2626 | semver "^6.0.0" 2627 | 2628 | make-error@1.x, make-error@^1.1.1: 2629 | version "1.3.6" 2630 | resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 2631 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 2632 | 2633 | makeerror@1.0.x: 2634 | version "1.0.11" 2635 | resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2636 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= 2637 | dependencies: 2638 | tmpl "1.0.x" 2639 | 2640 | mathjax-full@^3.2.0: 2641 | version "3.2.0" 2642 | resolved "https://registry.npmjs.org/mathjax-full/-/mathjax-full-3.2.0.tgz#e53269842a943d4df10502937518991268996c5c" 2643 | integrity sha512-D2EBNvUG+mJyhn+M1C858k0f2Fc4KxXvbEX2WCMXroV10212JwfYqaBJ336ECBSz5X9L5LRoamxb7AJtg3KaJA== 2644 | dependencies: 2645 | esm "^3.2.25" 2646 | mhchemparser "^4.1.0" 2647 | mj-context-menu "^0.6.1" 2648 | speech-rule-engine "^3.3.3" 2649 | 2650 | media-typer@0.3.0: 2651 | version "0.3.0" 2652 | resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2653 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 2654 | 2655 | merge-descriptors@1.0.1: 2656 | version "1.0.1" 2657 | resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2658 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 2659 | 2660 | merge-stream@^2.0.0: 2661 | version "2.0.0" 2662 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2663 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2664 | 2665 | methods@^1.1.2, methods@~1.1.2: 2666 | version "1.1.2" 2667 | resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2668 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 2669 | 2670 | mhchemparser@^4.1.0: 2671 | version "4.1.1" 2672 | resolved "https://registry.npmjs.org/mhchemparser/-/mhchemparser-4.1.1.tgz#a2142fdab37a02ec8d1b48a445059287790becd5" 2673 | integrity sha512-R75CUN6O6e1t8bgailrF1qPq+HhVeFTM3XQ0uzI+mXTybmphy3b6h4NbLOYhemViQ3lUs+6CKRkC3Ws1TlYREA== 2674 | 2675 | micromatch@^4.0.4: 2676 | version "4.0.4" 2677 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 2678 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 2679 | dependencies: 2680 | braces "^3.0.1" 2681 | picomatch "^2.2.3" 2682 | 2683 | mime-db@1.50.0: 2684 | version "1.50.0" 2685 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f" 2686 | integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A== 2687 | 2688 | mime-db@1.52.0: 2689 | version "1.52.0" 2690 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 2691 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 2692 | 2693 | mime-types@^2.1.12, mime-types@~2.1.24: 2694 | version "2.1.33" 2695 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb" 2696 | integrity sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g== 2697 | dependencies: 2698 | mime-db "1.50.0" 2699 | 2700 | mime-types@~2.1.34: 2701 | version "2.1.35" 2702 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 2703 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 2704 | dependencies: 2705 | mime-db "1.52.0" 2706 | 2707 | mime@1.6.0: 2708 | version "1.6.0" 2709 | resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2710 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 2711 | 2712 | mime@^2.5.0: 2713 | version "2.6.0" 2714 | resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" 2715 | integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== 2716 | 2717 | mimic-fn@^2.1.0: 2718 | version "2.1.0" 2719 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2720 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2721 | 2722 | minimatch@^3.0.4: 2723 | version "3.0.4" 2724 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2725 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2726 | dependencies: 2727 | brace-expansion "^1.1.7" 2728 | 2729 | minimist@^1.2.5: 2730 | version "1.2.5" 2731 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2732 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2733 | 2734 | mj-context-menu@^0.6.1: 2735 | version "0.6.1" 2736 | resolved "https://registry.npmjs.org/mj-context-menu/-/mj-context-menu-0.6.1.tgz#a043c5282bf7e1cf3821de07b13525ca6f85aa69" 2737 | integrity sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA== 2738 | 2739 | ms@2.0.0: 2740 | version "2.0.0" 2741 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2742 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2743 | 2744 | ms@2.1.2: 2745 | version "2.1.2" 2746 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2747 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2748 | 2749 | ms@2.1.3: 2750 | version "2.1.3" 2751 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 2752 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 2753 | 2754 | natural-compare@^1.4.0: 2755 | version "1.4.0" 2756 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2757 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2758 | 2759 | negotiator@0.6.3: 2760 | version "0.6.3" 2761 | resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" 2762 | integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== 2763 | 2764 | node-int64@^0.4.0: 2765 | version "0.4.0" 2766 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2767 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2768 | 2769 | node-releases@^1.1.77: 2770 | version "1.1.77" 2771 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz#50b0cfede855dd374e7585bf228ff34e57c1c32e" 2772 | integrity sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ== 2773 | 2774 | node-releases@^2.0.2: 2775 | version "2.0.3" 2776 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.3.tgz#225ee7488e4a5e636da8da52854844f9d716ca96" 2777 | integrity sha512-maHFz6OLqYxz+VQyCAtA3PTX4UP/53pa05fyDNc9CwjvJ0yEh6+xBwKsgCxMNhS8taUKBFYxfuiaD9U/55iFaw== 2778 | 2779 | normalize-path@^3.0.0: 2780 | version "3.0.0" 2781 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2782 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2783 | 2784 | npm-run-path@^4.0.1: 2785 | version "4.0.1" 2786 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2787 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2788 | dependencies: 2789 | path-key "^3.0.0" 2790 | 2791 | nwsapi@^2.2.0: 2792 | version "2.2.0" 2793 | resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2794 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2795 | 2796 | object-inspect@^1.9.0: 2797 | version "1.11.0" 2798 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" 2799 | integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== 2800 | 2801 | on-finished@2.4.1: 2802 | version "2.4.1" 2803 | resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" 2804 | integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== 2805 | dependencies: 2806 | ee-first "1.1.1" 2807 | 2808 | on-finished@~2.3.0: 2809 | version "2.3.0" 2810 | resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2811 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 2812 | dependencies: 2813 | ee-first "1.1.1" 2814 | 2815 | once@1.4.0, once@^1.3.0: 2816 | version "1.4.0" 2817 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2818 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2819 | dependencies: 2820 | wrappy "1" 2821 | 2822 | onetime@^5.1.2: 2823 | version "5.1.2" 2824 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2825 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2826 | dependencies: 2827 | mimic-fn "^2.1.0" 2828 | 2829 | optionator@^0.8.1: 2830 | version "0.8.3" 2831 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2832 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2833 | dependencies: 2834 | deep-is "~0.1.3" 2835 | fast-levenshtein "~2.0.6" 2836 | levn "~0.3.0" 2837 | prelude-ls "~1.1.2" 2838 | type-check "~0.3.2" 2839 | word-wrap "~1.2.3" 2840 | 2841 | p-limit@^2.2.0: 2842 | version "2.3.0" 2843 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2844 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2845 | dependencies: 2846 | p-try "^2.0.0" 2847 | 2848 | p-locate@^4.1.0: 2849 | version "4.1.0" 2850 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2851 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2852 | dependencies: 2853 | p-limit "^2.2.0" 2854 | 2855 | p-try@^2.0.0: 2856 | version "2.2.0" 2857 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2858 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2859 | 2860 | parse-json@^5.2.0: 2861 | version "5.2.0" 2862 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 2863 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2864 | dependencies: 2865 | "@babel/code-frame" "^7.0.0" 2866 | error-ex "^1.3.1" 2867 | json-parse-even-better-errors "^2.3.0" 2868 | lines-and-columns "^1.1.6" 2869 | 2870 | parse5@6.0.1: 2871 | version "6.0.1" 2872 | resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2873 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2874 | 2875 | parseurl@~1.3.3: 2876 | version "1.3.3" 2877 | resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 2878 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 2879 | 2880 | path-exists@^4.0.0: 2881 | version "4.0.0" 2882 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2883 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2884 | 2885 | path-is-absolute@^1.0.0: 2886 | version "1.0.1" 2887 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2888 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2889 | 2890 | path-key@^3.0.0, path-key@^3.1.0: 2891 | version "3.1.1" 2892 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2893 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2894 | 2895 | path-parse@^1.0.6: 2896 | version "1.0.7" 2897 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2898 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2899 | 2900 | path-to-regexp@0.1.7: 2901 | version "0.1.7" 2902 | resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2903 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 2904 | 2905 | picocolors@^0.2.1: 2906 | version "0.2.1" 2907 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" 2908 | integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== 2909 | 2910 | picocolors@^1.0.0: 2911 | version "1.0.0" 2912 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2913 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2914 | 2915 | picomatch@^2.0.4, picomatch@^2.2.3: 2916 | version "2.3.0" 2917 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 2918 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2919 | 2920 | pirates@^4.0.4: 2921 | version "4.0.5" 2922 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" 2923 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 2924 | 2925 | pkg-dir@^4.2.0: 2926 | version "4.2.0" 2927 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2928 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2929 | dependencies: 2930 | find-up "^4.0.0" 2931 | 2932 | prelude-ls@~1.1.2: 2933 | version "1.1.2" 2934 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2935 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2936 | 2937 | pretty-format@^27.0.0: 2938 | version "27.2.4" 2939 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.2.4.tgz#08ea39c5eab41b082852d7093059a091f6ddc748" 2940 | integrity sha512-NUjw22WJHldzxyps2YjLZkUj6q1HvjqFezkB9Y2cklN8NtVZN/kZEXGZdFw4uny3oENzV5EEMESrkI0YDUH8vg== 2941 | dependencies: 2942 | "@jest/types" "^27.2.4" 2943 | ansi-regex "^5.0.1" 2944 | ansi-styles "^5.0.0" 2945 | react-is "^17.0.1" 2946 | 2947 | pretty-format@^27.5.1: 2948 | version "27.5.1" 2949 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" 2950 | integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== 2951 | dependencies: 2952 | ansi-regex "^5.0.1" 2953 | ansi-styles "^5.0.0" 2954 | react-is "^17.0.1" 2955 | 2956 | prompts@^2.0.1: 2957 | version "2.4.1" 2958 | resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" 2959 | integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ== 2960 | dependencies: 2961 | kleur "^3.0.3" 2962 | sisteransi "^1.0.5" 2963 | 2964 | proxy-addr@~2.0.7: 2965 | version "2.0.7" 2966 | resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" 2967 | integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== 2968 | dependencies: 2969 | forwarded "0.2.0" 2970 | ipaddr.js "1.9.1" 2971 | 2972 | psl@^1.1.33: 2973 | version "1.8.0" 2974 | resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2975 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2976 | 2977 | punycode@^2.1.1: 2978 | version "2.1.1" 2979 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2980 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2981 | 2982 | qs@6.10.3, qs@^6.10.1: 2983 | version "6.10.3" 2984 | resolved "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" 2985 | integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== 2986 | dependencies: 2987 | side-channel "^1.0.4" 2988 | 2989 | qs@6.9.3: 2990 | version "6.9.3" 2991 | resolved "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz#bfadcd296c2d549f1dffa560619132c977f5008e" 2992 | integrity sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw== 2993 | 2994 | qs@6.9.7: 2995 | version "6.9.7" 2996 | resolved "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz#4610846871485e1e048f44ae3b94033f0e675afe" 2997 | integrity sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw== 2998 | 2999 | range-parser@~1.2.1: 3000 | version "1.2.1" 3001 | resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 3002 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 3003 | 3004 | raw-body@2.4.3: 3005 | version "2.4.3" 3006 | resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz#8f80305d11c2a0a545c2d9d89d7a0286fcead43c" 3007 | integrity sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g== 3008 | dependencies: 3009 | bytes "3.1.2" 3010 | http-errors "1.8.1" 3011 | iconv-lite "0.4.24" 3012 | unpipe "1.0.0" 3013 | 3014 | raw-body@2.5.1: 3015 | version "2.5.1" 3016 | resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" 3017 | integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== 3018 | dependencies: 3019 | bytes "3.1.2" 3020 | http-errors "2.0.0" 3021 | iconv-lite "0.4.24" 3022 | unpipe "1.0.0" 3023 | 3024 | react-is@^17.0.1: 3025 | version "17.0.2" 3026 | resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 3027 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 3028 | 3029 | readable-stream@^3.6.0: 3030 | version "3.6.0" 3031 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 3032 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 3033 | dependencies: 3034 | inherits "^2.0.3" 3035 | string_decoder "^1.1.1" 3036 | util-deprecate "^1.0.1" 3037 | 3038 | require-directory@^2.1.1: 3039 | version "2.1.1" 3040 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3041 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 3042 | 3043 | resolve-cwd@^3.0.0: 3044 | version "3.0.0" 3045 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 3046 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 3047 | dependencies: 3048 | resolve-from "^5.0.0" 3049 | 3050 | resolve-from@^5.0.0: 3051 | version "5.0.0" 3052 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 3053 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 3054 | 3055 | resolve.exports@^1.1.0: 3056 | version "1.1.0" 3057 | resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" 3058 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== 3059 | 3060 | resolve@^1.20.0: 3061 | version "1.20.0" 3062 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 3063 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 3064 | dependencies: 3065 | is-core-module "^2.2.0" 3066 | path-parse "^1.0.6" 3067 | 3068 | rimraf@^3.0.0: 3069 | version "3.0.2" 3070 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 3071 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 3072 | dependencies: 3073 | glob "^7.1.3" 3074 | 3075 | safe-buffer@5.2.1, safe-buffer@~5.2.0: 3076 | version "5.2.1" 3077 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 3078 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 3079 | 3080 | safe-buffer@~5.1.1: 3081 | version "5.1.2" 3082 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3083 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3084 | 3085 | "safer-buffer@>= 2.1.2 < 3": 3086 | version "2.1.2" 3087 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3088 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3089 | 3090 | saxes@^5.0.1: 3091 | version "5.0.1" 3092 | resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 3093 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 3094 | dependencies: 3095 | xmlchars "^2.2.0" 3096 | 3097 | semver@7.x, semver@^7.3.2: 3098 | version "7.3.5" 3099 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 3100 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 3101 | dependencies: 3102 | lru-cache "^6.0.0" 3103 | 3104 | semver@^6.0.0, semver@^6.3.0: 3105 | version "6.3.0" 3106 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3107 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3108 | 3109 | semver@^7.3.5: 3110 | version "7.3.6" 3111 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.6.tgz#5d73886fb9c0c6602e79440b97165c29581cbb2b" 3112 | integrity sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w== 3113 | dependencies: 3114 | lru-cache "^7.4.0" 3115 | 3116 | send@0.17.2: 3117 | version "0.17.2" 3118 | resolved "https://registry.npmjs.org/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820" 3119 | integrity sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww== 3120 | dependencies: 3121 | debug "2.6.9" 3122 | depd "~1.1.2" 3123 | destroy "~1.0.4" 3124 | encodeurl "~1.0.2" 3125 | escape-html "~1.0.3" 3126 | etag "~1.8.1" 3127 | fresh "0.5.2" 3128 | http-errors "1.8.1" 3129 | mime "1.6.0" 3130 | ms "2.1.3" 3131 | on-finished "~2.3.0" 3132 | range-parser "~1.2.1" 3133 | statuses "~1.5.0" 3134 | 3135 | serve-static@1.14.2: 3136 | version "1.14.2" 3137 | resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz#722d6294b1d62626d41b43a013ece4598d292bfa" 3138 | integrity sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ== 3139 | dependencies: 3140 | encodeurl "~1.0.2" 3141 | escape-html "~1.0.3" 3142 | parseurl "~1.3.3" 3143 | send "0.17.2" 3144 | 3145 | setprototypeof@1.2.0: 3146 | version "1.2.0" 3147 | resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" 3148 | integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== 3149 | 3150 | shebang-command@^2.0.0: 3151 | version "2.0.0" 3152 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 3153 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 3154 | dependencies: 3155 | shebang-regex "^3.0.0" 3156 | 3157 | shebang-regex@^3.0.0: 3158 | version "3.0.0" 3159 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 3160 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3161 | 3162 | side-channel@^1.0.4: 3163 | version "1.0.4" 3164 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 3165 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 3166 | dependencies: 3167 | call-bind "^1.0.0" 3168 | get-intrinsic "^1.0.2" 3169 | object-inspect "^1.9.0" 3170 | 3171 | signal-exit@^3.0.2, signal-exit@^3.0.3: 3172 | version "3.0.5" 3173 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 3174 | integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== 3175 | 3176 | sisteransi@^1.0.5: 3177 | version "1.0.5" 3178 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 3179 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 3180 | 3181 | slash@^3.0.0: 3182 | version "3.0.0" 3183 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3184 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3185 | 3186 | source-map-support@^0.5.17, source-map-support@^0.5.6: 3187 | version "0.5.20" 3188 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9" 3189 | integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw== 3190 | dependencies: 3191 | buffer-from "^1.0.0" 3192 | source-map "^0.6.0" 3193 | 3194 | source-map@^0.5.0: 3195 | version "0.5.7" 3196 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3197 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3198 | 3199 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3200 | version "0.6.1" 3201 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3202 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3203 | 3204 | source-map@^0.7.3: 3205 | version "0.7.3" 3206 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 3207 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3208 | 3209 | speech-rule-engine@^3.3.3: 3210 | version "3.3.3" 3211 | resolved "https://registry.npmjs.org/speech-rule-engine/-/speech-rule-engine-3.3.3.tgz#781ed03cbcf3279f94d1d80241025ea954c6d571" 3212 | integrity sha512-0exWw+0XauLjat+f/aFeo5T8SiDsO1JtwpY3qgJE4cWt+yL/Stl0WP4VNDWdh7lzGkubUD9lWP4J1ASnORXfyQ== 3213 | dependencies: 3214 | commander ">=7.0.0" 3215 | wicked-good-xpath "^1.3.0" 3216 | xmldom-sre "^0.1.31" 3217 | 3218 | sprintf-js@~1.0.2: 3219 | version "1.0.3" 3220 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3221 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3222 | 3223 | stack-utils@^2.0.3: 3224 | version "2.0.5" 3225 | resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 3226 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 3227 | dependencies: 3228 | escape-string-regexp "^2.0.0" 3229 | 3230 | statuses@2.0.1: 3231 | version "2.0.1" 3232 | resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" 3233 | integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== 3234 | 3235 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 3236 | version "1.5.0" 3237 | resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3238 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 3239 | 3240 | string-length@^4.0.1: 3241 | version "4.0.2" 3242 | resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 3243 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 3244 | dependencies: 3245 | char-regex "^1.0.2" 3246 | strip-ansi "^6.0.0" 3247 | 3248 | string-width@^4.1.0, string-width@^4.2.0: 3249 | version "4.2.3" 3250 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 3251 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 3252 | dependencies: 3253 | emoji-regex "^8.0.0" 3254 | is-fullwidth-code-point "^3.0.0" 3255 | strip-ansi "^6.0.1" 3256 | 3257 | string_decoder@^1.1.1: 3258 | version "1.3.0" 3259 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 3260 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 3261 | dependencies: 3262 | safe-buffer "~5.2.0" 3263 | 3264 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 3265 | version "6.0.1" 3266 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 3267 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3268 | dependencies: 3269 | ansi-regex "^5.0.1" 3270 | 3271 | strip-bom@^4.0.0: 3272 | version "4.0.0" 3273 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 3274 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 3275 | 3276 | strip-final-newline@^2.0.0: 3277 | version "2.0.0" 3278 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3279 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3280 | 3281 | strip-json-comments@^3.1.1: 3282 | version "3.1.1" 3283 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 3284 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 3285 | 3286 | superagent@^7.1.0: 3287 | version "7.1.2" 3288 | resolved "https://registry.npmjs.org/superagent/-/superagent-7.1.2.tgz#71393141edd086ccf2544a29a4a609e46b7911f3" 3289 | integrity sha512-o9/fP6dww7a4xmEF5a484o2rG34UUGo8ztDlv7vbCWuqPhpndMi0f7eXxdlryk5U12Kzy46nh8eNpLAJ93Alsg== 3290 | dependencies: 3291 | component-emitter "^1.3.0" 3292 | cookiejar "^2.1.3" 3293 | debug "^4.3.3" 3294 | fast-safe-stringify "^2.1.1" 3295 | form-data "^4.0.0" 3296 | formidable "^2.0.1" 3297 | methods "^1.1.2" 3298 | mime "^2.5.0" 3299 | qs "^6.10.1" 3300 | readable-stream "^3.6.0" 3301 | semver "^7.3.5" 3302 | 3303 | supertest@^6.2.2: 3304 | version "6.2.2" 3305 | resolved "https://registry.npmjs.org/supertest/-/supertest-6.2.2.tgz#04a5998fd3efaff187cb69f07a169755d655b001" 3306 | integrity sha512-wCw9WhAtKJsBvh07RaS+/By91NNE0Wh0DN19/hWPlBOU8tAfOtbZoVSV4xXeoKoxgPx0rx2y+y+8660XtE7jzg== 3307 | dependencies: 3308 | methods "^1.1.2" 3309 | superagent "^7.1.0" 3310 | 3311 | supports-color@^5.3.0: 3312 | version "5.5.0" 3313 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3314 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3315 | dependencies: 3316 | has-flag "^3.0.0" 3317 | 3318 | supports-color@^7.0.0, supports-color@^7.1.0: 3319 | version "7.2.0" 3320 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3321 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3322 | dependencies: 3323 | has-flag "^4.0.0" 3324 | 3325 | supports-color@^8.0.0: 3326 | version "8.1.1" 3327 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 3328 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 3329 | dependencies: 3330 | has-flag "^4.0.0" 3331 | 3332 | supports-hyperlinks@^2.0.0: 3333 | version "2.2.0" 3334 | resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 3335 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 3336 | dependencies: 3337 | has-flag "^4.0.0" 3338 | supports-color "^7.0.0" 3339 | 3340 | symbol-tree@^3.2.4: 3341 | version "3.2.4" 3342 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 3343 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 3344 | 3345 | terminal-link@^2.0.0: 3346 | version "2.1.1" 3347 | resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 3348 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 3349 | dependencies: 3350 | ansi-escapes "^4.2.1" 3351 | supports-hyperlinks "^2.0.0" 3352 | 3353 | test-exclude@^6.0.0: 3354 | version "6.0.0" 3355 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 3356 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 3357 | dependencies: 3358 | "@istanbuljs/schema" "^0.1.2" 3359 | glob "^7.1.4" 3360 | minimatch "^3.0.4" 3361 | 3362 | throat@^6.0.1: 3363 | version "6.0.1" 3364 | resolved "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" 3365 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== 3366 | 3367 | tmpl@1.0.x: 3368 | version "1.0.5" 3369 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 3370 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 3371 | 3372 | to-fast-properties@^2.0.0: 3373 | version "2.0.0" 3374 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3375 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3376 | 3377 | to-regex-range@^5.0.1: 3378 | version "5.0.1" 3379 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3380 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3381 | dependencies: 3382 | is-number "^7.0.0" 3383 | 3384 | toidentifier@1.0.1: 3385 | version "1.0.1" 3386 | resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" 3387 | integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== 3388 | 3389 | tough-cookie@^4.0.0: 3390 | version "4.0.0" 3391 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 3392 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 3393 | dependencies: 3394 | psl "^1.1.33" 3395 | punycode "^2.1.1" 3396 | universalify "^0.1.2" 3397 | 3398 | tr46@^2.1.0: 3399 | version "2.1.0" 3400 | resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 3401 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 3402 | dependencies: 3403 | punycode "^2.1.1" 3404 | 3405 | ts-jest@^27.1.4: 3406 | version "27.1.4" 3407 | resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz#84d42cf0f4e7157a52e7c64b1492c46330943e00" 3408 | integrity sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ== 3409 | dependencies: 3410 | bs-logger "0.x" 3411 | fast-json-stable-stringify "2.x" 3412 | jest-util "^27.0.0" 3413 | json5 "2.x" 3414 | lodash.memoize "4.x" 3415 | make-error "1.x" 3416 | semver "7.x" 3417 | yargs-parser "20.x" 3418 | 3419 | ts-node@8.9.1: 3420 | version "8.9.1" 3421 | resolved "https://registry.npmjs.org/ts-node/-/ts-node-8.9.1.tgz#2f857f46c47e91dcd28a14e052482eb14cfd65a5" 3422 | integrity sha512-yrq6ODsxEFTLz0R3BX2myf0WBCSQh9A+py8PBo1dCzWIOcvisbyH6akNKqDHMgXePF2kir5mm5JXJTH3OUJYOQ== 3423 | dependencies: 3424 | arg "^4.1.0" 3425 | diff "^4.0.1" 3426 | make-error "^1.1.1" 3427 | source-map-support "^0.5.17" 3428 | yn "3.1.1" 3429 | 3430 | ts-node@^10.7.0: 3431 | version "10.7.0" 3432 | resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5" 3433 | integrity sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A== 3434 | dependencies: 3435 | "@cspotcode/source-map-support" "0.7.0" 3436 | "@tsconfig/node10" "^1.0.7" 3437 | "@tsconfig/node12" "^1.0.7" 3438 | "@tsconfig/node14" "^1.0.0" 3439 | "@tsconfig/node16" "^1.0.2" 3440 | acorn "^8.4.1" 3441 | acorn-walk "^8.1.1" 3442 | arg "^4.1.0" 3443 | create-require "^1.1.0" 3444 | diff "^4.0.1" 3445 | make-error "^1.1.1" 3446 | v8-compile-cache-lib "^3.0.0" 3447 | yn "3.1.1" 3448 | 3449 | type-check@~0.3.2: 3450 | version "0.3.2" 3451 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3452 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3453 | dependencies: 3454 | prelude-ls "~1.1.2" 3455 | 3456 | type-detect@4.0.8: 3457 | version "4.0.8" 3458 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3459 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3460 | 3461 | type-fest@^0.21.3: 3462 | version "0.21.3" 3463 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 3464 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 3465 | 3466 | type-is@~1.6.18: 3467 | version "1.6.18" 3468 | resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 3469 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 3470 | dependencies: 3471 | media-typer "0.3.0" 3472 | mime-types "~2.1.24" 3473 | 3474 | typedarray-to-buffer@^3.1.5: 3475 | version "3.1.5" 3476 | resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 3477 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 3478 | dependencies: 3479 | is-typedarray "^1.0.0" 3480 | 3481 | typescript@4.3.4: 3482 | version "4.3.4" 3483 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.3.4.tgz#3f85b986945bcf31071decdd96cf8bfa65f9dcbc" 3484 | integrity sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew== 3485 | 3486 | typescript@^4.6.3: 3487 | version "4.6.3" 3488 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c" 3489 | integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw== 3490 | 3491 | universalify@^0.1.2: 3492 | version "0.1.2" 3493 | resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3494 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3495 | 3496 | unpipe@1.0.0, unpipe@~1.0.0: 3497 | version "1.0.0" 3498 | resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3499 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 3500 | 3501 | util-deprecate@^1.0.1: 3502 | version "1.0.2" 3503 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3504 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3505 | 3506 | utils-merge@1.0.1: 3507 | version "1.0.1" 3508 | resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3509 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 3510 | 3511 | v8-compile-cache-lib@^3.0.0: 3512 | version "3.0.0" 3513 | resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.0.tgz#0582bcb1c74f3a2ee46487ceecf372e46bce53e8" 3514 | integrity sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA== 3515 | 3516 | v8-to-istanbul@^8.1.0: 3517 | version "8.1.0" 3518 | resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c" 3519 | integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA== 3520 | dependencies: 3521 | "@types/istanbul-lib-coverage" "^2.0.1" 3522 | convert-source-map "^1.6.0" 3523 | source-map "^0.7.3" 3524 | 3525 | vary@~1.1.2: 3526 | version "1.1.2" 3527 | resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3528 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 3529 | 3530 | w3c-hr-time@^1.0.2: 3531 | version "1.0.2" 3532 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 3533 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 3534 | dependencies: 3535 | browser-process-hrtime "^1.0.0" 3536 | 3537 | w3c-xmlserializer@^2.0.0: 3538 | version "2.0.0" 3539 | resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 3540 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 3541 | dependencies: 3542 | xml-name-validator "^3.0.0" 3543 | 3544 | walker@^1.0.7: 3545 | version "1.0.7" 3546 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3547 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= 3548 | dependencies: 3549 | makeerror "1.0.x" 3550 | 3551 | webidl-conversions@^5.0.0: 3552 | version "5.0.0" 3553 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 3554 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 3555 | 3556 | webidl-conversions@^6.1.0: 3557 | version "6.1.0" 3558 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 3559 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 3560 | 3561 | whatwg-encoding@^1.0.5: 3562 | version "1.0.5" 3563 | resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 3564 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 3565 | dependencies: 3566 | iconv-lite "0.4.24" 3567 | 3568 | whatwg-mimetype@^2.3.0: 3569 | version "2.3.0" 3570 | resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 3571 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 3572 | 3573 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3574 | version "8.7.0" 3575 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 3576 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 3577 | dependencies: 3578 | lodash "^4.7.0" 3579 | tr46 "^2.1.0" 3580 | webidl-conversions "^6.1.0" 3581 | 3582 | which@^2.0.1: 3583 | version "2.0.2" 3584 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3585 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3586 | dependencies: 3587 | isexe "^2.0.0" 3588 | 3589 | wicked-good-xpath@^1.3.0: 3590 | version "1.3.0" 3591 | resolved "https://registry.npmjs.org/wicked-good-xpath/-/wicked-good-xpath-1.3.0.tgz#81b0e95e8650e49c94b22298fff8686b5553cf6c" 3592 | integrity sha1-gbDpXoZQ5JyUsiKY//hoa1VTz2w= 3593 | 3594 | word-wrap@~1.2.3: 3595 | version "1.2.3" 3596 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3597 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3598 | 3599 | wrap-ansi@^7.0.0: 3600 | version "7.0.0" 3601 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 3602 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 3603 | dependencies: 3604 | ansi-styles "^4.0.0" 3605 | string-width "^4.1.0" 3606 | strip-ansi "^6.0.0" 3607 | 3608 | wrappy@1: 3609 | version "1.0.2" 3610 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3611 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3612 | 3613 | write-file-atomic@^3.0.0: 3614 | version "3.0.3" 3615 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 3616 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 3617 | dependencies: 3618 | imurmurhash "^0.1.4" 3619 | is-typedarray "^1.0.0" 3620 | signal-exit "^3.0.2" 3621 | typedarray-to-buffer "^3.1.5" 3622 | 3623 | ws@^7.4.6: 3624 | version "7.5.5" 3625 | resolved "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" 3626 | integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w== 3627 | 3628 | xml-name-validator@^3.0.0: 3629 | version "3.0.0" 3630 | resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3631 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 3632 | 3633 | xmlchars@^2.2.0: 3634 | version "2.2.0" 3635 | resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 3636 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 3637 | 3638 | xmldom-sre@^0.1.31: 3639 | version "0.1.31" 3640 | resolved "https://registry.npmjs.org/xmldom-sre/-/xmldom-sre-0.1.31.tgz#10860d5bab2c603144597d04bf2c4980e98067f4" 3641 | integrity sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw== 3642 | 3643 | y18n@^5.0.5: 3644 | version "5.0.8" 3645 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 3646 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 3647 | 3648 | yallist@^4.0.0: 3649 | version "4.0.0" 3650 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3651 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3652 | 3653 | yargs-parser@20.x, yargs-parser@^20.2.2: 3654 | version "20.2.9" 3655 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 3656 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 3657 | 3658 | yargs@^16.2.0: 3659 | version "16.2.0" 3660 | resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 3661 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 3662 | dependencies: 3663 | cliui "^7.0.2" 3664 | escalade "^3.1.1" 3665 | get-caller-file "^2.0.5" 3666 | require-directory "^2.1.1" 3667 | string-width "^4.2.0" 3668 | y18n "^5.0.5" 3669 | yargs-parser "^20.2.2" 3670 | 3671 | yn@3.1.1: 3672 | version "3.1.1" 3673 | resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 3674 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 3675 | --------------------------------------------------------------------------------