├── standalone ├── .dockerignore ├── .env.example ├── src │ ├── config.js │ ├── index.js │ ├── helpers.test.js │ └── helpers.js ├── package.json ├── test │ └── loadtest.sh └── Dockerfile ├── serverless ├── netlify.toml ├── .env.dev ├── src │ ├── config.js │ ├── functions │ │ └── capture.js │ ├── helpers.test.js │ └── helpers.js ├── package.json └── yarn.lock ├── static └── screenshot.png ├── .gitignore ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ ├── merge-me.yml │ ├── dev.yml │ └── prod.yml └── README.md /standalone/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /serverless/netlify.toml: -------------------------------------------------------------------------------- 1 | [functions] 2 | directory = "src/functions/" 3 | -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/capture-website-api/main/static/screenshot.png -------------------------------------------------------------------------------- /serverless/.env.dev: -------------------------------------------------------------------------------- 1 | CHROME_EXECUTABLE_PATH="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" 2 | -------------------------------------------------------------------------------- /standalone/.env.example: -------------------------------------------------------------------------------- 1 | TIMEOUT=20 2 | CONCURRENCY=2 3 | MAX_QUEUE_LENGTH=6 4 | SHOW_RESULTS=true 5 | SECRET= 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .env 3 | **/node_modules/ 4 | **/test/*.png 5 | 6 | # Local Netlify folder 7 | serverless/.netlify 8 | -------------------------------------------------------------------------------- /serverless/src/config.js: -------------------------------------------------------------------------------- 1 | const getSecret = () => process.env.SECRET; 2 | 3 | module.exports = { 4 | getSecret: getSecret 5 | } -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: weekly 7 | time: "04:00" 8 | open-pull-requests-limit: 10 9 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | daysUntilStale: 30 2 | daysUntilClose: 7 3 | exemptLabels: 4 | - pinned 5 | - security 6 | staleLabel: wontfix 7 | markComment: > 8 | This issue has been automatically marked as stale because it has not had 9 | recent activity. It will be closed if no further activity occurs. Thank you 10 | for your contributions. 11 | closeComment: false 12 | -------------------------------------------------------------------------------- /standalone/src/config.js: -------------------------------------------------------------------------------- 1 | export const getDefaultTimeoutSeconds = () => parseInt(process.env.TIMEOUT) || 20; 2 | export const getConcurrency = () => parseInt(process.env.CONCURRENCY) || 2; 3 | export const getMaxQueueLength = () => parseInt(process.env.MAX_QUEUE_LENGTH) || 6; 4 | export const getShowResults = () => process.env.SHOW_RESULTS || 'false'; 5 | export const getSecret = () => process.env.SECRET; 6 | -------------------------------------------------------------------------------- /.github/workflows/merge-me.yml: -------------------------------------------------------------------------------- 1 | name: Merge me! 2 | 3 | on: 4 | workflow_run: 5 | types: 6 | - completed 7 | workflows: 8 | - 'CICD-DEV' 9 | 10 | jobs: 11 | merge-me: 12 | name: Merge me! 13 | runs-on: ubuntu-latest 14 | steps: 15 | - if: ${{ github.event.workflow_run.conclusion == 'success' }} 16 | name: Merge me! 17 | uses: ridedott/merge-me-action@v2 18 | with: 19 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 20 | -------------------------------------------------------------------------------- /serverless/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "capture-website-api-serverless", 3 | "version": "1.0.0", 4 | "description": "", 5 | "exports": "./src/index.js", 6 | "scripts": { 7 | "dev": "netlify dev", 8 | "test": "NODE_OPTIONS=--experimental-vm-modules jest" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "@netlify/functions": "^1.3.0", 14 | "chrome-aws-lambda": "^10.1.0", 15 | "dotenv": "^16.0.3", 16 | "puppeteer-core": "^10.1.0" 17 | }, 18 | "devDependencies": { 19 | "@jest/globals": "^28.1.3", 20 | "@types/jest": "^28.1.6", 21 | "@types/node": "^17.0.31", 22 | "jest": "^28.1.3" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /standalone/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "capture-website-rest", 3 | "version": "1.0.0", 4 | "description": "", 5 | "type": "module", 6 | "exports": "./src/index.js", 7 | "scripts": { 8 | "start": "node ./src/index.js", 9 | "dev": "netlify dev", 10 | "dev-express": "nodemon src/index.js", 11 | "test": "NODE_OPTIONS=--experimental-vm-modules jest" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "dependencies": { 16 | "@netlify/functions": "^1.3.0", 17 | "@types/express": "^4.17.13", 18 | "capture-website": "^2.4.0", 19 | "dotenv": "^16.0.0", 20 | "express": "^4.18.1", 21 | "p-queue": "^7.3.0", 22 | "puppeteer": "^13.7.0" 23 | }, 24 | "devDependencies": { 25 | "@jest/globals": "^28.1.3", 26 | "@types/jest": "^28.1.6", 27 | "@types/node": "^17.0.31", 28 | "jest": "^28.1.3", 29 | "nodemon": "^2.0.19" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /serverless/src/functions/capture.js: -------------------------------------------------------------------------------- 1 | const {allowedRequest, doCaptureWork} = require('../helpers.js'); 2 | 3 | const handler = async function (event, _) { 4 | if (!allowedRequest(event.queryStringParameters)) { 5 | return { 6 | statusCode: 403, 7 | body: JSON.stringify({message: 'Go away please'}) 8 | }; 9 | } 10 | const result = await doCaptureWork(event.queryStringParameters); 11 | if (result.statusCode === 200) { 12 | return { 13 | statusCode: 200, 14 | headers: { 15 | "Content-Type": `image/${result.responseType}`, 16 | }, 17 | body: result.buffer.toString("base64"), 18 | isBase64Encoded: true 19 | }; 20 | } else { 21 | return { 22 | statusCode: result.statusCode, 23 | body: JSON.stringify({message: result.message}) 24 | }; 25 | } 26 | } 27 | 28 | module.exports = { 29 | handler: handler 30 | } -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- 1 | name: 'CICD-DEV' 2 | on: 3 | push: 4 | branches-ignore: 5 | - main 6 | jobs: 7 | cicd: 8 | runs-on: ubuntu-latest 9 | env: 10 | CI: true 11 | defaults: 12 | run: 13 | working-directory: standalone 14 | steps: 15 | - name: 'Checkout repository' 16 | uses: actions/checkout@v2 17 | 18 | - name: 'Setup NodeJS' 19 | uses: actions/setup-node@v3 20 | with: 21 | node-version: 14.x 22 | 23 | - name: 'Install depenencies' 24 | run: yarn install 25 | 26 | - name: 'Run tests' 27 | run: yarn test 28 | 29 | - name: 'Set up QEMU' 30 | uses: docker/setup-qemu-action@v1 31 | 32 | - name: 'Set up Docker Buildx' 33 | uses: docker/setup-buildx-action@v1 34 | 35 | - name: 'Build Docker image' 36 | uses: docker/build-push-action@v2 37 | with: 38 | context: ./standalone/ 39 | file: ./standalone/Dockerfile 40 | push: false 41 | tags: robvanderleek/capture-website-api:latest 42 | -------------------------------------------------------------------------------- /.github/workflows/prod.yml: -------------------------------------------------------------------------------- 1 | name: 'CICD' 2 | on: 3 | push: 4 | branches: 5 | - main 6 | jobs: 7 | cicd: 8 | runs-on: ubuntu-latest 9 | env: 10 | CI: true 11 | defaults: 12 | run: 13 | working-directory: standalone 14 | steps: 15 | - name: 'Checkout repository' 16 | uses: actions/checkout@v2 17 | 18 | - name: 'Setup NodeJS' 19 | uses: actions/setup-node@v3 20 | with: 21 | node-version: 14.x 22 | 23 | - name: 'Install depenencies' 24 | run: yarn install 25 | 26 | - name: 'Run tests' 27 | run: yarn test 28 | 29 | - name: 'Set up QEMU' 30 | uses: docker/setup-qemu-action@v1 31 | 32 | - name: 'Set up Docker Buildx' 33 | uses: docker/setup-buildx-action@v1 34 | 35 | - name: 'Login to DockerHub' 36 | uses: docker/login-action@v1 37 | with: 38 | username: ${{ secrets.DOCKERHUB_USERNAME }} 39 | password: ${{ secrets.DOCKERHUB_TOKEN }} 40 | 41 | - name: 'Build and push Docker image' 42 | uses: docker/build-push-action@v2 43 | with: 44 | context: ./standalone/ 45 | file: ./standalone/Dockerfile 46 | push: true 47 | tags: robvanderleek/capture-website-api:latest 48 | -------------------------------------------------------------------------------- /standalone/src/index.js: -------------------------------------------------------------------------------- 1 | import express from 'express'; 2 | import {doCaptureWork, latestCapture, latestCapturePage, queue, showResults, allowedRequest} from "./helpers.js"; 3 | import {getConcurrency, getMaxQueueLength} from "./config.js"; 4 | 5 | const port = process.env.PORT || 8080; 6 | const app = express(); 7 | 8 | async function capture(req, res) { 9 | if (!allowedRequest(req.query)) { 10 | res.status(403).send('Go away please'); 11 | return; 12 | } 13 | if (queue.size >= getMaxQueueLength()) { 14 | res.status(429).send('Maximum queue size reached, try again later'); 15 | return; 16 | } 17 | if (queue.pending >= getConcurrency()) { 18 | console.log('Queueing request...'); 19 | } 20 | await queue.add(async () => { 21 | const result = await doCaptureWork(req.query); 22 | if (result.statusCode === 200) { 23 | res.status(result.statusCode).type(result.responseType).send(result.buffer); 24 | } else { 25 | res.status(result.statusCode).send(result.message); 26 | } 27 | }); 28 | } 29 | 30 | app.get('/capture', capture); 31 | 32 | if (showResults()) { 33 | app.get('/', latestCapturePage); 34 | app.get('/latest', latestCapture); 35 | } 36 | 37 | app.listen(port, () => console.log(`listening at port ${port}...`)); -------------------------------------------------------------------------------- /standalone/test/loadtest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | curl 'localhost:8080/capture?url=https://www.reddit.com' -o 1.png -s & 3 | sleep 1 4 | curl 'localhost:8080/capture?url=https://www.twitter.com' -o 2.png -s & 5 | sleep 1 6 | curl 'localhost:8080/capture?url=https://www.youtube.com' -o 3.png -s & 7 | sleep 1 8 | curl 'localhost:8080/capture?url=https://www.reddit.com' -o 4.png -s & 9 | sleep 1 10 | curl 'localhost:8080/capture?url=https://www.twitter.com' -o 5.png -s & 11 | sleep 1 12 | curl 'localhost:8080/capture?url=https://www.youtube.com' -o 6.png -s & 13 | sleep 1 14 | curl 'localhost:8080/capture?url=https://www.reddit.com' -o 7.png -s & 15 | sleep 1 16 | curl 'localhost:8080/capture?url=https://www.twitter.com' -o 8.png -s & 17 | sleep 1 18 | curl 'localhost:8080/capture?url=https://www.youtube.com' -o 9.png -s & 19 | sleep 1 20 | curl 'localhost:8080/capture?url=https://www.reddit.com' -o 10.png -s & 21 | sleep 1 22 | curl 'localhost:8080/capture?url=https://www.twitter.com' -o 11.png -s & 23 | sleep 1 24 | curl 'localhost:8080/capture?url=https://www.youtube.com' -o 12.png -s & 25 | sleep 1 26 | curl 'localhost:8080/capture?url=https://www.reddit.com' -o 13.png -s & 27 | sleep 1 28 | curl 'localhost:8080/capture?url=https://www.twitter.com' -o 14.png -s & 29 | sleep 1 30 | curl 'localhost:8080/capture?url=https://www.youtube.com' -o 15.png -s & 31 | -------------------------------------------------------------------------------- /standalone/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:16-slim 2 | RUN apt-get update && apt-get install --no-install-recommends -yq \ 3 | libgconf-2-4 libxss1 libxtst6 libxshmfence1 ca-certificates wget curl \ 4 | gnupg2 python 5 | ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE 1 6 | RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub |\ 7 | apt-key add - 8 | RUN echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list 9 | RUN apt-get update && apt-get install -y google-chrome-unstable git \ 10 | fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst \ 11 | --no-install-recommends \ 12 | && rm -rf /var/lib/apt/lists/* /src/*.deb 13 | RUN mkdir -p /usr/share/fonts/emoji \ 14 | && curl --location --silent --show-error --out \ 15 | /usr/share/fonts/emoji/emojione-android.ttf \ 16 | https://github.com/emojione/emojione-assets/releases/download/3.1.2/emojione-android.ttf \ 17 | && chmod -R +rx /usr/share/fonts/ \ 18 | && fc-cache -fv 19 | RUN rm /bin/sh && ln -s /bin/bash /bin/sh 20 | RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \ 21 | && mkdir -p /home/pptruser/Downloads \ 22 | && chown -R pptruser:pptruser /home/pptruser 23 | RUN mkdir /app 24 | COPY package.json yarn.lock app/ 25 | WORKDIR /app 26 | RUN yarn 27 | ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true 28 | RUN chown -R pptruser:pptruser /app 29 | COPY src src 30 | RUN chown -R pptruser:pptruser /app/src 31 | USER pptruser 32 | CMD yarn start 33 | -------------------------------------------------------------------------------- /serverless/src/helpers.test.js: -------------------------------------------------------------------------------- 1 | const {allowedRequest, fieldValuesToNumber, getResponseType} = require("./helpers"); 2 | const {expect} = require('@jest/globals'); 3 | 4 | test('all requests are allowed by default', () => { 5 | expect(allowedRequest({})).toBeTruthy(); 6 | }); 7 | 8 | test('all requests are rejected if secret is set and request contains no secret value', () => { 9 | process.env.SECRET = 'hello'; 10 | 11 | expect(allowedRequest({})).toBeFalsy(); 12 | expect(allowedRequest({query: {}})).toBeFalsy(); 13 | 14 | delete process.env.SECRET; 15 | }); 16 | 17 | test('all requests are allowed when secrets match', () => { 18 | process.env.SECRET = 'hello'; 19 | 20 | expect(allowedRequest({secret: 'world'})).toBeFalsy(); 21 | expect(allowedRequest({secret: 'hello'})).toBeTruthy(); 22 | 23 | delete process.env.SECRET; 24 | }); 25 | 26 | test('field values to number', () => { 27 | const obj = {aap: '5', noot: '6', mies: 'seven'}; 28 | 29 | fieldValuesToNumber(obj, 'aap'); 30 | 31 | expect(typeof obj.aap).toBe('number'); 32 | expect(typeof obj.noot).toBe('string'); 33 | expect(typeof obj.mies).toBe('string'); 34 | }); 35 | 36 | test('field values to number, multiple fields', () => { 37 | const obj = {aap: '5', noot: '6', mies: 'seven'}; 38 | 39 | fieldValuesToNumber(obj, 'aap', 'noot'); 40 | 41 | expect(typeof obj.aap).toBe('number'); 42 | expect(typeof obj.noot).toBe('number'); 43 | expect(typeof obj.mies).toBe('string'); 44 | }); 45 | 46 | test('field values to number, no number value', () => { 47 | const obj = {aap: '5', noot: '6', mies: 'seven'}; 48 | 49 | fieldValuesToNumber(obj, 'mies'); 50 | 51 | expect(typeof obj.mies).toBe('string'); 52 | expect(obj.mies).toBe('seven'); 53 | }); 54 | 55 | test('get response type', () => { 56 | expect(getResponseType({})).toBe('png'); 57 | expect(getResponseType({type: 'jpeg'})).toBe('jpg'); 58 | expect(getResponseType({type: 'png'})).toBe('png'); 59 | }); -------------------------------------------------------------------------------- /standalone/src/helpers.test.js: -------------------------------------------------------------------------------- 1 | import { 2 | doCaptureWork, 3 | fieldValuesToNumber, 4 | getResponseType, 5 | latestCapturePage, 6 | showResults, 7 | allowedRequest 8 | } from "./helpers"; 9 | import {expect, jest} from '@jest/globals' 10 | 11 | 12 | test('show results default off', () => { 13 | expect(showResults()).toBeFalsy(); 14 | }); 15 | 16 | test('show results on with environment variable', () => { 17 | process.env.SHOW_RESULTS = 'true'; 18 | 19 | expect(showResults()).toBeTruthy(); 20 | 21 | process.env.SHOW_RESULTS = undefined; 22 | }); 23 | 24 | test('generate homepage', () => { 25 | const res = {send: jest.fn()}; 26 | 27 | latestCapturePage({}, res); 28 | 29 | expect(res.send).toBeCalledTimes(1); 30 | }); 31 | 32 | test('all requests are allowed by default', () => { 33 | expect(allowedRequest({})).toBeTruthy(); 34 | }); 35 | 36 | test('all requests are rejected if secret is set and request contains no secret value', () => { 37 | process.env.SECRET = 'hello'; 38 | 39 | expect(allowedRequest({})).toBeFalsy(); 40 | expect(allowedRequest({query: {}})).toBeFalsy(); 41 | 42 | delete process.env.SECRET; 43 | }); 44 | 45 | test('all requests are allowed when secrets match', () => { 46 | process.env.SECRET = 'hello'; 47 | 48 | expect(allowedRequest({secret: 'world'})).toBeFalsy(); 49 | expect(allowedRequest({secret: 'hello'})).toBeTruthy(); 50 | 51 | delete process.env.SECRET; 52 | }); 53 | 54 | test('field values to number', () => { 55 | const obj = {aap: '5', noot: '6', mies: 'seven'}; 56 | 57 | fieldValuesToNumber(obj, 'aap'); 58 | 59 | expect(typeof obj.aap).toBe('number'); 60 | expect(typeof obj.noot).toBe('string'); 61 | expect(typeof obj.mies).toBe('string'); 62 | }); 63 | 64 | test('field values to number, multiple fields', () => { 65 | const obj = {aap: '5', noot: '6', mies: 'seven'}; 66 | 67 | fieldValuesToNumber(obj, 'aap', 'noot'); 68 | 69 | expect(typeof obj.aap).toBe('number'); 70 | expect(typeof obj.noot).toBe('number'); 71 | expect(typeof obj.mies).toBe('string'); 72 | }); 73 | 74 | test('field values to number, no number value', () => { 75 | const obj = {aap: '5', noot: '6', mies: 'seven'}; 76 | 77 | fieldValuesToNumber(obj, 'mies'); 78 | 79 | expect(typeof obj.mies).toBe('string'); 80 | expect(obj.mies).toBe('seven'); 81 | }); 82 | 83 | test('get response type', () => { 84 | expect(getResponseType({})).toBe('png'); 85 | expect(getResponseType({type: 'jpeg'})).toBe('jpg'); 86 | expect(getResponseType({type: 'png'})).toBe('png'); 87 | }); 88 | 89 | test('do real capture', async () => { 90 | const queryParameters = {url: 'https://robvanderleek.github.io'}; 91 | let resultType = undefined; 92 | let resultBuffer = undefined; 93 | 94 | function type(t) { 95 | resultType = t; 96 | 97 | function send(buffer) { 98 | resultBuffer = buffer; 99 | } 100 | 101 | return {send: send}; 102 | } 103 | 104 | const res = {type: type}; 105 | 106 | const result = await doCaptureWork(queryParameters); 107 | res.type(result.responseType).send(result.buffer); 108 | 109 | expect(resultType).toBe('png'); 110 | expect(resultBuffer).toBeDefined(); 111 | }); -------------------------------------------------------------------------------- /serverless/src/helpers.js: -------------------------------------------------------------------------------- 1 | const {getSecret} = require('./config.js'); 2 | const puppeteer = require('puppeteer-core'); 3 | const chromium = require('chrome-aws-lambda'); 4 | 5 | async function doCaptureWork(queryParameters) { 6 | const options = await getOptions(queryParameters); 7 | const url = options.url; 8 | console.info('Capturing URL: ' + url + ' ...'); 9 | return await tryWithPuppeteer(url, options); 10 | } 11 | 12 | function allowedRequest(queryParameters) { 13 | const secret = getSecret(); 14 | if (!secret) { 15 | return true; 16 | } 17 | if (!queryParameters || !queryParameters.secret) { 18 | return false; 19 | } 20 | return queryParameters.secret === secret; 21 | } 22 | 23 | async function getOptions(queryParameters) { 24 | const result = parseQueryParameters(queryParameters); 25 | result.launchOptions = { 26 | headless: true, 27 | args: [ 28 | ...chromium.args, 29 | '--no-sandbox', 30 | '--disable-setuid-sandbox', 31 | '--hide-scrollbars', 32 | '--mute-audio', 33 | '--use-fake-ui-for-media-stream' // Pages that ask for webcam/microphone access 34 | ], 35 | executablePath: process.env.CHROME_EXECUTABLE_PATH || await chromium.executablePath, 36 | }; 37 | fieldValuesToNumber(result, 'width', 'height', 'quality', 'scaleFactor', 'timeout', 'delay', 'offset'); 38 | return result; 39 | } 40 | 41 | function parseQueryParameters(queryParameters) { 42 | return Object.keys(queryParameters).reduce((params, key) => { 43 | const q = queryParameters[key]; 44 | let value; 45 | try { 46 | value = JSON.parse(q); 47 | } catch { 48 | value = q 49 | } 50 | return { 51 | ...params, 52 | [key]: value 53 | } 54 | }, queryParameters || {}); 55 | } 56 | 57 | async function tryWithPuppeteer(url, options) { 58 | try { 59 | const buffer = await takePlainPuppeteerScreenshot(url, options); 60 | console.info(`Successfully captured URL: ${url}`); 61 | return { 62 | statusCode: 200, 63 | responseType: getResponseType(options), 64 | buffer: buffer 65 | } 66 | } catch (e) { 67 | console.log('Capture failed due to: ' + e.message); 68 | return { 69 | statusCode: 500, 70 | message: e.message 71 | } 72 | } 73 | } 74 | 75 | async function takePlainPuppeteerScreenshot(url, options) { 76 | options.encoding = 'binary'; 77 | const browser = await puppeteer.launch(options.launchOptions); 78 | const page = await browser.newPage(); 79 | await page.goto(url); 80 | await new Promise(r => setTimeout(r, 300)); 81 | await setViewport(page, options); 82 | const buffer = await page.screenshot(); 83 | await browser.close(); 84 | return buffer; 85 | } 86 | 87 | async function setViewport(page, options) { 88 | if (options.width && options.height) { 89 | const viewportOptions = { 90 | width: options.width, 91 | height: options.height, 92 | deviceScaleFactor: options.scaleFactor ? options.scaleFactor : 1 93 | }; 94 | await page.setViewport(viewportOptions); 95 | } 96 | } 97 | 98 | function getResponseType(queryParams) { 99 | if (queryParams.type && queryParams.type === 'jpeg') { 100 | return 'jpg'; 101 | } 102 | return 'png'; 103 | } 104 | 105 | function fieldValuesToNumber(obj, ...fields) { 106 | fields.forEach(f => { 107 | if (obj[f]) { 108 | const val = Number(obj[f]); 109 | obj[f] = Number.isNaN(val) ? obj[f] : val; 110 | } 111 | }); 112 | } 113 | 114 | module.exports = { 115 | doCaptureWork: doCaptureWork, 116 | allowedRequest: allowedRequest, 117 | getResponseType: getResponseType, 118 | fieldValuesToNumber: fieldValuesToNumber 119 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Capture website API 2 | 3 | ![Screenshot](static/screenshot.png) 4 | 5 | [![Build Status](https://github.com/robvanderleek/capture-website-api/workflows/Prod/badge.svg)](https://github.com/robvanderleek/capture-website-api/actions) 6 | [![Maintainability](https://api.codeclimate.com/v1/badges/20056816e22527745a74/maintainability)](https://codeclimate.com/github/robvanderleek/capture-website-api/maintainability) 7 | [![Dependabot](https://badgen.net/badge/Dependabot/enabled/green?icon=dependabot)](https://dependabot.com/) 8 | [![DockerHub image pulls](https://img.shields.io/docker/pulls/robvanderleek/capture-website-api)](https://hub.docker.com/repository/docker/robvanderleek/capture-website-api) 9 | [![Netlify Status](https://api.netlify.com/api/v1/badges/0c2a8937-ed81-4246-ab00-efc0192c59a4/deploy-status)](https://app.netlify.com/sites/capture-website-api/deploys) 10 | 11 | Capture screenshots of websites as a (host it yourself) API. 12 | This project is a wrapper around this library: https://github.com/sindresorhus/capture-website 13 | 14 | # Installation 15 | 16 | ## Docker 17 | 18 | ### Run pre-built container from Docker Hub 19 | 20 | 1. Pull the image: 21 | ``` 22 | docker pull robvanderleek/capture-website-api 23 | ``` 24 | 25 | 2. Start the container: 26 | ``` 27 | docker run -it -p 8080:8080 robvanderleek/capture-website-api 28 | ``` 29 | 30 | 3. Make screenshot test request: 31 | ``` 32 | curl 'localhost:8080/capture?url=https://news.ycombinator.com/' -o screenshot.png 33 | ``` 34 | 35 | ### Build the docker image and run it 36 | 37 | 1. Clone the repo: 38 | ``` 39 | git clone git@github.com:robvanderleek/capture-website-api.git && cd capture-website-api/standalone 40 | ``` 41 | 42 | 2. Build the image: 43 | ``` 44 | docker build -t cwa . 45 | ``` 46 | 47 | 3. Start the container: 48 | ``` 49 | docker run -it -p 8080:8080 cwa 50 | ``` 51 | 52 | 4. Make screenshot test request: 53 | ``` 54 | curl 'localhost:8080/capture?url=https://www.youtube.com' -o screenshot.png 55 | ``` 56 | 57 | ## Yarn 58 | 59 | Run in a terminal: 60 | 61 | 1. Clone the repo: 62 | ``` 63 | git clone git@github.com:robvanderleek/capture-website-api.git && cd capture-website-api/standalone 64 | ``` 65 | 66 | 2. Install dependencies: 67 | ``` 68 | yarn 69 | ``` 70 | 71 | 3. Start the server: 72 | ``` 73 | yarn start 74 | ``` 75 | 76 | 4. Make screenshot test request: 77 | ``` 78 | curl 'localhost:8080/capture?url=https://www.reddit.com' -o screenshot.png 79 | ``` 80 | 81 | ## Netlify 82 | 83 | Deploy and run on Netlify: 84 | 85 | 1. Clone the repo: 86 | ``` 87 | git clone git@github.com:robvanderleek/capture-website-api.git && cd capture-website-api/serverless 88 | ``` 89 | 90 | 2. Deploy to Netlify: 91 | ``` 92 | netlify deploy 93 | ``` 94 | 95 | 3. Get site URL: 96 | ``` 97 | netlify status 98 | ``` 99 | 100 | 7. Make screenshot test request: 101 | ``` 102 | curl "${SITE_URL}/.netlify/functions/capture?url=https://www.linkedin.com" -o screenshot.png 103 | ``` 104 | 105 | # Usage 106 | 107 | Call the `/capture` endpoint and pass the site URL using the query parameters `url`: 108 | ``` 109 | $ curl 'https://capture-website-api.netlify.app/capture?url=http://gmail.com' -o screenshot.png 110 | ``` 111 | Simple as that. 112 | 113 | # Configuration 114 | 115 | ## Application options 116 | 117 | Application configuration options can be set as environment veriables or in 118 | a `.env` file in the root folder. There's an example `.env` file in the codebase: [`.env.example`](https://github.com/robvanderleek/capture-website-api/blob/main/.env.example) 119 | 120 | Supported options are: 121 | 122 | | Name | Descrition | Default | 123 | |---|---|---| 124 | | TIMEOUT | Timeout in seconds for loading a web page | 20 | 125 | | CONCURRENCY | Number of captures that run in parallel, more memory allows more captures to run in parallel | 2 | 126 | | MAX_QUEUE_LENGTH | Requests that can't be handled directly are queued until the queue is full | 6 | 127 | | SHOW_RESULTS | Enable web endpoint to show latest capture | false | 128 | | SECRET | Secret string to prevent undesired usage on public endpoints | "" | 129 | 130 | ## Capturing options 131 | 132 | Most of the configuration options from the wrapped `capture-website` library are supported using query parameters. 133 | For example, to capture a site with a 650x350 viewport, no default background and animations disabled use: 134 | ``` 135 | curl 'https://capture-website-api.netlify.app/capture?url=http://amazon.com&width=650&height=350&scaleFactor=1&defaultBackground=false&disableAnimations=true' -o screenshot.png 136 | ``` 137 | 138 | See https://github.com/sindresorhus/capture-website for a full list of options. 139 | 140 | ## Use plain Puppeteer 141 | 142 | Sometimes the `capture-website` library has problems capturing sites. You can try to 143 | capture these sites with plain Puppeteer by supplying the query parameter `plainPuppeteer=true` 144 | 145 | ## Environment variables 146 | 147 | This app looks at two environment variables: 148 | 149 | * `SHOW_RESULTS`: if `true` the latest capture result can be viewed in the browser by browsing the base url 150 | * `SECRET`: when set all capture requests need to contain a query parameter `secret` whose value matches the value of this environment variable 151 | 152 | # Contributing 153 | 154 | If you have suggestions for improvements, or want to report a bug, [open an issue](https://github.com/robvanderleek/capture-website-api/issues)! 155 | 156 | # License 157 | 158 | [ISC](LICENSE) © 2019 Rob van der Leek (https://twitter.com/robvanderleek) 159 | -------------------------------------------------------------------------------- /standalone/src/helpers.js: -------------------------------------------------------------------------------- 1 | import captureWebsite from 'capture-website'; 2 | import puppeteer from 'puppeteer'; 3 | import PQueue from "p-queue"; 4 | import {getConcurrency, getDefaultTimeoutSeconds, getSecret, getShowResults} from "./config.js"; 5 | import 'dotenv/config'; 6 | 7 | export const queue = new PQueue({concurrency: getConcurrency()}); 8 | 9 | const latest = { 10 | capture: undefined, 11 | url: undefined, 12 | date: undefined 13 | }; 14 | 15 | export function showResults() { 16 | const showResults = getShowResults(); 17 | return showResults && showResults === 'true'; 18 | } 19 | 20 | export async function doCaptureWork(queryParameters) { 21 | latest.date = new Date(); 22 | const options = getOptions(queryParameters); 23 | const url = options.url; 24 | latest.url = url; 25 | console.info('Capturing URL: ' + url + ' ...'); 26 | if (options.plainPuppeteer === 'true') { 27 | return await tryWithPuppeteer(url, options); 28 | } else { 29 | try { 30 | const buffer = await captureWebsite.buffer(url, options); 31 | console.info(`Successfully captured URL: ${url}`); 32 | latest.capture = buffer; 33 | return { 34 | statusCode: 200, 35 | responseType: getResponseType(options), 36 | buffer: buffer 37 | } 38 | } catch (e) { 39 | console.error(e); 40 | console.info(`Capture website failed for URL: ${url}`); 41 | console.info('Retrying with plain Puppeteer...'); 42 | return await tryWithPuppeteer(url, options); 43 | } 44 | } 45 | } 46 | 47 | export function allowedRequest(queryParameters) { 48 | const secret = getSecret(); 49 | if (!secret) { 50 | return true; 51 | } 52 | if (!queryParameters || !queryParameters.secret) { 53 | return false; 54 | } 55 | return queryParameters.secret === secret; 56 | } 57 | 58 | function getOptions(queryParameters) { 59 | const result = parseQueryParameters(queryParameters); 60 | result.launchOptions = { 61 | // headless: false, 62 | args: [ 63 | '--no-sandbox', 64 | '--disable-setuid-sandbox', 65 | '--hide-scrollbars', 66 | '--mute-audio', 67 | '--use-fake-ui-for-media-stream' // Pages that ask for webcam/microphone access 68 | ] 69 | }; 70 | if (!result.timeout) { 71 | result.timeout = getDefaultTimeoutSeconds(); 72 | } 73 | fieldValuesToNumber(result, 'width', 'height', 'quality', 'scaleFactor', 'timeout', 'delay', 'offset'); 74 | return result; 75 | } 76 | 77 | function parseQueryParameters(queryParameters) { 78 | return Object.keys(queryParameters).reduce((params, key) => { 79 | const q = queryParameters[key]; 80 | let value; 81 | try { 82 | value = JSON.parse(q); 83 | } catch { 84 | value = q 85 | } 86 | return { 87 | ...params, 88 | [key]: value 89 | } 90 | }, queryParameters || {}); 91 | } 92 | 93 | async function tryWithPuppeteer(url, options) { 94 | try { 95 | const buffer = await takePlainPuppeteerScreenshot(url, options); 96 | console.info(`Successfully captured URL: ${url}`); 97 | latest.capture = buffer; 98 | return { 99 | statusCode: 200, 100 | responseType: getResponseType(options), 101 | buffer: buffer 102 | } 103 | } catch (e) { 104 | console.log('Capture failed due to: ' + e.message); 105 | return { 106 | statusCode: 500, 107 | message: e.message 108 | } 109 | } 110 | } 111 | 112 | async function takePlainPuppeteerScreenshot(url, options) { 113 | options.encoding = 'binary'; 114 | const browser = await puppeteer.launch(options.launchOptions); 115 | const page = await browser.newPage(); 116 | await page.goto(url); 117 | await new Promise(r => setTimeout(r, 3000)); 118 | await setViewport(page, options); 119 | const buffer = await page.screenshot(); 120 | await browser.close(); 121 | return buffer; 122 | } 123 | 124 | async function setViewport(page, options) { 125 | if (options.width && options.height) { 126 | const viewportOptions = { 127 | width: options.width, 128 | height: options.height, 129 | deviceScaleFactor: options.scaleFactor ? options.scaleFactor : 1 130 | }; 131 | await page.setViewport(viewportOptions); 132 | } 133 | } 134 | 135 | export function getResponseType(queryParams) { 136 | if (queryParams.type && queryParams.type === 'jpeg') { 137 | return 'jpg'; 138 | } 139 | return 'png'; 140 | } 141 | 142 | export function fieldValuesToNumber(obj, ...fields) { 143 | fields.forEach(f => { 144 | if (obj[f]) { 145 | const val = Number(obj[f]); 146 | obj[f] = Number.isNaN(val) ? obj[f] : val; 147 | } 148 | }); 149 | } 150 | 151 | export function latestCapturePage(req, res) { 152 | let page = ''; 153 | page += '\n'; 154 | page += '\n'; 155 | page += '

Latest capture

'; 156 | if (latest.capture) { 157 | const latestEndpoint = '/latest'; 158 | page += '

Date: ' + latest.date + '

\n'; 159 | page += `Latest capture\n`; 160 | } else { 161 | page += '

No capture found!

\n'; 162 | } 163 | page += '\n'; 164 | page += '\n'; 165 | res.send(page); 166 | } 167 | 168 | export function latestCapture(req, res) { 169 | res.type('png'); 170 | res.send(latest.capture); 171 | } -------------------------------------------------------------------------------- /serverless/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.2.0" 7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" 8 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== 9 | dependencies: 10 | "@jridgewell/gen-mapping" "^0.1.0" 11 | "@jridgewell/trace-mapping" "^0.3.9" 12 | 13 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6": 14 | version "7.18.6" 15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 16 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 17 | dependencies: 18 | "@babel/highlight" "^7.18.6" 19 | 20 | "@babel/compat-data@^7.20.0": 21 | version "7.20.5" 22 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733" 23 | integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g== 24 | 25 | "@babel/core@^7.11.6", "@babel/core@^7.12.3": 26 | version "7.20.5" 27 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113" 28 | integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ== 29 | dependencies: 30 | "@ampproject/remapping" "^2.1.0" 31 | "@babel/code-frame" "^7.18.6" 32 | "@babel/generator" "^7.20.5" 33 | "@babel/helper-compilation-targets" "^7.20.0" 34 | "@babel/helper-module-transforms" "^7.20.2" 35 | "@babel/helpers" "^7.20.5" 36 | "@babel/parser" "^7.20.5" 37 | "@babel/template" "^7.18.10" 38 | "@babel/traverse" "^7.20.5" 39 | "@babel/types" "^7.20.5" 40 | convert-source-map "^1.7.0" 41 | debug "^4.1.0" 42 | gensync "^1.0.0-beta.2" 43 | json5 "^2.2.1" 44 | semver "^6.3.0" 45 | 46 | "@babel/generator@^7.20.5", "@babel/generator@^7.7.2": 47 | version "7.20.5" 48 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95" 49 | integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA== 50 | dependencies: 51 | "@babel/types" "^7.20.5" 52 | "@jridgewell/gen-mapping" "^0.3.2" 53 | jsesc "^2.5.1" 54 | 55 | "@babel/helper-compilation-targets@^7.20.0": 56 | version "7.20.0" 57 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" 58 | integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== 59 | dependencies: 60 | "@babel/compat-data" "^7.20.0" 61 | "@babel/helper-validator-option" "^7.18.6" 62 | browserslist "^4.21.3" 63 | semver "^6.3.0" 64 | 65 | "@babel/helper-environment-visitor@^7.18.9": 66 | version "7.18.9" 67 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" 68 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== 69 | 70 | "@babel/helper-function-name@^7.19.0": 71 | version "7.19.0" 72 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" 73 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== 74 | dependencies: 75 | "@babel/template" "^7.18.10" 76 | "@babel/types" "^7.19.0" 77 | 78 | "@babel/helper-hoist-variables@^7.18.6": 79 | version "7.18.6" 80 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" 81 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== 82 | dependencies: 83 | "@babel/types" "^7.18.6" 84 | 85 | "@babel/helper-module-imports@^7.18.6": 86 | version "7.18.6" 87 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" 88 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== 89 | dependencies: 90 | "@babel/types" "^7.18.6" 91 | 92 | "@babel/helper-module-transforms@^7.20.2": 93 | version "7.20.2" 94 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712" 95 | integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA== 96 | dependencies: 97 | "@babel/helper-environment-visitor" "^7.18.9" 98 | "@babel/helper-module-imports" "^7.18.6" 99 | "@babel/helper-simple-access" "^7.20.2" 100 | "@babel/helper-split-export-declaration" "^7.18.6" 101 | "@babel/helper-validator-identifier" "^7.19.1" 102 | "@babel/template" "^7.18.10" 103 | "@babel/traverse" "^7.20.1" 104 | "@babel/types" "^7.20.2" 105 | 106 | "@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.19.0", "@babel/helper-plugin-utils@^7.8.0": 107 | version "7.20.2" 108 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" 109 | integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== 110 | 111 | "@babel/helper-simple-access@^7.20.2": 112 | version "7.20.2" 113 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" 114 | integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== 115 | dependencies: 116 | "@babel/types" "^7.20.2" 117 | 118 | "@babel/helper-split-export-declaration@^7.18.6": 119 | version "7.18.6" 120 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" 121 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== 122 | dependencies: 123 | "@babel/types" "^7.18.6" 124 | 125 | "@babel/helper-string-parser@^7.19.4": 126 | version "7.19.4" 127 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" 128 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== 129 | 130 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": 131 | version "7.19.1" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 133 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 134 | 135 | "@babel/helper-validator-option@^7.18.6": 136 | version "7.18.6" 137 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" 138 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== 139 | 140 | "@babel/helpers@^7.20.5": 141 | version "7.20.6" 142 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763" 143 | integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w== 144 | dependencies: 145 | "@babel/template" "^7.18.10" 146 | "@babel/traverse" "^7.20.5" 147 | "@babel/types" "^7.20.5" 148 | 149 | "@babel/highlight@^7.18.6": 150 | version "7.18.6" 151 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 152 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 153 | dependencies: 154 | "@babel/helper-validator-identifier" "^7.18.6" 155 | chalk "^2.0.0" 156 | js-tokens "^4.0.0" 157 | 158 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.20.5": 159 | version "7.20.5" 160 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8" 161 | integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA== 162 | 163 | "@babel/plugin-syntax-async-generators@^7.8.4": 164 | version "7.8.4" 165 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 166 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 167 | dependencies: 168 | "@babel/helper-plugin-utils" "^7.8.0" 169 | 170 | "@babel/plugin-syntax-bigint@^7.8.3": 171 | version "7.8.3" 172 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 173 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 174 | dependencies: 175 | "@babel/helper-plugin-utils" "^7.8.0" 176 | 177 | "@babel/plugin-syntax-class-properties@^7.8.3": 178 | version "7.12.13" 179 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 180 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 181 | dependencies: 182 | "@babel/helper-plugin-utils" "^7.12.13" 183 | 184 | "@babel/plugin-syntax-import-meta@^7.8.3": 185 | version "7.10.4" 186 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 187 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 188 | dependencies: 189 | "@babel/helper-plugin-utils" "^7.10.4" 190 | 191 | "@babel/plugin-syntax-json-strings@^7.8.3": 192 | version "7.8.3" 193 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 194 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 195 | dependencies: 196 | "@babel/helper-plugin-utils" "^7.8.0" 197 | 198 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 199 | version "7.10.4" 200 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 201 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 202 | dependencies: 203 | "@babel/helper-plugin-utils" "^7.10.4" 204 | 205 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 206 | version "7.8.3" 207 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 208 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 209 | dependencies: 210 | "@babel/helper-plugin-utils" "^7.8.0" 211 | 212 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 213 | version "7.10.4" 214 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 215 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 216 | dependencies: 217 | "@babel/helper-plugin-utils" "^7.10.4" 218 | 219 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 220 | version "7.8.3" 221 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 222 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 223 | dependencies: 224 | "@babel/helper-plugin-utils" "^7.8.0" 225 | 226 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 227 | version "7.8.3" 228 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 229 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 230 | dependencies: 231 | "@babel/helper-plugin-utils" "^7.8.0" 232 | 233 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 234 | version "7.8.3" 235 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 236 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 237 | dependencies: 238 | "@babel/helper-plugin-utils" "^7.8.0" 239 | 240 | "@babel/plugin-syntax-top-level-await@^7.8.3": 241 | version "7.14.5" 242 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 243 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 244 | dependencies: 245 | "@babel/helper-plugin-utils" "^7.14.5" 246 | 247 | "@babel/plugin-syntax-typescript@^7.7.2": 248 | version "7.20.0" 249 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7" 250 | integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ== 251 | dependencies: 252 | "@babel/helper-plugin-utils" "^7.19.0" 253 | 254 | "@babel/template@^7.18.10", "@babel/template@^7.3.3": 255 | version "7.18.10" 256 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" 257 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== 258 | dependencies: 259 | "@babel/code-frame" "^7.18.6" 260 | "@babel/parser" "^7.18.10" 261 | "@babel/types" "^7.18.10" 262 | 263 | "@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5", "@babel/traverse@^7.7.2": 264 | version "7.20.5" 265 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133" 266 | integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ== 267 | dependencies: 268 | "@babel/code-frame" "^7.18.6" 269 | "@babel/generator" "^7.20.5" 270 | "@babel/helper-environment-visitor" "^7.18.9" 271 | "@babel/helper-function-name" "^7.19.0" 272 | "@babel/helper-hoist-variables" "^7.18.6" 273 | "@babel/helper-split-export-declaration" "^7.18.6" 274 | "@babel/parser" "^7.20.5" 275 | "@babel/types" "^7.20.5" 276 | debug "^4.1.0" 277 | globals "^11.1.0" 278 | 279 | "@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 280 | version "7.20.5" 281 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84" 282 | integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg== 283 | dependencies: 284 | "@babel/helper-string-parser" "^7.19.4" 285 | "@babel/helper-validator-identifier" "^7.19.1" 286 | to-fast-properties "^2.0.0" 287 | 288 | "@bcoe/v8-coverage@^0.2.3": 289 | version "0.2.3" 290 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 291 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 292 | 293 | "@istanbuljs/load-nyc-config@^1.0.0": 294 | version "1.1.0" 295 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 296 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 297 | dependencies: 298 | camelcase "^5.3.1" 299 | find-up "^4.1.0" 300 | get-package-type "^0.1.0" 301 | js-yaml "^3.13.1" 302 | resolve-from "^5.0.0" 303 | 304 | "@istanbuljs/schema@^0.1.2": 305 | version "0.1.3" 306 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 307 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 308 | 309 | "@jest/console@^28.1.3": 310 | version "28.1.3" 311 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.3.tgz#2030606ec03a18c31803b8a36382762e447655df" 312 | integrity sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw== 313 | dependencies: 314 | "@jest/types" "^28.1.3" 315 | "@types/node" "*" 316 | chalk "^4.0.0" 317 | jest-message-util "^28.1.3" 318 | jest-util "^28.1.3" 319 | slash "^3.0.0" 320 | 321 | "@jest/core@^28.1.3": 322 | version "28.1.3" 323 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.3.tgz#0ebf2bd39840f1233cd5f2d1e6fc8b71bd5a1ac7" 324 | integrity sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA== 325 | dependencies: 326 | "@jest/console" "^28.1.3" 327 | "@jest/reporters" "^28.1.3" 328 | "@jest/test-result" "^28.1.3" 329 | "@jest/transform" "^28.1.3" 330 | "@jest/types" "^28.1.3" 331 | "@types/node" "*" 332 | ansi-escapes "^4.2.1" 333 | chalk "^4.0.0" 334 | ci-info "^3.2.0" 335 | exit "^0.1.2" 336 | graceful-fs "^4.2.9" 337 | jest-changed-files "^28.1.3" 338 | jest-config "^28.1.3" 339 | jest-haste-map "^28.1.3" 340 | jest-message-util "^28.1.3" 341 | jest-regex-util "^28.0.2" 342 | jest-resolve "^28.1.3" 343 | jest-resolve-dependencies "^28.1.3" 344 | jest-runner "^28.1.3" 345 | jest-runtime "^28.1.3" 346 | jest-snapshot "^28.1.3" 347 | jest-util "^28.1.3" 348 | jest-validate "^28.1.3" 349 | jest-watcher "^28.1.3" 350 | micromatch "^4.0.4" 351 | pretty-format "^28.1.3" 352 | rimraf "^3.0.0" 353 | slash "^3.0.0" 354 | strip-ansi "^6.0.0" 355 | 356 | "@jest/environment@^28.1.3": 357 | version "28.1.3" 358 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.3.tgz#abed43a6b040a4c24fdcb69eab1f97589b2d663e" 359 | integrity sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA== 360 | dependencies: 361 | "@jest/fake-timers" "^28.1.3" 362 | "@jest/types" "^28.1.3" 363 | "@types/node" "*" 364 | jest-mock "^28.1.3" 365 | 366 | "@jest/expect-utils@^28.1.3": 367 | version "28.1.3" 368 | resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.3.tgz#58561ce5db7cd253a7edddbc051fb39dda50f525" 369 | integrity sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA== 370 | dependencies: 371 | jest-get-type "^28.0.2" 372 | 373 | "@jest/expect@^28.1.3": 374 | version "28.1.3" 375 | resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.3.tgz#9ac57e1d4491baca550f6bdbd232487177ad6a72" 376 | integrity sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw== 377 | dependencies: 378 | expect "^28.1.3" 379 | jest-snapshot "^28.1.3" 380 | 381 | "@jest/fake-timers@^28.1.3": 382 | version "28.1.3" 383 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.3.tgz#230255b3ad0a3d4978f1d06f70685baea91c640e" 384 | integrity sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw== 385 | dependencies: 386 | "@jest/types" "^28.1.3" 387 | "@sinonjs/fake-timers" "^9.1.2" 388 | "@types/node" "*" 389 | jest-message-util "^28.1.3" 390 | jest-mock "^28.1.3" 391 | jest-util "^28.1.3" 392 | 393 | "@jest/globals@^28.1.3": 394 | version "28.1.3" 395 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.3.tgz#a601d78ddc5fdef542728309894895b4a42dc333" 396 | integrity sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA== 397 | dependencies: 398 | "@jest/environment" "^28.1.3" 399 | "@jest/expect" "^28.1.3" 400 | "@jest/types" "^28.1.3" 401 | 402 | "@jest/reporters@^28.1.3": 403 | version "28.1.3" 404 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.3.tgz#9adf6d265edafc5fc4a434cfb31e2df5a67a369a" 405 | integrity sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg== 406 | dependencies: 407 | "@bcoe/v8-coverage" "^0.2.3" 408 | "@jest/console" "^28.1.3" 409 | "@jest/test-result" "^28.1.3" 410 | "@jest/transform" "^28.1.3" 411 | "@jest/types" "^28.1.3" 412 | "@jridgewell/trace-mapping" "^0.3.13" 413 | "@types/node" "*" 414 | chalk "^4.0.0" 415 | collect-v8-coverage "^1.0.0" 416 | exit "^0.1.2" 417 | glob "^7.1.3" 418 | graceful-fs "^4.2.9" 419 | istanbul-lib-coverage "^3.0.0" 420 | istanbul-lib-instrument "^5.1.0" 421 | istanbul-lib-report "^3.0.0" 422 | istanbul-lib-source-maps "^4.0.0" 423 | istanbul-reports "^3.1.3" 424 | jest-message-util "^28.1.3" 425 | jest-util "^28.1.3" 426 | jest-worker "^28.1.3" 427 | slash "^3.0.0" 428 | string-length "^4.0.1" 429 | strip-ansi "^6.0.0" 430 | terminal-link "^2.0.0" 431 | v8-to-istanbul "^9.0.1" 432 | 433 | "@jest/schemas@^28.1.3": 434 | version "28.1.3" 435 | resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905" 436 | integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg== 437 | dependencies: 438 | "@sinclair/typebox" "^0.24.1" 439 | 440 | "@jest/source-map@^28.1.2": 441 | version "28.1.2" 442 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.1.2.tgz#7fe832b172b497d6663cdff6c13b0a920e139e24" 443 | integrity sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww== 444 | dependencies: 445 | "@jridgewell/trace-mapping" "^0.3.13" 446 | callsites "^3.0.0" 447 | graceful-fs "^4.2.9" 448 | 449 | "@jest/test-result@^28.1.3": 450 | version "28.1.3" 451 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.3.tgz#5eae945fd9f4b8fcfce74d239e6f725b6bf076c5" 452 | integrity sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg== 453 | dependencies: 454 | "@jest/console" "^28.1.3" 455 | "@jest/types" "^28.1.3" 456 | "@types/istanbul-lib-coverage" "^2.0.0" 457 | collect-v8-coverage "^1.0.0" 458 | 459 | "@jest/test-sequencer@^28.1.3": 460 | version "28.1.3" 461 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz#9d0c283d906ac599c74bde464bc0d7e6a82886c3" 462 | integrity sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw== 463 | dependencies: 464 | "@jest/test-result" "^28.1.3" 465 | graceful-fs "^4.2.9" 466 | jest-haste-map "^28.1.3" 467 | slash "^3.0.0" 468 | 469 | "@jest/transform@^28.1.3": 470 | version "28.1.3" 471 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.3.tgz#59d8098e50ab07950e0f2fc0fc7ec462371281b0" 472 | integrity sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA== 473 | dependencies: 474 | "@babel/core" "^7.11.6" 475 | "@jest/types" "^28.1.3" 476 | "@jridgewell/trace-mapping" "^0.3.13" 477 | babel-plugin-istanbul "^6.1.1" 478 | chalk "^4.0.0" 479 | convert-source-map "^1.4.0" 480 | fast-json-stable-stringify "^2.0.0" 481 | graceful-fs "^4.2.9" 482 | jest-haste-map "^28.1.3" 483 | jest-regex-util "^28.0.2" 484 | jest-util "^28.1.3" 485 | micromatch "^4.0.4" 486 | pirates "^4.0.4" 487 | slash "^3.0.0" 488 | write-file-atomic "^4.0.1" 489 | 490 | "@jest/types@^28.1.3": 491 | version "28.1.3" 492 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b" 493 | integrity sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ== 494 | dependencies: 495 | "@jest/schemas" "^28.1.3" 496 | "@types/istanbul-lib-coverage" "^2.0.0" 497 | "@types/istanbul-reports" "^3.0.0" 498 | "@types/node" "*" 499 | "@types/yargs" "^17.0.8" 500 | chalk "^4.0.0" 501 | 502 | "@jridgewell/gen-mapping@^0.1.0": 503 | version "0.1.1" 504 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" 505 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== 506 | dependencies: 507 | "@jridgewell/set-array" "^1.0.0" 508 | "@jridgewell/sourcemap-codec" "^1.4.10" 509 | 510 | "@jridgewell/gen-mapping@^0.3.2": 511 | version "0.3.2" 512 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" 513 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== 514 | dependencies: 515 | "@jridgewell/set-array" "^1.0.1" 516 | "@jridgewell/sourcemap-codec" "^1.4.10" 517 | "@jridgewell/trace-mapping" "^0.3.9" 518 | 519 | "@jridgewell/resolve-uri@3.1.0": 520 | version "3.1.0" 521 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 522 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 523 | 524 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": 525 | version "1.1.2" 526 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 527 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 528 | 529 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": 530 | version "1.4.14" 531 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 532 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 533 | 534 | "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.9": 535 | version "0.3.17" 536 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" 537 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== 538 | dependencies: 539 | "@jridgewell/resolve-uri" "3.1.0" 540 | "@jridgewell/sourcemap-codec" "1.4.14" 541 | 542 | "@netlify/functions@^1.3.0": 543 | version "1.3.0" 544 | resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-1.3.0.tgz#4305a3fb6b49caf56cd2be88d4b8534b1d5aff4f" 545 | integrity sha512-hN/Fgpz8XIOBfsBPLYUMxVKBlCopgeqGB0popayicnmkFLnvKByTTMYgF01wcF9DBtBQdV0H2h1kPFpMl34I8w== 546 | dependencies: 547 | is-promise "^4.0.0" 548 | 549 | "@sinclair/typebox@^0.24.1": 550 | version "0.24.51" 551 | resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" 552 | integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== 553 | 554 | "@sinonjs/commons@^1.7.0": 555 | version "1.8.6" 556 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" 557 | integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== 558 | dependencies: 559 | type-detect "4.0.8" 560 | 561 | "@sinonjs/fake-timers@^9.1.2": 562 | version "9.1.2" 563 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" 564 | integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== 565 | dependencies: 566 | "@sinonjs/commons" "^1.7.0" 567 | 568 | "@types/babel__core@^7.1.14": 569 | version "7.1.20" 570 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.20.tgz#e168cdd612c92a2d335029ed62ac94c95b362359" 571 | integrity sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ== 572 | dependencies: 573 | "@babel/parser" "^7.1.0" 574 | "@babel/types" "^7.0.0" 575 | "@types/babel__generator" "*" 576 | "@types/babel__template" "*" 577 | "@types/babel__traverse" "*" 578 | 579 | "@types/babel__generator@*": 580 | version "7.6.4" 581 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" 582 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 583 | dependencies: 584 | "@babel/types" "^7.0.0" 585 | 586 | "@types/babel__template@*": 587 | version "7.4.1" 588 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 589 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 590 | dependencies: 591 | "@babel/parser" "^7.1.0" 592 | "@babel/types" "^7.0.0" 593 | 594 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 595 | version "7.18.3" 596 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d" 597 | integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w== 598 | dependencies: 599 | "@babel/types" "^7.3.0" 600 | 601 | "@types/graceful-fs@^4.1.3": 602 | version "4.1.5" 603 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 604 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 605 | dependencies: 606 | "@types/node" "*" 607 | 608 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 609 | version "2.0.4" 610 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" 611 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 612 | 613 | "@types/istanbul-lib-report@*": 614 | version "3.0.0" 615 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 616 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 617 | dependencies: 618 | "@types/istanbul-lib-coverage" "*" 619 | 620 | "@types/istanbul-reports@^3.0.0": 621 | version "3.0.1" 622 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 623 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 624 | dependencies: 625 | "@types/istanbul-lib-report" "*" 626 | 627 | "@types/jest@^28.1.6": 628 | version "28.1.8" 629 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-28.1.8.tgz#6936409f3c9724ea431efd412ea0238a0f03b09b" 630 | integrity sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw== 631 | dependencies: 632 | expect "^28.0.0" 633 | pretty-format "^28.0.0" 634 | 635 | "@types/node@*": 636 | version "18.11.12" 637 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.12.tgz#89e7f8aa8c88abf432f9bd594888144d7dba10aa" 638 | integrity sha512-FgD3NtTAKvyMmD44T07zz2fEf+OKwutgBCEVM8GcvMGVGaDktiLNTDvPwC/LUe3PinMW+X6CuLOF2Ui1mAlSXg== 639 | 640 | "@types/node@^17.0.31": 641 | version "17.0.45" 642 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" 643 | integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== 644 | 645 | "@types/prettier@^2.1.5": 646 | version "2.7.1" 647 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.1.tgz#dfd20e2dc35f027cdd6c1908e80a5ddc7499670e" 648 | integrity sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow== 649 | 650 | "@types/stack-utils@^2.0.0": 651 | version "2.0.1" 652 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 653 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 654 | 655 | "@types/yargs-parser@*": 656 | version "21.0.0" 657 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" 658 | integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 659 | 660 | "@types/yargs@^17.0.8": 661 | version "17.0.17" 662 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.17.tgz#5672e5621f8e0fca13f433a8017aae4b7a2a03e7" 663 | integrity sha512-72bWxFKTK6uwWJAVT+3rF6Jo6RTojiJ27FQo8Rf60AL+VZbzoVPnMFhKsUnbjR8A3BTCYQ7Mv3hnl8T0A+CX9g== 664 | dependencies: 665 | "@types/yargs-parser" "*" 666 | 667 | "@types/yauzl@^2.9.1": 668 | version "2.10.0" 669 | resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" 670 | integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== 671 | dependencies: 672 | "@types/node" "*" 673 | 674 | agent-base@6: 675 | version "6.0.2" 676 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 677 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 678 | dependencies: 679 | debug "4" 680 | 681 | ansi-escapes@^4.2.1: 682 | version "4.3.2" 683 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 684 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 685 | dependencies: 686 | type-fest "^0.21.3" 687 | 688 | ansi-regex@^5.0.1: 689 | version "5.0.1" 690 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 691 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 692 | 693 | ansi-styles@^3.2.1: 694 | version "3.2.1" 695 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 696 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 697 | dependencies: 698 | color-convert "^1.9.0" 699 | 700 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 701 | version "4.3.0" 702 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 703 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 704 | dependencies: 705 | color-convert "^2.0.1" 706 | 707 | ansi-styles@^5.0.0: 708 | version "5.2.0" 709 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 710 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 711 | 712 | anymatch@^3.0.3: 713 | version "3.1.3" 714 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 715 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 716 | dependencies: 717 | normalize-path "^3.0.0" 718 | picomatch "^2.0.4" 719 | 720 | argparse@^1.0.7: 721 | version "1.0.10" 722 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 723 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 724 | dependencies: 725 | sprintf-js "~1.0.2" 726 | 727 | babel-jest@^28.1.3: 728 | version "28.1.3" 729 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.3.tgz#c1187258197c099072156a0a121c11ee1e3917d5" 730 | integrity sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q== 731 | dependencies: 732 | "@jest/transform" "^28.1.3" 733 | "@types/babel__core" "^7.1.14" 734 | babel-plugin-istanbul "^6.1.1" 735 | babel-preset-jest "^28.1.3" 736 | chalk "^4.0.0" 737 | graceful-fs "^4.2.9" 738 | slash "^3.0.0" 739 | 740 | babel-plugin-istanbul@^6.1.1: 741 | version "6.1.1" 742 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 743 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 744 | dependencies: 745 | "@babel/helper-plugin-utils" "^7.0.0" 746 | "@istanbuljs/load-nyc-config" "^1.0.0" 747 | "@istanbuljs/schema" "^0.1.2" 748 | istanbul-lib-instrument "^5.0.4" 749 | test-exclude "^6.0.0" 750 | 751 | babel-plugin-jest-hoist@^28.1.3: 752 | version "28.1.3" 753 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz#1952c4d0ea50f2d6d794353762278d1d8cca3fbe" 754 | integrity sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q== 755 | dependencies: 756 | "@babel/template" "^7.3.3" 757 | "@babel/types" "^7.3.3" 758 | "@types/babel__core" "^7.1.14" 759 | "@types/babel__traverse" "^7.0.6" 760 | 761 | babel-preset-current-node-syntax@^1.0.0: 762 | version "1.0.1" 763 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 764 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 765 | dependencies: 766 | "@babel/plugin-syntax-async-generators" "^7.8.4" 767 | "@babel/plugin-syntax-bigint" "^7.8.3" 768 | "@babel/plugin-syntax-class-properties" "^7.8.3" 769 | "@babel/plugin-syntax-import-meta" "^7.8.3" 770 | "@babel/plugin-syntax-json-strings" "^7.8.3" 771 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 772 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 773 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 774 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 775 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 776 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 777 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 778 | 779 | babel-preset-jest@^28.1.3: 780 | version "28.1.3" 781 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz#5dfc20b99abed5db994406c2b9ab94c73aaa419d" 782 | integrity sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A== 783 | dependencies: 784 | babel-plugin-jest-hoist "^28.1.3" 785 | babel-preset-current-node-syntax "^1.0.0" 786 | 787 | balanced-match@^1.0.0: 788 | version "1.0.2" 789 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 790 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 791 | 792 | base64-js@^1.3.1: 793 | version "1.5.1" 794 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 795 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 796 | 797 | bl@^4.0.3: 798 | version "4.1.0" 799 | resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 800 | integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 801 | dependencies: 802 | buffer "^5.5.0" 803 | inherits "^2.0.4" 804 | readable-stream "^3.4.0" 805 | 806 | brace-expansion@^1.1.7: 807 | version "1.1.11" 808 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 809 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 810 | dependencies: 811 | balanced-match "^1.0.0" 812 | concat-map "0.0.1" 813 | 814 | braces@^3.0.2: 815 | version "3.0.2" 816 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 817 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 818 | dependencies: 819 | fill-range "^7.0.1" 820 | 821 | browserslist@^4.21.3: 822 | version "4.21.4" 823 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" 824 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== 825 | dependencies: 826 | caniuse-lite "^1.0.30001400" 827 | electron-to-chromium "^1.4.251" 828 | node-releases "^2.0.6" 829 | update-browserslist-db "^1.0.9" 830 | 831 | bser@2.1.1: 832 | version "2.1.1" 833 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 834 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 835 | dependencies: 836 | node-int64 "^0.4.0" 837 | 838 | buffer-crc32@~0.2.3: 839 | version "0.2.13" 840 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 841 | integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 842 | 843 | buffer-from@^1.0.0: 844 | version "1.1.2" 845 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 846 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 847 | 848 | buffer@^5.2.1, buffer@^5.5.0: 849 | version "5.7.1" 850 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 851 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 852 | dependencies: 853 | base64-js "^1.3.1" 854 | ieee754 "^1.1.13" 855 | 856 | callsites@^3.0.0: 857 | version "3.1.0" 858 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 859 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 860 | 861 | camelcase@^5.3.1: 862 | version "5.3.1" 863 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 864 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 865 | 866 | camelcase@^6.2.0: 867 | version "6.3.0" 868 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 869 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 870 | 871 | caniuse-lite@^1.0.30001400: 872 | version "1.0.30001439" 873 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb" 874 | integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A== 875 | 876 | chalk@^2.0.0: 877 | version "2.4.2" 878 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 879 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 880 | dependencies: 881 | ansi-styles "^3.2.1" 882 | escape-string-regexp "^1.0.5" 883 | supports-color "^5.3.0" 884 | 885 | chalk@^4.0.0: 886 | version "4.1.2" 887 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 888 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 889 | dependencies: 890 | ansi-styles "^4.1.0" 891 | supports-color "^7.1.0" 892 | 893 | char-regex@^1.0.2: 894 | version "1.0.2" 895 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 896 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 897 | 898 | chownr@^1.1.1: 899 | version "1.1.4" 900 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 901 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 902 | 903 | chrome-aws-lambda@^10.1.0: 904 | version "10.1.0" 905 | resolved "https://registry.yarnpkg.com/chrome-aws-lambda/-/chrome-aws-lambda-10.1.0.tgz#ac43b4cdfc1fbb2275c62effada560858099501e" 906 | integrity sha512-NZQVf+J4kqG4sVhRm3WNmOfzY0OtTSm+S8rg77pwePa9RCYHzhnzRs8YvNI6L9tALIW6RpmefWiPURt3vURXcw== 907 | dependencies: 908 | lambdafs "^2.0.3" 909 | 910 | ci-info@^3.2.0: 911 | version "3.7.0" 912 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.7.0.tgz#6d01b3696c59915b6ce057e4aa4adfc2fa25f5ef" 913 | integrity sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog== 914 | 915 | cjs-module-lexer@^1.0.0: 916 | version "1.2.2" 917 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 918 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 919 | 920 | cliui@^8.0.1: 921 | version "8.0.1" 922 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" 923 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 924 | dependencies: 925 | string-width "^4.2.0" 926 | strip-ansi "^6.0.1" 927 | wrap-ansi "^7.0.0" 928 | 929 | co@^4.6.0: 930 | version "4.6.0" 931 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 932 | integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== 933 | 934 | collect-v8-coverage@^1.0.0: 935 | version "1.0.1" 936 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 937 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 938 | 939 | color-convert@^1.9.0: 940 | version "1.9.3" 941 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 942 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 943 | dependencies: 944 | color-name "1.1.3" 945 | 946 | color-convert@^2.0.1: 947 | version "2.0.1" 948 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 949 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 950 | dependencies: 951 | color-name "~1.1.4" 952 | 953 | color-name@1.1.3: 954 | version "1.1.3" 955 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 956 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 957 | 958 | color-name@~1.1.4: 959 | version "1.1.4" 960 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 961 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 962 | 963 | concat-map@0.0.1: 964 | version "0.0.1" 965 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 966 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 967 | 968 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 969 | version "1.9.0" 970 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" 971 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== 972 | 973 | cross-spawn@^7.0.3: 974 | version "7.0.3" 975 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 976 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 977 | dependencies: 978 | path-key "^3.1.0" 979 | shebang-command "^2.0.0" 980 | which "^2.0.1" 981 | 982 | debug@4, debug@^4.1.0, debug@^4.1.1: 983 | version "4.3.4" 984 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 985 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 986 | dependencies: 987 | ms "2.1.2" 988 | 989 | debug@4.3.1: 990 | version "4.3.1" 991 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 992 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 993 | dependencies: 994 | ms "2.1.2" 995 | 996 | dedent@^0.7.0: 997 | version "0.7.0" 998 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 999 | integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== 1000 | 1001 | deepmerge@^4.2.2: 1002 | version "4.2.2" 1003 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1004 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1005 | 1006 | detect-newline@^3.0.0: 1007 | version "3.1.0" 1008 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1009 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1010 | 1011 | devtools-protocol@0.0.901419: 1012 | version "0.0.901419" 1013 | resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.901419.tgz#79b5459c48fe7e1c5563c02bd72f8fec3e0cebcd" 1014 | integrity sha512-4INMPwNm9XRpBukhNbF7OB6fNTTCaI8pzy/fXg0xQzAy5h3zL1P8xT3QazgKqBrb/hAYwIBizqDBZ7GtJE74QQ== 1015 | 1016 | diff-sequences@^28.1.1: 1017 | version "28.1.1" 1018 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-28.1.1.tgz#9989dc731266dc2903457a70e996f3a041913ac6" 1019 | integrity sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw== 1020 | 1021 | dotenv@^16.0.3: 1022 | version "16.0.3" 1023 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07" 1024 | integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== 1025 | 1026 | electron-to-chromium@^1.4.251: 1027 | version "1.4.284" 1028 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" 1029 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== 1030 | 1031 | emittery@^0.10.2: 1032 | version "0.10.2" 1033 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" 1034 | integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== 1035 | 1036 | emoji-regex@^8.0.0: 1037 | version "8.0.0" 1038 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1039 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1040 | 1041 | end-of-stream@^1.1.0, end-of-stream@^1.4.1: 1042 | version "1.4.4" 1043 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1044 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1045 | dependencies: 1046 | once "^1.4.0" 1047 | 1048 | error-ex@^1.3.1: 1049 | version "1.3.2" 1050 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1051 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1052 | dependencies: 1053 | is-arrayish "^0.2.1" 1054 | 1055 | escalade@^3.1.1: 1056 | version "3.1.1" 1057 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1058 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1059 | 1060 | escape-string-regexp@^1.0.5: 1061 | version "1.0.5" 1062 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1063 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1064 | 1065 | escape-string-regexp@^2.0.0: 1066 | version "2.0.0" 1067 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1068 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1069 | 1070 | esprima@^4.0.0: 1071 | version "4.0.1" 1072 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1073 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1074 | 1075 | execa@^5.0.0: 1076 | version "5.1.1" 1077 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1078 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1079 | dependencies: 1080 | cross-spawn "^7.0.3" 1081 | get-stream "^6.0.0" 1082 | human-signals "^2.1.0" 1083 | is-stream "^2.0.0" 1084 | merge-stream "^2.0.0" 1085 | npm-run-path "^4.0.1" 1086 | onetime "^5.1.2" 1087 | signal-exit "^3.0.3" 1088 | strip-final-newline "^2.0.0" 1089 | 1090 | exit@^0.1.2: 1091 | version "0.1.2" 1092 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1093 | integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== 1094 | 1095 | expect@^28.0.0, expect@^28.1.3: 1096 | version "28.1.3" 1097 | resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.3.tgz#90a7c1a124f1824133dd4533cce2d2bdcb6603ec" 1098 | integrity sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g== 1099 | dependencies: 1100 | "@jest/expect-utils" "^28.1.3" 1101 | jest-get-type "^28.0.2" 1102 | jest-matcher-utils "^28.1.3" 1103 | jest-message-util "^28.1.3" 1104 | jest-util "^28.1.3" 1105 | 1106 | extract-zip@2.0.1: 1107 | version "2.0.1" 1108 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" 1109 | integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== 1110 | dependencies: 1111 | debug "^4.1.1" 1112 | get-stream "^5.1.0" 1113 | yauzl "^2.10.0" 1114 | optionalDependencies: 1115 | "@types/yauzl" "^2.9.1" 1116 | 1117 | fast-json-stable-stringify@^2.0.0: 1118 | version "2.1.0" 1119 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1120 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1121 | 1122 | fb-watchman@^2.0.0: 1123 | version "2.0.2" 1124 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" 1125 | integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== 1126 | dependencies: 1127 | bser "2.1.1" 1128 | 1129 | fd-slicer@~1.1.0: 1130 | version "1.1.0" 1131 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 1132 | integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== 1133 | dependencies: 1134 | pend "~1.2.0" 1135 | 1136 | fill-range@^7.0.1: 1137 | version "7.0.1" 1138 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1139 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1140 | dependencies: 1141 | to-regex-range "^5.0.1" 1142 | 1143 | find-up@^4.0.0, find-up@^4.1.0: 1144 | version "4.1.0" 1145 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1146 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1147 | dependencies: 1148 | locate-path "^5.0.0" 1149 | path-exists "^4.0.0" 1150 | 1151 | fs-constants@^1.0.0: 1152 | version "1.0.0" 1153 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1154 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1155 | 1156 | fs.realpath@^1.0.0: 1157 | version "1.0.0" 1158 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1159 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1160 | 1161 | fsevents@^2.3.2: 1162 | version "2.3.2" 1163 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1164 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1165 | 1166 | function-bind@^1.1.1: 1167 | version "1.1.1" 1168 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1169 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1170 | 1171 | gensync@^1.0.0-beta.2: 1172 | version "1.0.0-beta.2" 1173 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1174 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1175 | 1176 | get-caller-file@^2.0.5: 1177 | version "2.0.5" 1178 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1179 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1180 | 1181 | get-package-type@^0.1.0: 1182 | version "0.1.0" 1183 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1184 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1185 | 1186 | get-stream@^5.1.0: 1187 | version "5.2.0" 1188 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1189 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1190 | dependencies: 1191 | pump "^3.0.0" 1192 | 1193 | get-stream@^6.0.0: 1194 | version "6.0.1" 1195 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1196 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1197 | 1198 | glob@^7.1.3, glob@^7.1.4: 1199 | version "7.2.3" 1200 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1201 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1202 | dependencies: 1203 | fs.realpath "^1.0.0" 1204 | inflight "^1.0.4" 1205 | inherits "2" 1206 | minimatch "^3.1.1" 1207 | once "^1.3.0" 1208 | path-is-absolute "^1.0.0" 1209 | 1210 | globals@^11.1.0: 1211 | version "11.12.0" 1212 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1213 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1214 | 1215 | graceful-fs@^4.2.9: 1216 | version "4.2.10" 1217 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1218 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1219 | 1220 | has-flag@^3.0.0: 1221 | version "3.0.0" 1222 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1223 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1224 | 1225 | has-flag@^4.0.0: 1226 | version "4.0.0" 1227 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1228 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1229 | 1230 | has@^1.0.3: 1231 | version "1.0.3" 1232 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1233 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1234 | dependencies: 1235 | function-bind "^1.1.1" 1236 | 1237 | html-escaper@^2.0.0: 1238 | version "2.0.2" 1239 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1240 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1241 | 1242 | https-proxy-agent@5.0.0: 1243 | version "5.0.0" 1244 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1245 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1246 | dependencies: 1247 | agent-base "6" 1248 | debug "4" 1249 | 1250 | human-signals@^2.1.0: 1251 | version "2.1.0" 1252 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1253 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1254 | 1255 | ieee754@^1.1.13: 1256 | version "1.2.1" 1257 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 1258 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1259 | 1260 | import-local@^3.0.2: 1261 | version "3.1.0" 1262 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" 1263 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 1264 | dependencies: 1265 | pkg-dir "^4.2.0" 1266 | resolve-cwd "^3.0.0" 1267 | 1268 | imurmurhash@^0.1.4: 1269 | version "0.1.4" 1270 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1271 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1272 | 1273 | inflight@^1.0.4: 1274 | version "1.0.6" 1275 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1276 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1277 | dependencies: 1278 | once "^1.3.0" 1279 | wrappy "1" 1280 | 1281 | inherits@2, inherits@^2.0.3, inherits@^2.0.4: 1282 | version "2.0.4" 1283 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1284 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1285 | 1286 | is-arrayish@^0.2.1: 1287 | version "0.2.1" 1288 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1289 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1290 | 1291 | is-core-module@^2.9.0: 1292 | version "2.11.0" 1293 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1294 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1295 | dependencies: 1296 | has "^1.0.3" 1297 | 1298 | is-fullwidth-code-point@^3.0.0: 1299 | version "3.0.0" 1300 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1301 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1302 | 1303 | is-generator-fn@^2.0.0: 1304 | version "2.1.0" 1305 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1306 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1307 | 1308 | is-number@^7.0.0: 1309 | version "7.0.0" 1310 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1311 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1312 | 1313 | is-promise@^4.0.0: 1314 | version "4.0.0" 1315 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" 1316 | integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== 1317 | 1318 | is-stream@^2.0.0: 1319 | version "2.0.1" 1320 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1321 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1322 | 1323 | isexe@^2.0.0: 1324 | version "2.0.0" 1325 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1326 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1327 | 1328 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 1329 | version "3.2.0" 1330 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 1331 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 1332 | 1333 | istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: 1334 | version "5.2.1" 1335 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" 1336 | integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== 1337 | dependencies: 1338 | "@babel/core" "^7.12.3" 1339 | "@babel/parser" "^7.14.7" 1340 | "@istanbuljs/schema" "^0.1.2" 1341 | istanbul-lib-coverage "^3.2.0" 1342 | semver "^6.3.0" 1343 | 1344 | istanbul-lib-report@^3.0.0: 1345 | version "3.0.0" 1346 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 1347 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 1348 | dependencies: 1349 | istanbul-lib-coverage "^3.0.0" 1350 | make-dir "^3.0.0" 1351 | supports-color "^7.1.0" 1352 | 1353 | istanbul-lib-source-maps@^4.0.0: 1354 | version "4.0.1" 1355 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 1356 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1357 | dependencies: 1358 | debug "^4.1.1" 1359 | istanbul-lib-coverage "^3.0.0" 1360 | source-map "^0.6.1" 1361 | 1362 | istanbul-reports@^3.1.3: 1363 | version "3.1.5" 1364 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" 1365 | integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== 1366 | dependencies: 1367 | html-escaper "^2.0.0" 1368 | istanbul-lib-report "^3.0.0" 1369 | 1370 | jest-changed-files@^28.1.3: 1371 | version "28.1.3" 1372 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.1.3.tgz#d9aeee6792be3686c47cb988a8eaf82ff4238831" 1373 | integrity sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA== 1374 | dependencies: 1375 | execa "^5.0.0" 1376 | p-limit "^3.1.0" 1377 | 1378 | jest-circus@^28.1.3: 1379 | version "28.1.3" 1380 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.3.tgz#d14bd11cf8ee1a03d69902dc47b6bd4634ee00e4" 1381 | integrity sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow== 1382 | dependencies: 1383 | "@jest/environment" "^28.1.3" 1384 | "@jest/expect" "^28.1.3" 1385 | "@jest/test-result" "^28.1.3" 1386 | "@jest/types" "^28.1.3" 1387 | "@types/node" "*" 1388 | chalk "^4.0.0" 1389 | co "^4.6.0" 1390 | dedent "^0.7.0" 1391 | is-generator-fn "^2.0.0" 1392 | jest-each "^28.1.3" 1393 | jest-matcher-utils "^28.1.3" 1394 | jest-message-util "^28.1.3" 1395 | jest-runtime "^28.1.3" 1396 | jest-snapshot "^28.1.3" 1397 | jest-util "^28.1.3" 1398 | p-limit "^3.1.0" 1399 | pretty-format "^28.1.3" 1400 | slash "^3.0.0" 1401 | stack-utils "^2.0.3" 1402 | 1403 | jest-cli@^28.1.3: 1404 | version "28.1.3" 1405 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.3.tgz#558b33c577d06de55087b8448d373b9f654e46b2" 1406 | integrity sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ== 1407 | dependencies: 1408 | "@jest/core" "^28.1.3" 1409 | "@jest/test-result" "^28.1.3" 1410 | "@jest/types" "^28.1.3" 1411 | chalk "^4.0.0" 1412 | exit "^0.1.2" 1413 | graceful-fs "^4.2.9" 1414 | import-local "^3.0.2" 1415 | jest-config "^28.1.3" 1416 | jest-util "^28.1.3" 1417 | jest-validate "^28.1.3" 1418 | prompts "^2.0.1" 1419 | yargs "^17.3.1" 1420 | 1421 | jest-config@^28.1.3: 1422 | version "28.1.3" 1423 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.3.tgz#e315e1f73df3cac31447eed8b8740a477392ec60" 1424 | integrity sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ== 1425 | dependencies: 1426 | "@babel/core" "^7.11.6" 1427 | "@jest/test-sequencer" "^28.1.3" 1428 | "@jest/types" "^28.1.3" 1429 | babel-jest "^28.1.3" 1430 | chalk "^4.0.0" 1431 | ci-info "^3.2.0" 1432 | deepmerge "^4.2.2" 1433 | glob "^7.1.3" 1434 | graceful-fs "^4.2.9" 1435 | jest-circus "^28.1.3" 1436 | jest-environment-node "^28.1.3" 1437 | jest-get-type "^28.0.2" 1438 | jest-regex-util "^28.0.2" 1439 | jest-resolve "^28.1.3" 1440 | jest-runner "^28.1.3" 1441 | jest-util "^28.1.3" 1442 | jest-validate "^28.1.3" 1443 | micromatch "^4.0.4" 1444 | parse-json "^5.2.0" 1445 | pretty-format "^28.1.3" 1446 | slash "^3.0.0" 1447 | strip-json-comments "^3.1.1" 1448 | 1449 | jest-diff@^28.1.3: 1450 | version "28.1.3" 1451 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.3.tgz#948a192d86f4e7a64c5264ad4da4877133d8792f" 1452 | integrity sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw== 1453 | dependencies: 1454 | chalk "^4.0.0" 1455 | diff-sequences "^28.1.1" 1456 | jest-get-type "^28.0.2" 1457 | pretty-format "^28.1.3" 1458 | 1459 | jest-docblock@^28.1.1: 1460 | version "28.1.1" 1461 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" 1462 | integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== 1463 | dependencies: 1464 | detect-newline "^3.0.0" 1465 | 1466 | jest-each@^28.1.3: 1467 | version "28.1.3" 1468 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.3.tgz#bdd1516edbe2b1f3569cfdad9acd543040028f81" 1469 | integrity sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g== 1470 | dependencies: 1471 | "@jest/types" "^28.1.3" 1472 | chalk "^4.0.0" 1473 | jest-get-type "^28.0.2" 1474 | jest-util "^28.1.3" 1475 | pretty-format "^28.1.3" 1476 | 1477 | jest-environment-node@^28.1.3: 1478 | version "28.1.3" 1479 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.3.tgz#7e74fe40eb645b9d56c0c4b70ca4357faa349be5" 1480 | integrity sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A== 1481 | dependencies: 1482 | "@jest/environment" "^28.1.3" 1483 | "@jest/fake-timers" "^28.1.3" 1484 | "@jest/types" "^28.1.3" 1485 | "@types/node" "*" 1486 | jest-mock "^28.1.3" 1487 | jest-util "^28.1.3" 1488 | 1489 | jest-get-type@^28.0.2: 1490 | version "28.0.2" 1491 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203" 1492 | integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== 1493 | 1494 | jest-haste-map@^28.1.3: 1495 | version "28.1.3" 1496 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.3.tgz#abd5451129a38d9841049644f34b034308944e2b" 1497 | integrity sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA== 1498 | dependencies: 1499 | "@jest/types" "^28.1.3" 1500 | "@types/graceful-fs" "^4.1.3" 1501 | "@types/node" "*" 1502 | anymatch "^3.0.3" 1503 | fb-watchman "^2.0.0" 1504 | graceful-fs "^4.2.9" 1505 | jest-regex-util "^28.0.2" 1506 | jest-util "^28.1.3" 1507 | jest-worker "^28.1.3" 1508 | micromatch "^4.0.4" 1509 | walker "^1.0.8" 1510 | optionalDependencies: 1511 | fsevents "^2.3.2" 1512 | 1513 | jest-leak-detector@^28.1.3: 1514 | version "28.1.3" 1515 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz#a6685d9b074be99e3adee816ce84fd30795e654d" 1516 | integrity sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA== 1517 | dependencies: 1518 | jest-get-type "^28.0.2" 1519 | pretty-format "^28.1.3" 1520 | 1521 | jest-matcher-utils@^28.1.3: 1522 | version "28.1.3" 1523 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz#5a77f1c129dd5ba3b4d7fc20728806c78893146e" 1524 | integrity sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw== 1525 | dependencies: 1526 | chalk "^4.0.0" 1527 | jest-diff "^28.1.3" 1528 | jest-get-type "^28.0.2" 1529 | pretty-format "^28.1.3" 1530 | 1531 | jest-message-util@^28.1.3: 1532 | version "28.1.3" 1533 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.3.tgz#232def7f2e333f1eecc90649b5b94b0055e7c43d" 1534 | integrity sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g== 1535 | dependencies: 1536 | "@babel/code-frame" "^7.12.13" 1537 | "@jest/types" "^28.1.3" 1538 | "@types/stack-utils" "^2.0.0" 1539 | chalk "^4.0.0" 1540 | graceful-fs "^4.2.9" 1541 | micromatch "^4.0.4" 1542 | pretty-format "^28.1.3" 1543 | slash "^3.0.0" 1544 | stack-utils "^2.0.3" 1545 | 1546 | jest-mock@^28.1.3: 1547 | version "28.1.3" 1548 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.3.tgz#d4e9b1fc838bea595c77ab73672ebf513ab249da" 1549 | integrity sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA== 1550 | dependencies: 1551 | "@jest/types" "^28.1.3" 1552 | "@types/node" "*" 1553 | 1554 | jest-pnp-resolver@^1.2.2: 1555 | version "1.2.3" 1556 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" 1557 | integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== 1558 | 1559 | jest-regex-util@^28.0.2: 1560 | version "28.0.2" 1561 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" 1562 | integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== 1563 | 1564 | jest-resolve-dependencies@^28.1.3: 1565 | version "28.1.3" 1566 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz#8c65d7583460df7275c6ea2791901fa975c1fe66" 1567 | integrity sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA== 1568 | dependencies: 1569 | jest-regex-util "^28.0.2" 1570 | jest-snapshot "^28.1.3" 1571 | 1572 | jest-resolve@^28.1.3: 1573 | version "28.1.3" 1574 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.3.tgz#cfb36100341ddbb061ec781426b3c31eb51aa0a8" 1575 | integrity sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ== 1576 | dependencies: 1577 | chalk "^4.0.0" 1578 | graceful-fs "^4.2.9" 1579 | jest-haste-map "^28.1.3" 1580 | jest-pnp-resolver "^1.2.2" 1581 | jest-util "^28.1.3" 1582 | jest-validate "^28.1.3" 1583 | resolve "^1.20.0" 1584 | resolve.exports "^1.1.0" 1585 | slash "^3.0.0" 1586 | 1587 | jest-runner@^28.1.3: 1588 | version "28.1.3" 1589 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.3.tgz#5eee25febd730b4713a2cdfd76bdd5557840f9a1" 1590 | integrity sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA== 1591 | dependencies: 1592 | "@jest/console" "^28.1.3" 1593 | "@jest/environment" "^28.1.3" 1594 | "@jest/test-result" "^28.1.3" 1595 | "@jest/transform" "^28.1.3" 1596 | "@jest/types" "^28.1.3" 1597 | "@types/node" "*" 1598 | chalk "^4.0.0" 1599 | emittery "^0.10.2" 1600 | graceful-fs "^4.2.9" 1601 | jest-docblock "^28.1.1" 1602 | jest-environment-node "^28.1.3" 1603 | jest-haste-map "^28.1.3" 1604 | jest-leak-detector "^28.1.3" 1605 | jest-message-util "^28.1.3" 1606 | jest-resolve "^28.1.3" 1607 | jest-runtime "^28.1.3" 1608 | jest-util "^28.1.3" 1609 | jest-watcher "^28.1.3" 1610 | jest-worker "^28.1.3" 1611 | p-limit "^3.1.0" 1612 | source-map-support "0.5.13" 1613 | 1614 | jest-runtime@^28.1.3: 1615 | version "28.1.3" 1616 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.3.tgz#a57643458235aa53e8ec7821949e728960d0605f" 1617 | integrity sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw== 1618 | dependencies: 1619 | "@jest/environment" "^28.1.3" 1620 | "@jest/fake-timers" "^28.1.3" 1621 | "@jest/globals" "^28.1.3" 1622 | "@jest/source-map" "^28.1.2" 1623 | "@jest/test-result" "^28.1.3" 1624 | "@jest/transform" "^28.1.3" 1625 | "@jest/types" "^28.1.3" 1626 | chalk "^4.0.0" 1627 | cjs-module-lexer "^1.0.0" 1628 | collect-v8-coverage "^1.0.0" 1629 | execa "^5.0.0" 1630 | glob "^7.1.3" 1631 | graceful-fs "^4.2.9" 1632 | jest-haste-map "^28.1.3" 1633 | jest-message-util "^28.1.3" 1634 | jest-mock "^28.1.3" 1635 | jest-regex-util "^28.0.2" 1636 | jest-resolve "^28.1.3" 1637 | jest-snapshot "^28.1.3" 1638 | jest-util "^28.1.3" 1639 | slash "^3.0.0" 1640 | strip-bom "^4.0.0" 1641 | 1642 | jest-snapshot@^28.1.3: 1643 | version "28.1.3" 1644 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.3.tgz#17467b3ab8ddb81e2f605db05583d69388fc0668" 1645 | integrity sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg== 1646 | dependencies: 1647 | "@babel/core" "^7.11.6" 1648 | "@babel/generator" "^7.7.2" 1649 | "@babel/plugin-syntax-typescript" "^7.7.2" 1650 | "@babel/traverse" "^7.7.2" 1651 | "@babel/types" "^7.3.3" 1652 | "@jest/expect-utils" "^28.1.3" 1653 | "@jest/transform" "^28.1.3" 1654 | "@jest/types" "^28.1.3" 1655 | "@types/babel__traverse" "^7.0.6" 1656 | "@types/prettier" "^2.1.5" 1657 | babel-preset-current-node-syntax "^1.0.0" 1658 | chalk "^4.0.0" 1659 | expect "^28.1.3" 1660 | graceful-fs "^4.2.9" 1661 | jest-diff "^28.1.3" 1662 | jest-get-type "^28.0.2" 1663 | jest-haste-map "^28.1.3" 1664 | jest-matcher-utils "^28.1.3" 1665 | jest-message-util "^28.1.3" 1666 | jest-util "^28.1.3" 1667 | natural-compare "^1.4.0" 1668 | pretty-format "^28.1.3" 1669 | semver "^7.3.5" 1670 | 1671 | jest-util@^28.1.3: 1672 | version "28.1.3" 1673 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.3.tgz#f4f932aa0074f0679943220ff9cbba7e497028b0" 1674 | integrity sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ== 1675 | dependencies: 1676 | "@jest/types" "^28.1.3" 1677 | "@types/node" "*" 1678 | chalk "^4.0.0" 1679 | ci-info "^3.2.0" 1680 | graceful-fs "^4.2.9" 1681 | picomatch "^2.2.3" 1682 | 1683 | jest-validate@^28.1.3: 1684 | version "28.1.3" 1685 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.3.tgz#e322267fd5e7c64cea4629612c357bbda96229df" 1686 | integrity sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA== 1687 | dependencies: 1688 | "@jest/types" "^28.1.3" 1689 | camelcase "^6.2.0" 1690 | chalk "^4.0.0" 1691 | jest-get-type "^28.0.2" 1692 | leven "^3.1.0" 1693 | pretty-format "^28.1.3" 1694 | 1695 | jest-watcher@^28.1.3: 1696 | version "28.1.3" 1697 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.3.tgz#c6023a59ba2255e3b4c57179fc94164b3e73abd4" 1698 | integrity sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g== 1699 | dependencies: 1700 | "@jest/test-result" "^28.1.3" 1701 | "@jest/types" "^28.1.3" 1702 | "@types/node" "*" 1703 | ansi-escapes "^4.2.1" 1704 | chalk "^4.0.0" 1705 | emittery "^0.10.2" 1706 | jest-util "^28.1.3" 1707 | string-length "^4.0.1" 1708 | 1709 | jest-worker@^28.1.3: 1710 | version "28.1.3" 1711 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98" 1712 | integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== 1713 | dependencies: 1714 | "@types/node" "*" 1715 | merge-stream "^2.0.0" 1716 | supports-color "^8.0.0" 1717 | 1718 | jest@^28.1.3: 1719 | version "28.1.3" 1720 | resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.3.tgz#e9c6a7eecdebe3548ca2b18894a50f45b36dfc6b" 1721 | integrity sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA== 1722 | dependencies: 1723 | "@jest/core" "^28.1.3" 1724 | "@jest/types" "^28.1.3" 1725 | import-local "^3.0.2" 1726 | jest-cli "^28.1.3" 1727 | 1728 | js-tokens@^4.0.0: 1729 | version "4.0.0" 1730 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1731 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1732 | 1733 | js-yaml@^3.13.1: 1734 | version "3.14.1" 1735 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1736 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1737 | dependencies: 1738 | argparse "^1.0.7" 1739 | esprima "^4.0.0" 1740 | 1741 | jsesc@^2.5.1: 1742 | version "2.5.2" 1743 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1744 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1745 | 1746 | json-parse-even-better-errors@^2.3.0: 1747 | version "2.3.1" 1748 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1749 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1750 | 1751 | json5@^2.2.1: 1752 | version "2.2.3" 1753 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1754 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1755 | 1756 | kleur@^3.0.3: 1757 | version "3.0.3" 1758 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 1759 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 1760 | 1761 | lambdafs@^2.0.3: 1762 | version "2.1.1" 1763 | resolved "https://registry.yarnpkg.com/lambdafs/-/lambdafs-2.1.1.tgz#4bf8d3037b6c61bbb4a22ab05c73ee47964c25ed" 1764 | integrity sha512-x5k8JcoJWkWLvCVBzrl4pzvkEHSgSBqFjg3Dpsc4AcTMq7oUMym4cL/gRTZ6VM4mUMY+M0dIbQ+V1c1tsqqanQ== 1765 | dependencies: 1766 | tar-fs "^2.1.1" 1767 | 1768 | leven@^3.1.0: 1769 | version "3.1.0" 1770 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1771 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1772 | 1773 | lines-and-columns@^1.1.6: 1774 | version "1.2.4" 1775 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1776 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1777 | 1778 | locate-path@^5.0.0: 1779 | version "5.0.0" 1780 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1781 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1782 | dependencies: 1783 | p-locate "^4.1.0" 1784 | 1785 | lru-cache@^6.0.0: 1786 | version "6.0.0" 1787 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1788 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1789 | dependencies: 1790 | yallist "^4.0.0" 1791 | 1792 | make-dir@^3.0.0: 1793 | version "3.1.0" 1794 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1795 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1796 | dependencies: 1797 | semver "^6.0.0" 1798 | 1799 | makeerror@1.0.12: 1800 | version "1.0.12" 1801 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 1802 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 1803 | dependencies: 1804 | tmpl "1.0.5" 1805 | 1806 | merge-stream@^2.0.0: 1807 | version "2.0.0" 1808 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1809 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1810 | 1811 | micromatch@^4.0.4: 1812 | version "4.0.5" 1813 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1814 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1815 | dependencies: 1816 | braces "^3.0.2" 1817 | picomatch "^2.3.1" 1818 | 1819 | mimic-fn@^2.1.0: 1820 | version "2.1.0" 1821 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1822 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1823 | 1824 | minimatch@^3.0.4, minimatch@^3.1.1: 1825 | version "3.1.2" 1826 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1827 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1828 | dependencies: 1829 | brace-expansion "^1.1.7" 1830 | 1831 | minimist@^1.2.6: 1832 | version "1.2.7" 1833 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1834 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1835 | 1836 | mkdirp-classic@^0.5.2: 1837 | version "0.5.3" 1838 | resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" 1839 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== 1840 | 1841 | mkdirp@^0.5.1: 1842 | version "0.5.6" 1843 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" 1844 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 1845 | dependencies: 1846 | minimist "^1.2.6" 1847 | 1848 | ms@2.1.2: 1849 | version "2.1.2" 1850 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1851 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1852 | 1853 | natural-compare@^1.4.0: 1854 | version "1.4.0" 1855 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1856 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1857 | 1858 | node-fetch@2.6.1: 1859 | version "2.6.1" 1860 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 1861 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 1862 | 1863 | node-int64@^0.4.0: 1864 | version "0.4.0" 1865 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1866 | integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== 1867 | 1868 | node-releases@^2.0.6: 1869 | version "2.0.6" 1870 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" 1871 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== 1872 | 1873 | normalize-path@^3.0.0: 1874 | version "3.0.0" 1875 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1876 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1877 | 1878 | npm-run-path@^4.0.1: 1879 | version "4.0.1" 1880 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1881 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1882 | dependencies: 1883 | path-key "^3.0.0" 1884 | 1885 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1886 | version "1.4.0" 1887 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1888 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1889 | dependencies: 1890 | wrappy "1" 1891 | 1892 | onetime@^5.1.2: 1893 | version "5.1.2" 1894 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1895 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 1896 | dependencies: 1897 | mimic-fn "^2.1.0" 1898 | 1899 | p-limit@^2.2.0: 1900 | version "2.3.0" 1901 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1902 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1903 | dependencies: 1904 | p-try "^2.0.0" 1905 | 1906 | p-limit@^3.1.0: 1907 | version "3.1.0" 1908 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1909 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1910 | dependencies: 1911 | yocto-queue "^0.1.0" 1912 | 1913 | p-locate@^4.1.0: 1914 | version "4.1.0" 1915 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1916 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1917 | dependencies: 1918 | p-limit "^2.2.0" 1919 | 1920 | p-try@^2.0.0: 1921 | version "2.2.0" 1922 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1923 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1924 | 1925 | parse-json@^5.2.0: 1926 | version "5.2.0" 1927 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1928 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1929 | dependencies: 1930 | "@babel/code-frame" "^7.0.0" 1931 | error-ex "^1.3.1" 1932 | json-parse-even-better-errors "^2.3.0" 1933 | lines-and-columns "^1.1.6" 1934 | 1935 | path-exists@^4.0.0: 1936 | version "4.0.0" 1937 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1938 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1939 | 1940 | path-is-absolute@^1.0.0: 1941 | version "1.0.1" 1942 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1943 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1944 | 1945 | path-key@^3.0.0, path-key@^3.1.0: 1946 | version "3.1.1" 1947 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1948 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1949 | 1950 | path-parse@^1.0.7: 1951 | version "1.0.7" 1952 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1953 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1954 | 1955 | pend@~1.2.0: 1956 | version "1.2.0" 1957 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1958 | integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== 1959 | 1960 | picocolors@^1.0.0: 1961 | version "1.0.0" 1962 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1963 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1964 | 1965 | picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: 1966 | version "2.3.1" 1967 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1968 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1969 | 1970 | pirates@^4.0.4: 1971 | version "4.0.5" 1972 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" 1973 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 1974 | 1975 | pkg-dir@4.2.0, pkg-dir@^4.2.0: 1976 | version "4.2.0" 1977 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 1978 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 1979 | dependencies: 1980 | find-up "^4.0.0" 1981 | 1982 | pretty-format@^28.0.0, pretty-format@^28.1.3: 1983 | version "28.1.3" 1984 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.3.tgz#c9fba8cedf99ce50963a11b27d982a9ae90970d5" 1985 | integrity sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q== 1986 | dependencies: 1987 | "@jest/schemas" "^28.1.3" 1988 | ansi-regex "^5.0.1" 1989 | ansi-styles "^5.0.0" 1990 | react-is "^18.0.0" 1991 | 1992 | progress@2.0.1: 1993 | version "2.0.1" 1994 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.1.tgz#c9242169342b1c29d275889c95734621b1952e31" 1995 | integrity sha512-OE+a6vzqazc+K6LxJrX5UPyKFvGnL5CYmq2jFGNIBWHpc4QyE49/YOumcrpQFJpfejmvRtbJzgO1zPmMCqlbBg== 1996 | 1997 | prompts@^2.0.1: 1998 | version "2.4.2" 1999 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2000 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2001 | dependencies: 2002 | kleur "^3.0.3" 2003 | sisteransi "^1.0.5" 2004 | 2005 | proxy-from-env@1.1.0: 2006 | version "1.1.0" 2007 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" 2008 | integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== 2009 | 2010 | pump@^3.0.0: 2011 | version "3.0.0" 2012 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2013 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2014 | dependencies: 2015 | end-of-stream "^1.1.0" 2016 | once "^1.3.1" 2017 | 2018 | puppeteer-core@^10.1.0: 2019 | version "10.4.0" 2020 | resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-10.4.0.tgz#4e2da57c52339b8c07cd9362922020eb3c3c95bf" 2021 | integrity sha512-KU8zyb7AIOqNjLCN3wkrFXxh+EVaG+zrs2P03ATNjc3iwSxHsu5/EvZiREpQ/IJiT9xfQbDVgKcsvRuzLCxglQ== 2022 | dependencies: 2023 | debug "4.3.1" 2024 | devtools-protocol "0.0.901419" 2025 | extract-zip "2.0.1" 2026 | https-proxy-agent "5.0.0" 2027 | node-fetch "2.6.1" 2028 | pkg-dir "4.2.0" 2029 | progress "2.0.1" 2030 | proxy-from-env "1.1.0" 2031 | rimraf "3.0.2" 2032 | tar-fs "2.0.0" 2033 | unbzip2-stream "1.3.3" 2034 | ws "7.4.6" 2035 | 2036 | react-is@^18.0.0: 2037 | version "18.2.0" 2038 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" 2039 | integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== 2040 | 2041 | readable-stream@^3.1.1, readable-stream@^3.4.0: 2042 | version "3.6.0" 2043 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 2044 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 2045 | dependencies: 2046 | inherits "^2.0.3" 2047 | string_decoder "^1.1.1" 2048 | util-deprecate "^1.0.1" 2049 | 2050 | require-directory@^2.1.1: 2051 | version "2.1.1" 2052 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2053 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 2054 | 2055 | resolve-cwd@^3.0.0: 2056 | version "3.0.0" 2057 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2058 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2059 | dependencies: 2060 | resolve-from "^5.0.0" 2061 | 2062 | resolve-from@^5.0.0: 2063 | version "5.0.0" 2064 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2065 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2066 | 2067 | resolve.exports@^1.1.0: 2068 | version "1.1.0" 2069 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" 2070 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== 2071 | 2072 | resolve@^1.20.0: 2073 | version "1.22.1" 2074 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 2075 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2076 | dependencies: 2077 | is-core-module "^2.9.0" 2078 | path-parse "^1.0.7" 2079 | supports-preserve-symlinks-flag "^1.0.0" 2080 | 2081 | rimraf@3.0.2, rimraf@^3.0.0: 2082 | version "3.0.2" 2083 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2084 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2085 | dependencies: 2086 | glob "^7.1.3" 2087 | 2088 | safe-buffer@~5.2.0: 2089 | version "5.2.1" 2090 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2091 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2092 | 2093 | semver@^6.0.0, semver@^6.3.0: 2094 | version "6.3.0" 2095 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2096 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2097 | 2098 | semver@^7.3.5: 2099 | version "7.3.8" 2100 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 2101 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 2102 | dependencies: 2103 | lru-cache "^6.0.0" 2104 | 2105 | shebang-command@^2.0.0: 2106 | version "2.0.0" 2107 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2108 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2109 | dependencies: 2110 | shebang-regex "^3.0.0" 2111 | 2112 | shebang-regex@^3.0.0: 2113 | version "3.0.0" 2114 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2115 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2116 | 2117 | signal-exit@^3.0.3, signal-exit@^3.0.7: 2118 | version "3.0.7" 2119 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2120 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2121 | 2122 | sisteransi@^1.0.5: 2123 | version "1.0.5" 2124 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 2125 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2126 | 2127 | slash@^3.0.0: 2128 | version "3.0.0" 2129 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2130 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2131 | 2132 | source-map-support@0.5.13: 2133 | version "0.5.13" 2134 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2135 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2136 | dependencies: 2137 | buffer-from "^1.0.0" 2138 | source-map "^0.6.0" 2139 | 2140 | source-map@^0.6.0, source-map@^0.6.1: 2141 | version "0.6.1" 2142 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2143 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2144 | 2145 | sprintf-js@~1.0.2: 2146 | version "1.0.3" 2147 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2148 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 2149 | 2150 | stack-utils@^2.0.3: 2151 | version "2.0.6" 2152 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" 2153 | integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== 2154 | dependencies: 2155 | escape-string-regexp "^2.0.0" 2156 | 2157 | string-length@^4.0.1: 2158 | version "4.0.2" 2159 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2160 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2161 | dependencies: 2162 | char-regex "^1.0.2" 2163 | strip-ansi "^6.0.0" 2164 | 2165 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2166 | version "4.2.3" 2167 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2168 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2169 | dependencies: 2170 | emoji-regex "^8.0.0" 2171 | is-fullwidth-code-point "^3.0.0" 2172 | strip-ansi "^6.0.1" 2173 | 2174 | string_decoder@^1.1.1: 2175 | version "1.3.0" 2176 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2177 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2178 | dependencies: 2179 | safe-buffer "~5.2.0" 2180 | 2181 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2182 | version "6.0.1" 2183 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2184 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2185 | dependencies: 2186 | ansi-regex "^5.0.1" 2187 | 2188 | strip-bom@^4.0.0: 2189 | version "4.0.0" 2190 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 2191 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 2192 | 2193 | strip-final-newline@^2.0.0: 2194 | version "2.0.0" 2195 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2196 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2197 | 2198 | strip-json-comments@^3.1.1: 2199 | version "3.1.1" 2200 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2201 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2202 | 2203 | supports-color@^5.3.0: 2204 | version "5.5.0" 2205 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2206 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2207 | dependencies: 2208 | has-flag "^3.0.0" 2209 | 2210 | supports-color@^7.0.0, supports-color@^7.1.0: 2211 | version "7.2.0" 2212 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2213 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2214 | dependencies: 2215 | has-flag "^4.0.0" 2216 | 2217 | supports-color@^8.0.0: 2218 | version "8.1.1" 2219 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2220 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2221 | dependencies: 2222 | has-flag "^4.0.0" 2223 | 2224 | supports-hyperlinks@^2.0.0: 2225 | version "2.3.0" 2226 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" 2227 | integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== 2228 | dependencies: 2229 | has-flag "^4.0.0" 2230 | supports-color "^7.0.0" 2231 | 2232 | supports-preserve-symlinks-flag@^1.0.0: 2233 | version "1.0.0" 2234 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2235 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2236 | 2237 | tar-fs@2.0.0: 2238 | version "2.0.0" 2239 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.0.0.tgz#677700fc0c8b337a78bee3623fdc235f21d7afad" 2240 | integrity sha512-vaY0obB6Om/fso8a8vakQBzwholQ7v5+uy+tF3Ozvxv1KNezmVQAiWtcNmMHFSFPqL3dJA8ha6gdtFbfX9mcxA== 2241 | dependencies: 2242 | chownr "^1.1.1" 2243 | mkdirp "^0.5.1" 2244 | pump "^3.0.0" 2245 | tar-stream "^2.0.0" 2246 | 2247 | tar-fs@^2.1.1: 2248 | version "2.1.1" 2249 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" 2250 | integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== 2251 | dependencies: 2252 | chownr "^1.1.1" 2253 | mkdirp-classic "^0.5.2" 2254 | pump "^3.0.0" 2255 | tar-stream "^2.1.4" 2256 | 2257 | tar-stream@^2.0.0, tar-stream@^2.1.4: 2258 | version "2.2.0" 2259 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 2260 | integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== 2261 | dependencies: 2262 | bl "^4.0.3" 2263 | end-of-stream "^1.4.1" 2264 | fs-constants "^1.0.0" 2265 | inherits "^2.0.3" 2266 | readable-stream "^3.1.1" 2267 | 2268 | terminal-link@^2.0.0: 2269 | version "2.1.1" 2270 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 2271 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 2272 | dependencies: 2273 | ansi-escapes "^4.2.1" 2274 | supports-hyperlinks "^2.0.0" 2275 | 2276 | test-exclude@^6.0.0: 2277 | version "6.0.0" 2278 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 2279 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 2280 | dependencies: 2281 | "@istanbuljs/schema" "^0.1.2" 2282 | glob "^7.1.4" 2283 | minimatch "^3.0.4" 2284 | 2285 | through@^2.3.8: 2286 | version "2.3.8" 2287 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2288 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== 2289 | 2290 | tmpl@1.0.5: 2291 | version "1.0.5" 2292 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 2293 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 2294 | 2295 | to-fast-properties@^2.0.0: 2296 | version "2.0.0" 2297 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2298 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2299 | 2300 | to-regex-range@^5.0.1: 2301 | version "5.0.1" 2302 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2303 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2304 | dependencies: 2305 | is-number "^7.0.0" 2306 | 2307 | type-detect@4.0.8: 2308 | version "4.0.8" 2309 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2310 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2311 | 2312 | type-fest@^0.21.3: 2313 | version "0.21.3" 2314 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2315 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2316 | 2317 | unbzip2-stream@1.3.3: 2318 | version "1.3.3" 2319 | resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.3.3.tgz#d156d205e670d8d8c393e1c02ebd506422873f6a" 2320 | integrity sha512-fUlAF7U9Ah1Q6EieQ4x4zLNejrRvDWUYmxXUpN3uziFYCHapjWFaCAnreY9bGgxzaMCFAPPpYNng57CypwJVhg== 2321 | dependencies: 2322 | buffer "^5.2.1" 2323 | through "^2.3.8" 2324 | 2325 | update-browserslist-db@^1.0.9: 2326 | version "1.0.10" 2327 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" 2328 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 2329 | dependencies: 2330 | escalade "^3.1.1" 2331 | picocolors "^1.0.0" 2332 | 2333 | util-deprecate@^1.0.1: 2334 | version "1.0.2" 2335 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2336 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2337 | 2338 | v8-to-istanbul@^9.0.1: 2339 | version "9.0.1" 2340 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz#b6f994b0b5d4ef255e17a0d17dc444a9f5132fa4" 2341 | integrity sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w== 2342 | dependencies: 2343 | "@jridgewell/trace-mapping" "^0.3.12" 2344 | "@types/istanbul-lib-coverage" "^2.0.1" 2345 | convert-source-map "^1.6.0" 2346 | 2347 | walker@^1.0.8: 2348 | version "1.0.8" 2349 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 2350 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 2351 | dependencies: 2352 | makeerror "1.0.12" 2353 | 2354 | which@^2.0.1: 2355 | version "2.0.2" 2356 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2357 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2358 | dependencies: 2359 | isexe "^2.0.0" 2360 | 2361 | wrap-ansi@^7.0.0: 2362 | version "7.0.0" 2363 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2364 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2365 | dependencies: 2366 | ansi-styles "^4.0.0" 2367 | string-width "^4.1.0" 2368 | strip-ansi "^6.0.0" 2369 | 2370 | wrappy@1: 2371 | version "1.0.2" 2372 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2373 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2374 | 2375 | write-file-atomic@^4.0.1: 2376 | version "4.0.2" 2377 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" 2378 | integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== 2379 | dependencies: 2380 | imurmurhash "^0.1.4" 2381 | signal-exit "^3.0.7" 2382 | 2383 | ws@7.4.6: 2384 | version "7.4.6" 2385 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 2386 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 2387 | 2388 | y18n@^5.0.5: 2389 | version "5.0.8" 2390 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2391 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2392 | 2393 | yallist@^4.0.0: 2394 | version "4.0.0" 2395 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2396 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2397 | 2398 | yargs-parser@^21.1.1: 2399 | version "21.1.1" 2400 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 2401 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 2402 | 2403 | yargs@^17.3.1: 2404 | version "17.6.2" 2405 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541" 2406 | integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw== 2407 | dependencies: 2408 | cliui "^8.0.1" 2409 | escalade "^3.1.1" 2410 | get-caller-file "^2.0.5" 2411 | require-directory "^2.1.1" 2412 | string-width "^4.2.3" 2413 | y18n "^5.0.5" 2414 | yargs-parser "^21.1.1" 2415 | 2416 | yauzl@^2.10.0: 2417 | version "2.10.0" 2418 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 2419 | integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== 2420 | dependencies: 2421 | buffer-crc32 "~0.2.3" 2422 | fd-slicer "~1.1.0" 2423 | 2424 | yocto-queue@^0.1.0: 2425 | version "0.1.0" 2426 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2427 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2428 | --------------------------------------------------------------------------------