├── .prettierignore
├── .prettierrc.json
├── mise.toml
├── .gitignore
├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
└── workflows
│ ├── tests.yml
│ └── publish.yml
├── .npmignore
├── CONTRIBUTING.md
├── jest.config.js
├── bump-version.sh
├── tsconfig.json
├── __tests__
├── __snapshots__
│ └── index.spec.ts.snap
└── index.spec.ts
├── LICENSE
├── package.json
├── constants.ts
├── README.md
├── index.ts
└── yarn.lock
/.prettierignore:
--------------------------------------------------------------------------------
1 | build
--------------------------------------------------------------------------------
/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/mise.toml:
--------------------------------------------------------------------------------
1 | [tools]
2 | node = "24"
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | .vscode/
3 | build/
4 | .DS_Store
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [ospfranco]
4 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | .github
2 | __tests__
3 | .vscode
4 | .eslintrc.js
5 | index.ts
6 | jest.config.js
7 | LICENSE
8 | README.md
9 | tsconfig.json
10 | typings.d.ts
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | If you add new functionality please make sure you add the appropiate tests and the tests are running.
2 |
3 | Please also try to keep the style consistant, linter use is a must.
4 |
--------------------------------------------------------------------------------
/jest.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | preset: `ts-jest`,
3 | testEnvironment: `node`,
4 | globals: { "ts-jest": { diagnostics: false } },
5 | testPathIgnorePatterns: ["/build/"],
6 | };
7 |
--------------------------------------------------------------------------------
/bump-version.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | set -ex
4 |
5 | npm --no-git-tag-version version patch
6 |
7 | git add .
8 |
9 | git commit -m "Bump version"
10 |
11 | # git tag $PACKAGE_VERSION
12 |
13 | git push
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "outDir": "build",
4 | "allowSyntheticDefaultImports": true,
5 | "esModuleInterop": true,
6 | "moduleResolution": "node",
7 | "declaration": true,
8 | "target": "es5",
9 | "skipLibCheck": true,
10 | "strict": true,
11 | "resolveJsonModule": true
12 | },
13 | "exclude": ["node_modules", "build"]
14 | }
15 |
--------------------------------------------------------------------------------
/__tests__/__snapshots__/index.spec.ts.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`#getLinkPreview() no link in text should fail gracefully 1`] = `"link-preview-js did not receive a valid a url or text"`;
4 |
5 | exports[`#getLinkPreview() should handle empty strings gracefully 1`] = `"link-preview-js did not receive a valid url or text"`;
6 |
7 | exports[`#getLinkPreview() should handle malformed urls gracefully 1`] = `"link-preview-js did not receive a valid a url or text"`;
8 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/.github/workflows/tests.yml:
--------------------------------------------------------------------------------
1 | name: Tests
2 | on: pull_request
3 |
4 | jobs:
5 | tests:
6 | runs-on: ubuntu-latest
7 |
8 | steps:
9 | - name: Checkout
10 | uses: actions/checkout@v4
11 |
12 | - name: Cache dependencies
13 | id: yarn-cache
14 | uses: actions/cache@v3
15 | with:
16 | path: |
17 | **/node_modules
18 | .yarn/install-state.gz
19 | key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
20 | restore-keys: |
21 | ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
22 | ${{ runner.os }}-yarn-
23 |
24 | - name: Install dependencies
25 | run: yarn
26 |
27 | - name: Run tests
28 | run: yarn test
29 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Desktop (please complete the following information):**
27 | - OS: [e.g. iOS]
28 | - Browser [e.g. chrome, safari]
29 | - Version [e.g. 22]
30 |
31 | **Smartphone (please complete the following information):**
32 | - Device: [e.g. iPhone6]
33 | - OS: [e.g. iOS8.1]
34 | - Browser [e.g. stock browser, safari]
35 | - Version [e.g. 22]
36 |
37 | **Additional context**
38 | Add any other context about the problem here.
39 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Oscar Franco
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "link-preview-js",
3 | "version": "3.0.6",
4 | "description": "Javascript module to extract and fetch HTTP link information from blocks of text.",
5 | "main": "build/index.js",
6 | "exports": {
7 | ".": {
8 | "require": "./build/index.js",
9 | "import": "./build/index.js"
10 | },
11 | "./package.json": "./package.json"
12 | },
13 | "types": "build/index.d.ts",
14 | "scripts": {
15 | "test": "jest",
16 | "test:ci": "jest --testLocationInResults --ci --outputFile=test_results.json --json",
17 | "build": "tsc",
18 | "bump": "./bump-version.sh",
19 | "prepublishOnly": "tsc"
20 | },
21 | "keywords": [
22 | "javascript",
23 | "link",
24 | "url",
25 | "http",
26 | "preview"
27 | ],
28 | "author": "Oscar Franco",
29 | "email": "ospfranco@protonmail.com",
30 | "license": "MIT",
31 | "repository": "https://github.com/ospfranco/link-preview-js",
32 | "dependencies": {
33 | "cheerio": "1.0.0-rc.11"
34 | },
35 | "files": [
36 | "build"
37 | ],
38 | "devDependencies": {
39 | "@skypack/package-check": "^0.2.2",
40 | "@types/cheerio": "0.22.24",
41 | "@types/jest": "^28.1.4",
42 | "jest": "^28.1.2",
43 | "prettier": "2.7.1",
44 | "ts-jest": "^28.0.5",
45 | "typescript": "^4.7.4"
46 | },
47 | "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
48 | "engines": {
49 | "node": ">=18"
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/.github/workflows/publish.yml:
--------------------------------------------------------------------------------
1 | name: "publish"
2 |
3 | on:
4 | push:
5 | tags:
6 | - "*"
7 |
8 | jobs:
9 | publish:
10 | permissions:
11 | contents: write
12 | runs-on: ubuntu-latest
13 | steps:
14 | - uses: actions/checkout@v4
15 | - uses: actions/setup-node@v4
16 | with:
17 | node-version: "22"
18 |
19 | - name: Cache dependencies
20 | id: yarn-cache
21 | uses: actions/cache@v3
22 | with:
23 | path: |
24 | **/node_modules
25 | .yarn/install-state.gz
26 | key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
27 | restore-keys: |
28 | ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
29 | ${{ runner.os }}-yarn-
30 | - run: yarn install
31 | - name: Update package.json version
32 | run: |
33 | TAG=${GITHUB_REF#refs/tags/}
34 | jq --arg version "$TAG" '.version = $version' package.json > tmp.$$.json && mv tmp.$$.json package.json
35 | - name: Compile typescript
36 | run: yarn build
37 | - uses: JS-DevTools/npm-publish@v3
38 | with:
39 | token: ${{ secrets.NPM_TOKEN }}
40 |
41 | - name: Create a Release
42 | uses: elgohr/Github-Release-Action@v5
43 | env:
44 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45 | with:
46 | title: Release ${{ github.ref_name }}
47 | tag: ${{ github.ref_name }}
48 |
--------------------------------------------------------------------------------
/constants.ts:
--------------------------------------------------------------------------------
1 | export const CONSTANTS = {
2 | REGEX_VALID_URL: new RegExp(
3 | "^" +
4 | // protocol identifier
5 | "(?:(?:https?|ftp)://)" +
6 | // user:pass authentication
7 | "(?:\\S+(?::\\S*)?@)?" +
8 | "(?:" +
9 | // IP address exclusion
10 | // private & local networks
11 | "(?!(?:10|127)(?:\\.\\d{1,3}){3})" +
12 | "(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})" +
13 | "(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})" +
14 | // IP address dotted notation octets
15 | // excludes loopback network 0.0.0.0
16 | // excludes reserved space >= 224.0.0.0
17 | // excludes network & broacast addresses
18 | // (first & last IP address of each class)
19 | "(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])" +
20 | "(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}" +
21 | "(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))" +
22 | "|" +
23 | // host name
24 | "(?:(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)" +
25 | // domain name
26 | "(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*" +
27 | // TLD identifier
28 | "(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))" +
29 | // TLD may end with dot
30 | "\\.?" +
31 | ")" +
32 | // port number
33 | "(?::\\d{2,5})?" +
34 | // resource path
35 | "(?:[/?#]\\S*)?" +
36 | "$",
37 | "i"
38 | ),
39 |
40 | REGEX_LOOPBACK: new RegExp(
41 | "^" +
42 | // Loopback: 127.0.0.0 - 127.255.255.255
43 | "(?:127(?:\\.\\d{1,3}){3})" +
44 | "|" +
45 | // Private Class A: 10.0.0.0 - 10.255.255.255
46 | "(?:10(?:\\.\\d{1,3}){3})" +
47 | "|" +
48 | // Private Class B: 172.16.0.0 - 172.31.255.255
49 | "(?:172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})" +
50 | "|" +
51 | // Private Class C: 192.168.0.0 - 192.168.255.255
52 | "(?:192\\.168(?:\\.\\d{1,3}){2})" +
53 | "|" +
54 | // Link-local: 169.254.0.0 - 169.254.255.255
55 | "(?:169\\.254(?:\\.\\d{1,3}){2})" +
56 | "|" +
57 | // Documentation: 192.0.2.0/24, 198.51.100.0/24, 203.0.113.0/24
58 | "(?:192\\.0\\.2(?:\\.\\d{1,3}){1})" +
59 | "|" +
60 | "(?:198\\.51\\.100(?:\\.\\d{1,3}){1})" +
61 | "|" +
62 | "(?:203\\.0\\.113(?:\\.\\d{1,3}){1})" +
63 | "|" +
64 | // Carrier-Grade NAT (CGNAT): 100.64.0.0 - 100.127.255.255
65 | "(?:100\\.(?:6[4-9]|[7-9]\\d|1[0-1]\\d)(?:\\.\\d{1,3}){2})" +
66 | "$",
67 | "i"
68 | ),
69 |
70 | REGEX_CONTENT_TYPE_IMAGE: new RegExp("image/.*", "i"),
71 |
72 | REGEX_CONTENT_TYPE_AUDIO: new RegExp("audio/.*", "i"),
73 |
74 | REGEX_CONTENT_TYPE_VIDEO: new RegExp("video/.*", "i"),
75 |
76 | REGEX_CONTENT_TYPE_TEXT: new RegExp("text/.*", "i"),
77 |
78 | REGEX_CONTENT_TYPE_APPLICATION: new RegExp("application/.*", "i"),
79 | };
80 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Link Preview JS
2 |
3 |
18 |
19 | **Before creating an issue**
20 |
21 | It's more than likely there is nothing wrong with the library:
22 |
23 | - It's very simple; fetch HTML, parse HTML, and search for OpenGraph HTML tags.
24 | - Unless HTML or the OpenGraph standard change, the library will not break
25 | - If the target website you are trying to preview redirects you to a login page **the preview will fail**, because it will parse the login page
26 | - If the target website does not have OpenGraph tags **the preview will most likely fail**, there are some fallbacks but in general, it will not work
27 | - **You cannot preview (fetch) another web page from YOUR web page. This is an intentional security feature of browsers called CORS**
28 |
29 | DO NOT FETCH CONTENT DIRECTLY FROM A USERS DEVICE. ONLY RUN THIS IN YOUR SERVER AND SANDBOX IT IF YOU CAN
30 | Browsers block this via cors, but you might be clever like a fox and run this in React Native. This is a bad idea, you are exposing the device user to potentially malicious links
31 |
32 | If you use this library and find it useful please consider [sponsoring me](https://github.com/sponsors/ospfranco), open source takes a lot of time and effort.
33 |
34 | # Link Preview
35 |
36 | Allows you to extract information from an HTTP URL/link (or parse an HTML string) and retrieve meta information such as title, description, images, videos, etc. via **OpenGraph** tags.
37 |
38 | ## Discord
39 |
40 | Join the Discord
41 |
42 | https://discord.gg/W9XmqCQCKP
43 |
44 | ## GOTCHAs
45 |
46 | - You cannot request a different domain from your web app (Browsers block cross-origin-requests). If you don't know how _same-origin-policy_ works, [here is a good intro](https://dev.to/lydiahallie/cs-visualized-cors-5b8h), therefore **this library works on Node.js and certain mobile run-times (Cordova or React-Native)**.
47 | - **This library acts as if the user would visit the page, sites might re-direct you to sign-up pages, consent screens, etc.** You can try to change the user-agent header (try with `google-bot` or with `Twitterbot`), but you need to work around these issues yourself.
48 |
49 | ## API
50 |
51 | `getLinkPreview`: you have to pass a string, doesn't matter if it is just a URL or a piece of text that contains a URL, the library will take care of parsing it and returning the info o the first valid HTTP(S) URL info it finds.
52 |
53 | `getPreviewFromContent`: useful for passing a pre-fetched Response object from an existing async/etc. call. Refer to the example below for required object values.
54 |
55 | ```typescript
56 | import { getLinkPreview, getPreviewFromContent } from "link-preview-js";
57 |
58 | // pass the link directly
59 | getLinkPreview("https://www.youtube.com/watch?v=MejbOFk7H6c").then((data) =>
60 | console.debug(data)
61 | );
62 |
63 | ////////////////////////// OR //////////////////////////
64 |
65 | // pass a chunk of text
66 | getLinkPreview(
67 | "This is a text supposed to be parsed and the first link displayed https://www.youtube.com/watch?v=MejbOFk7H6c"
68 | ).then((data) => console.debug(data));
69 |
70 | ////////////////////////// OR //////////////////////////
71 |
72 | // pass a pre-fetched response object
73 | // The passed response object should include, at minimum:
74 | // {
75 | // data: '...', // response content
76 | // headers: {
77 | // ...
78 | // // should include content-type
79 | // content-type: "text/html; charset=ISO-8859-1",
80 | // ...
81 | // },
82 | // url: 'https://domain.com/' // resolved url
83 | // }
84 | yourAjaxCall(url, (response) => {
85 | getPreviewFromContent(response).then((data) => console.debug(data));
86 | });
87 | ```
88 |
89 | ## Options
90 |
91 | Additionally, you can pass an options object which should add more functionality to the parsing of the link
92 |
93 | | Property Name | Result |
94 | | -------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
95 | | imagesPropertyType (**optional**) (ex: 'og') | Fetches images only with the specified property, `meta[property='${imagesPropertyType}:image']` |
96 | | headers (**optional**) (ex: { 'user-agent': 'googlebot', 'Accept-Language': 'en-US' }) | Add request headers to fetch call |
97 | | timeout (**optional**) (ex: 1000) | Timeout for the request to fail |
98 | | followRedirects (**optional**) (default 'error') | For security reasons, the library does not automatically follow redirects ('error' value), a malicious agent can exploit redirects to steal data, posible values: ('error', 'follow', 'manual') |
99 | | handleRedirects (**optional**) (with followRedirects 'manual') | When followRedirects is set to 'manual' you need to pass a function that validates if the redirectinon is secure, below you can find an example |
100 | | resolveDNSHost (**optional**) | Function that resolves the final address of the detected/parsed URL to prevent SSRF attacks |
101 | | onResponse (**optional**) | Function that handles the response object to allow for managing special cases |
102 |
103 | ```javascript
104 | getLinkPreview("https://www.youtube.com/watch?v=MejbOFk7H6c", {
105 | imagesPropertyType: "og", // fetches only open-graph images
106 | headers: {
107 | "user-agent": "googlebot", // fetches with googlebot crawler user agent
108 | "Accept-Language": "fr-CA", // fetches site for French language
109 | // ...other optional HTTP request headers
110 | },
111 | timeout: 1000,
112 | }).then((data) => console.debug(data));
113 | ```
114 |
115 | ## SSRF Concerns
116 |
117 | Doing requests on behalf of your users or using user-provided URLs is dangerous. One of such attack is trying to fetch a domain that redirects to localhost so the users get the contents of your server (doesn't affect mobile runtimes). To mitigate this attack you can use the resolveDNSHost option:
118 |
119 | ```ts
120 | // example how to use node's dns resolver
121 | const dns = require("node:dns");
122 | getLinkPreview("http://maliciousLocalHostRedirection.com", {
123 | resolveDNSHost: async (url: string) => {
124 | return new Promise((resolve, reject) => {
125 | const hostname = new URL(url).hostname;
126 | dns.lookup(hostname, (err, address, family) => {
127 | if (err) {
128 | reject(err);
129 | return;
130 | }
131 |
132 | resolve(address); // if address resolves to localhost or '127.0.0.1' library will throw an error
133 | });
134 | });
135 | },
136 | }).catch((e) => {
137 | // will throw a detected redirection to localhost
138 | });
139 | ```
140 |
141 | This might add some latency to your request but prevents loopback attacks.
142 |
143 | ## Redirections
144 |
145 | Same to SSRF, following redirections is dangerous, the library errors by default when the response tries to redirect the user. There are however some simple redirections that are valid (e.g. HTTP to HTTPS) and you might want to allow them, you can do it via:
146 |
147 | ```ts
148 | await getLinkPreview(`http://google.com/`, {
149 | followRedirects: `manual`,
150 | handleRedirects: (baseURL: string, forwardedURL: string) => {
151 | const urlObj = new URL(baseURL);
152 | const forwardedURLObj = new URL(forwardedURL);
153 | if (
154 | forwardedURLObj.hostname === urlObj.hostname ||
155 | forwardedURLObj.hostname === "www." + urlObj.hostname ||
156 | "www." + forwardedURLObj.hostname === urlObj.hostname
157 | ) {
158 | return true;
159 | } else {
160 | return false;
161 | }
162 | },
163 | });
164 | ```
165 |
166 | ## onResponse
167 |
168 | In some cases the website might be missing OpenGraph tags and you might want to provide your own custom logic to try to parse data. For example, if the library is unable to detect a description, you might want to use the text value of the first paragraph instead. This callback gives you access to the Cheerio (the library internally used to parse the HTML) instance, as well as the URL object so you could handle cases on a site-by-site basis, if you need to. This callback must return the modified response object
169 |
170 | ```javascript
171 | await getLinkPreview(`https://example.com/`, {
172 | onResponse: (response, doc, URL) => {
173 | if (URL.hostname == 'example.com') {
174 | response.siteName = 'Example Website';
175 | }
176 |
177 | if (!response.description) {
178 | response.description = doc('p').first().text();
179 | }
180 |
181 | return response;
182 | },
183 | });
184 | ```
185 |
186 | ## Response
187 |
188 | Returns a Promise that resolves with an object describing the provided link.
189 | The info object returned varies depending on the content type (MIME type) returned
190 | in the HTTP response (see below for variations of response). Rejects with an error if the response can not be parsed or if there was no URL in the text provided.
191 |
192 | ### Text/HTML URL
193 |
194 | ```javascript
195 | {
196 | url: "https://www.youtube.com/watch?v=MejbOFk7H6c",
197 | title: "OK Go - Needing/Getting - Official Video - YouTube",
198 | siteName: "YouTube",
199 | description: "Buy the video on iTunes: https://itunes.apple.com/us/album/needing-getting-bundle-ep/id508124847 See more about the guitars at: http://www.gretschguitars.com...",
200 | images: ["https://i.ytimg.com/vi/MejbOFk7H6c/maxresdefault.jpg"],
201 | mediaType: "video.other",
202 | contentType: "text/html",
203 | charset: "utf-8"
204 | videos: [],
205 | favicons:["https://www.youtube.com/yts/img/favicon_32-vflOogEID.png","https://www.youtube.com/yts/img/favicon_48-vflVjB_Qk.png","https://www.youtube.com/yts/img/favicon_96-vflW9Ec0w.png","https://www.youtube.com/yts/img/favicon_144-vfliLAfaB.png","https://s.ytimg.com/yts/img/favicon-vfl8qSV2F.ico"]
206 | }
207 | ```
208 |
209 | ### Image URL
210 |
211 | ```javascript
212 | {
213 | url: "https://media.npr.org/assets/img/2018/04/27/gettyimages-656523922nunes-4bb9a194ab2986834622983bb2f8fe57728a9e5f-s1100-c15.jpg",
214 | mediaType: "image",
215 | contentType: "image/jpeg",
216 | favicons: [ "https://media.npr.org/favicon.ico" ]
217 | }
218 | ```
219 |
220 | ### Audio URL
221 |
222 | ```javascript
223 | {
224 | url: "https://ondemand.npr.org/anon.npr-mp3/npr/atc/2007/12/20071231_atc_13.mp3",
225 | mediaType: "audio",
226 | contentType: "audio/mpeg",
227 | favicons: [ "https://ondemand.npr.org/favicon.ico" ]
228 | }
229 | ```
230 |
231 | ### Video URL
232 |
233 | ```javascript
234 | {
235 | url: "https://www.w3schools.com/html/mov_bbb.mp4",
236 | mediaType: "video",
237 | contentType: "video/mp4",
238 | favicons: [ "https://www.w3schools.com/favicon.ico" ]
239 | }
240 | ```
241 |
242 | ### Application URL
243 |
244 | ```javascript
245 | {
246 | url: "https://assets.curtmfg.com/masterlibrary/56282/installsheet/CME_56282_INS.pdf",
247 | mediaType: "application",
248 | contentType: "application/pdf",
249 | favicons: [ "https://assets.curtmfg.com/favicon.ico" ]
250 | }
251 | ```
252 |
253 | ## License
254 |
255 | MIT license
256 |
--------------------------------------------------------------------------------
/__tests__/index.spec.ts:
--------------------------------------------------------------------------------
1 | import { getLinkPreview, getPreviewFromContent } from "../index";
2 | import prefetchedResponse from "./sampleResponse.json";
3 |
4 | describe(`#getLinkPreview()`, () => {
5 | it(`should extract link info from just URL`, async () => {
6 | const linkInfo: any = await getLinkPreview(
7 | `https://www.youtube.com/watch?v=wuClZjOdT30`,
8 | { headers: { "Accept-Language": `en-US` } }
9 | );
10 |
11 | expect(linkInfo.url).toEqual(`https://www.youtube.com/watch?v=wuClZjOdT30`);
12 | expect(linkInfo.siteName).toEqual(`YouTube`);
13 | expect(linkInfo.title).toEqual(`Geography Now! Germany`);
14 | expect(linkInfo.description).toBeTruthy();
15 | expect(linkInfo.mediaType).toEqual(`video.other`);
16 | expect(linkInfo.images.length).toEqual(1);
17 | expect(linkInfo.images[0]).toEqual(
18 | `https://i.ytimg.com/vi/wuClZjOdT30/maxresdefault.jpg`
19 | );
20 | expect(linkInfo.videos.length).toEqual(0);
21 | expect(linkInfo.favicons[0]).not.toBe(``);
22 | expect(linkInfo.contentType.toLowerCase()).toEqual(`text/html`);
23 | expect(linkInfo.charset?.toLowerCase()).toEqual(`utf-8`);
24 | });
25 |
26 | it("returns charset of website", async () => {
27 | const linkInfo: any = await getLinkPreview(`https://www.pravda.com.ua`);
28 |
29 | expect(linkInfo.url).toEqual(`https://www.pravda.com.ua/`);
30 | expect(linkInfo.contentType.toLowerCase()).toEqual(`text/html`);
31 | expect(linkInfo.charset?.toLowerCase()).toEqual(`utf-8`);
32 | });
33 |
34 | xit("should extract author from news article", async () => {
35 | const linkInfo: any = await getLinkPreview(
36 | `https://www.usatoday.com/story/special/contributor-content/2025/10/15/why-chaos-engineering-is-more-important-than-ever-in-the-ai-era/86712877007/`
37 | );
38 |
39 | expect(linkInfo.author).toEqual(`Matt Emma`);
40 | });
41 |
42 | it(`should extract link info from a URL with a newline`, async () => {
43 | const linkInfo: any = await getLinkPreview(
44 | `
45 | https://www.youtube.com/watch?v=wuClZjOdT30
46 | `,
47 | { headers: { "Accept-Language": `en-US` } }
48 | );
49 |
50 | expect(linkInfo.url).toEqual(`https://www.youtube.com/watch?v=wuClZjOdT30`);
51 | expect(linkInfo.title).toEqual(`Geography Now! Germany`);
52 | expect(linkInfo.siteName).toBeTruthy();
53 | expect(linkInfo.description).toBeTruthy();
54 | expect(linkInfo.mediaType).toEqual(`video.other`);
55 | expect(linkInfo.images.length).toEqual(1);
56 | expect(linkInfo.images[0]).toEqual(
57 | `https://i.ytimg.com/vi/wuClZjOdT30/maxresdefault.jpg`
58 | );
59 | expect(linkInfo.videos.length).toEqual(0);
60 | expect(linkInfo.favicons[0]).not.toBe(``);
61 | expect(linkInfo.contentType.toLowerCase()).toEqual(`text/html`);
62 | });
63 |
64 | it(`should extract link info from just text with a URL`, async () => {
65 | const linkInfo: any = await getLinkPreview(
66 | `This is some text blah blah https://www.youtube.com/watch?v=wuClZjOdT30 and more text`,
67 | { headers: { "Accept-Language": `en-US` } }
68 | );
69 |
70 | expect(linkInfo.url).toEqual(`https://www.youtube.com/watch?v=wuClZjOdT30`);
71 | expect(linkInfo.title).toEqual(`Geography Now! Germany`);
72 | expect(linkInfo.siteName).toEqual(`YouTube`);
73 | expect(linkInfo.description).toBeTruthy();
74 | expect(linkInfo.mediaType).toEqual(`video.other`);
75 | expect(linkInfo.images.length).toEqual(1);
76 | expect(linkInfo.images[0]).toEqual(
77 | `https://i.ytimg.com/vi/wuClZjOdT30/maxresdefault.jpg`
78 | );
79 | expect(linkInfo.videos.length).toEqual(0);
80 | expect(linkInfo.favicons[0]).toBeTruthy();
81 | expect(linkInfo.contentType.toLowerCase()).toEqual(`text/html`);
82 | });
83 |
84 | // it(`should make request with different languages`, async () => {
85 | // let linkInfo: any = await getLinkPreview(`https://www.wikipedia.org/`, {
86 | // headers: { "Accept-Language": `es` },
87 | // followRedirects: `follow`,
88 | // });
89 | // expect(linkInfo.title).toContain(`Wikipedia, la enciclopedia libre`);
90 |
91 | // linkInfo = await getLinkPreview(`https://www.wikipedia.org/`);
92 | // expect(linkInfo.title).toContain(`Wikipedia`);
93 | // });
94 |
95 | it(`should handle audio urls`, async () => {
96 | const linkInfo = await getLinkPreview(
97 | `https://ondemand.npr.org/anon.npr-mp3/npr/atc/2007/12/20071231_atc_13.mp3`
98 | );
99 | expect(linkInfo.url).toEqual(
100 | `https://ondemand.npr.org/anon.npr-mp3/npr/atc/2007/12/20071231_atc_13.mp3`
101 | );
102 | expect(linkInfo.mediaType).toEqual(`audio`);
103 | expect(linkInfo.contentType?.toLowerCase()).toEqual(`audio/mpeg`);
104 | expect(linkInfo.favicons[0]).toBeTruthy();
105 | });
106 |
107 | it(`should handle video urls`, async () => {
108 | const linkInfo = await getLinkPreview(
109 | `https://www.w3schools.com/html/mov_bbb.mp4`
110 | );
111 |
112 | expect(linkInfo.url).toEqual(`https://www.w3schools.com/html/mov_bbb.mp4`);
113 | expect(linkInfo.mediaType).toEqual(`video`);
114 | expect(linkInfo.contentType?.toLowerCase()).toEqual(`video/mp4`);
115 | expect(linkInfo.favicons[0]).toBeTruthy();
116 | });
117 |
118 | it(`should handle image urls`, async () => {
119 | const linkInfo = await getLinkPreview(
120 | `https://media.npr.org/assets/img/2018/04/27/gettyimages-656523922nunes-4bb9a194ab2986834622983bb2f8fe57728a9e5f-s1100-c15.jpg`
121 | );
122 |
123 | expect(linkInfo.url).toEqual(
124 | `https://media.npr.org/assets/img/2018/04/27/gettyimages-656523922nunes-4bb9a194ab2986834622983bb2f8fe57728a9e5f-s1100-c15.jpg`
125 | );
126 | expect(linkInfo.mediaType).toEqual(`image`);
127 | expect(linkInfo.contentType?.toLowerCase()).toEqual(`image/jpeg`);
128 | expect(linkInfo.favicons[0]).toBeTruthy();
129 | });
130 |
131 | it(`should handle unknown content type urls`, async () => {
132 | const linkInfo = await getLinkPreview(`https://mjml.io/try-it-live`);
133 |
134 | expect(linkInfo.url).toEqual(`https://mjml.io/try-it-live`);
135 | expect(linkInfo.mediaType).toEqual(`website`);
136 | });
137 |
138 | // This site changed? it is not returning application any more but rather website
139 | // it.skip(`should handle application urls`, async () => {
140 | // const linkInfo = await getLinkPreview(
141 | // `https://assets.curtmfg.com/masterlibrary/56282/installsheet/CME_56282_INS.pdf`
142 | // );
143 |
144 | // expect(linkInfo.url).toEqual(
145 | // `https://assets.curtmfg.com/masterlibrary/56282/installsheet/CME_56282_INS.pdf`
146 | // );
147 | // expect(linkInfo.mediaType).toEqual(`application`);
148 | // expect(linkInfo.contentType?.toLowerCase()).toEqual(`application/pdf`);
149 | // expect(linkInfo.favicons[0]).toBeTruthy();
150 | // });
151 |
152 | it(`no link in text should fail gracefully`, async () => {
153 | await expect(
154 | getLinkPreview(`no link`)
155 | ).rejects.toThrowErrorMatchingSnapshot();
156 | });
157 |
158 | it(`should handle malformed urls gracefully`, async () => {
159 | await expect(
160 | getLinkPreview(
161 | `this is a malformed link: ahttps://www.youtube.com/watch?v=wuClZjOdT30`
162 | )
163 | ).rejects.toThrowErrorMatchingSnapshot();
164 | });
165 |
166 | it(`should handle empty strings gracefully`, async () => {
167 | await expect(getLinkPreview(``)).rejects.toThrowErrorMatchingSnapshot();
168 | });
169 |
170 | it.skip(`should handle a proxy url option`, async () => {
171 | // origin header is required by cors-anywhere
172 | const linkInfo: any = await getLinkPreview(
173 | `https://www.youtube.com/watch?v=wuClZjOdT30`,
174 | {
175 | proxyUrl: `https://cors-anywhere.herokuapp.com/`,
176 | headers: {
177 | Origin: `http://localhost:8000`,
178 | "Accept-Language": `en-US`,
179 | },
180 | }
181 | );
182 |
183 | expect(linkInfo.url).toEqual(`https://www.youtube.com/watch?v=wuClZjOdT30`);
184 | expect(linkInfo.siteName).toEqual(`YouTube`);
185 | expect(linkInfo.title).toEqual(`Geography Now! Germany`);
186 | expect(linkInfo.description).toBeTruthy();
187 | expect(linkInfo.mediaType).toEqual(`video.other`);
188 | expect(linkInfo.images.length).toEqual(1);
189 | expect(linkInfo.images[0]).toEqual(
190 | `https://i.ytimg.com/vi/wuClZjOdT30/maxresdefault.jpg`
191 | );
192 | expect(linkInfo.videos.length).toEqual(0);
193 | expect(linkInfo.favicons[0]).not.toBe(``);
194 | expect(linkInfo.contentType.toLowerCase()).toEqual(`text/html`);
195 | });
196 |
197 | it("should timeout (default 3s) with infinite loading link", async () => {
198 | try {
199 | await getLinkPreview(
200 | `https://www.gamestop.com/video-games/pc-gaming/components/cooling/products/hyper-212-rgb-black-edition-fan/185243.html?gclid=Cj0KCQjwraqHBhDsARIsAKuGZeECDlqkF2cxpcuS0xRxQmrv5BxFawWS_B51kiqehPf64_KlO0oyunsaAhn5EALw_wcB&gclsrc=aw.ds`
201 | );
202 | } catch (e: any) {
203 | expect(e.message).toEqual("Request timeout");
204 | }
205 | });
206 |
207 | it("should timeout (custom 1s) with infinite loading link", async () => {
208 | try {
209 | await getLinkPreview(
210 | `https://www.gamestop.com/video-games/pc-gaming/components/cooling/products/hyper-212-rgb-black-edition-fan/185243.html?gclid=Cj0KCQjwraqHBhDsARIsAKuGZeECDlqkF2cxpcuS0xRxQmrv5BxFawWS_B51kiqehPf64_KlO0oyunsaAhn5EALw_wcB&gclsrc=aw.ds`,
211 | {
212 | timeout: 1000,
213 | }
214 | );
215 | } catch (e: any) {
216 | expect(e.message).toEqual("Request timeout");
217 | }
218 | });
219 |
220 | it(`should handle followRedirects option is error`, async () => {
221 | try {
222 | await getLinkPreview(`http://google.com/`, { followRedirects: `error` });
223 | } catch (e: any) {
224 | expect(e.message).toEqual(`fetch failed`);
225 | }
226 | });
227 |
228 | it(`should handle followRedirects option is manual but handleRedirects was not provided`, async () => {
229 | try {
230 | await getLinkPreview(`http://google.com/`, { followRedirects: `manual` });
231 | } catch (e: any) {
232 | expect(e.message).toEqual(
233 | `link-preview-js followRedirects is set to manual, but no handleRedirects function was provided`
234 | );
235 | }
236 | });
237 |
238 | it(`should handle followRedirects option is manual with handleRedirects function`, async () => {
239 | const response = await getLinkPreview(`http://google.com/`, {
240 | followRedirects: `manual`,
241 | handleRedirects: (baseURL: string, forwardedURL: string) => {
242 | if (forwardedURL !== `http://www.google.com/`) {
243 | return false;
244 | }
245 | return true;
246 | },
247 | });
248 |
249 | expect(response.contentType).toEqual(`text/html`);
250 | expect(response.url).toEqual(`http://www.google.com/`);
251 | expect(response.mediaType).toEqual(`website`);
252 | });
253 |
254 | it("should handle override response body using onResponse option", async () => {
255 | let firstParagraphText;
256 |
257 | const res: any = await getLinkPreview(`https://www.example.com/`, {
258 | onResponse: (result, doc) => {
259 | firstParagraphText = doc("p")
260 | .first()
261 | .text()
262 | .split("\n")
263 | .map((x) => x.trim())
264 | .join(" ");
265 | result.siteName = `SiteName has been overridden`;
266 | result.description = firstParagraphText;
267 |
268 | return result;
269 | },
270 | });
271 |
272 | expect(res.siteName).toEqual("SiteName has been overridden");
273 | expect(res.description).toEqual(firstParagraphText);
274 | });
275 |
276 | it("should handle video tags without type or secure_url tags", async () => {
277 | const res: any = await getLinkPreview(
278 | `https://newpathtitle.com/falling-markets-how-to-stop-buyer-from-getting-out/`,
279 | { followRedirects: `follow` }
280 | );
281 |
282 | expect(res.siteName).toEqual(`New Path Title`);
283 | expect(res.title).toEqual(
284 | `Falling Markets: How To Stop A Buyer From Getting Out | New Path Title`
285 | );
286 | expect(res.description).toBeTruthy();
287 | expect(res.mediaType).toEqual(`article`);
288 | expect(res.images.length).toBeGreaterThan(0);
289 | expect(res.videos.length).toBeGreaterThan(0);
290 | expect(res.videos[0].url).toEqual(
291 | `https://www.youtube.com/embed/nqNXjxpAPkU`
292 | );
293 | expect(res.favicons.length).toBeGreaterThan(0);
294 | expect(res.contentType.toLowerCase()).toEqual(`text/html`);
295 | });
296 | });
297 |
298 | describe(`#getPreviewFromContent`, () => {
299 | it(`Basic parsing`, async () => {
300 | const linkInfo: any = await getPreviewFromContent(prefetchedResponse);
301 |
302 | expect(linkInfo.url).toEqual(`https://www.youtube.com/watch?v=wuClZjOdT30`);
303 | expect(linkInfo.siteName).toEqual(`YouTube`);
304 | expect(linkInfo.title).toEqual(`Geography Now! Germany`);
305 | expect(linkInfo.description).toBeTruthy();
306 | expect(linkInfo.mediaType).toEqual(`video.other`);
307 | expect(linkInfo.images.length).toEqual(1);
308 | expect(linkInfo.images[0]).toEqual(
309 | `https://i.ytimg.com/vi/wuClZjOdT30/maxresdefault.jpg`
310 | );
311 | expect(linkInfo.videos.length).toEqual(0);
312 | expect(linkInfo.favicons[0]).not.toBe(``);
313 | expect(linkInfo.contentType.toLowerCase()).toEqual(`text/html`);
314 | });
315 | });
316 |
--------------------------------------------------------------------------------
/index.ts:
--------------------------------------------------------------------------------
1 | import cheerio from "cheerio";
2 | import { CONSTANTS } from "./constants";
3 |
4 | interface ILinkPreviewResponse {
5 | url: string;
6 | title: string;
7 | siteName: string | undefined;
8 | author: string | undefined;
9 | description: string | undefined;
10 | mediaType: string;
11 | contentType: string | undefined;
12 | images: string[];
13 | videos: IVideoType[];
14 | favicons: string[];
15 | }
16 |
17 | interface IVideoType {
18 | url: string | undefined;
19 | secureUrl: string | null | undefined;
20 | type: string | null | undefined;
21 | width: string | undefined;
22 | height: string | undefined;
23 | }
24 |
25 | interface ILinkPreviewOptions {
26 | headers?: Record;
27 | imagesPropertyType?: string;
28 | proxyUrl?: string;
29 | timeout?: number;
30 | followRedirects?: `follow` | `error` | `manual`;
31 | resolveDNSHost?: (url: string) => Promise;
32 | handleRedirects?: (baseURL: string, forwardedURL: string) => boolean;
33 | onResponse?: (
34 | response: ILinkPreviewResponse,
35 | doc: cheerio.Root,
36 | url?: URL,
37 | ) => ILinkPreviewResponse;
38 | }
39 |
40 | interface IPreFetchedResource {
41 | headers: Record;
42 | status?: number;
43 | imagesPropertyType?: string;
44 | proxyUrl?: string;
45 | url: string;
46 | data: string;
47 | }
48 |
49 | function throwOnLoopback(address: string) {
50 | if (CONSTANTS.REGEX_LOOPBACK.test(address)) {
51 | throw new Error("SSRF request detected, trying to query host");
52 | }
53 | }
54 |
55 | function metaTag(doc: cheerio.Root, type: string, attr: string) {
56 | const nodes = doc(`meta[${attr}='${type}']`);
57 | return nodes.length ? nodes : null;
58 | }
59 |
60 | function metaTagContent(doc: cheerio.Root, type: string, attr: string) {
61 | return doc(`meta[${attr}='${type}']`).attr(`content`);
62 | }
63 |
64 | function getTitle(doc: cheerio.Root) {
65 | let title =
66 | metaTagContent(doc, `og:title`, `property`) ||
67 | metaTagContent(doc, `og:title`, `name`);
68 | if (!title) {
69 | title = doc(`head > title`).text();
70 | }
71 | return title;
72 | }
73 |
74 | function getSiteName(doc: cheerio.Root) {
75 | const siteName =
76 | metaTagContent(doc, `og:site_name`, `property`) ||
77 | metaTagContent(doc, `og:site_name`, `name`);
78 | return siteName;
79 | }
80 |
81 | function getAuthor(doc: cheerio.Root) {
82 | const author =
83 | metaTagContent(doc, `author`, `name`) ||
84 | metaTagContent(doc, `article:author`, `property`);
85 | return author;
86 | }
87 |
88 | function getDescription(doc: cheerio.Root) {
89 | const description =
90 | metaTagContent(doc, `description`, `name`) ||
91 | metaTagContent(doc, `Description`, `name`) ||
92 | metaTagContent(doc, `og:description`, `property`);
93 | return description;
94 | }
95 |
96 | function getMediaType(doc: cheerio.Root) {
97 | const node = metaTag(doc, `medium`, `name`);
98 | if (node) {
99 | const content = node.attr(`content`);
100 | return content === `image` ? `photo` : content;
101 | }
102 | return (
103 | metaTagContent(doc, `og:type`, `property`) ||
104 | metaTagContent(doc, `og:type`, `name`)
105 | );
106 | }
107 |
108 | function getImages(
109 | doc: cheerio.Root,
110 | rootUrl: string,
111 | imagesPropertyType?: string,
112 | ) {
113 | let images: string[] = [];
114 | let nodes: cheerio.Cheerio | null;
115 | let src: string | undefined;
116 | let dic: Record = {};
117 |
118 | const imagePropertyType = imagesPropertyType ?? `og`;
119 | nodes =
120 | metaTag(doc, `${imagePropertyType}:image`, `property`) ||
121 | metaTag(doc, `${imagePropertyType}:image`, `name`);
122 |
123 | if (nodes) {
124 | nodes.each((_: number, node: cheerio.Element) => {
125 | if (node.type === `tag`) {
126 | src = node.attribs.content;
127 | if (src) {
128 | src = new URL(src, rootUrl).href;
129 | images.push(src);
130 | }
131 | }
132 | });
133 | }
134 |
135 | if (images.length <= 0 && !imagesPropertyType) {
136 | src = doc(`link[rel=image_src]`).attr(`href`);
137 | if (src) {
138 | src = new URL(src, rootUrl).href;
139 | images = [src];
140 | } else {
141 | nodes = doc(`img`);
142 |
143 | if (nodes?.length) {
144 | dic = {};
145 | images = [];
146 | nodes.each((_: number, node: cheerio.Element) => {
147 | if (node.type === `tag`) src = node.attribs.src;
148 | if (src && !dic[src]) {
149 | dic[src] = true;
150 | // width = node.attribs.width;
151 | // height = node.attribs.height;
152 | images.push(new URL(src, rootUrl).href);
153 | }
154 | });
155 | }
156 | }
157 | }
158 |
159 | return images;
160 | }
161 |
162 | function getVideos(doc: cheerio.Root) {
163 | const videos = [];
164 | let nodeTypes;
165 | let nodeSecureUrls;
166 | let nodeType;
167 | let nodeSecureUrl;
168 | let video;
169 | let videoType;
170 | let videoSecureUrl;
171 | let width;
172 | let height;
173 | let videoObj;
174 | let index;
175 |
176 | const nodes =
177 | metaTag(doc, `og:video`, `property`) || metaTag(doc, `og:video`, `name`);
178 |
179 | if (nodes?.length) {
180 | nodeTypes =
181 | metaTag(doc, `og:video:type`, `property`) ||
182 | metaTag(doc, `og:video:type`, `name`);
183 | nodeSecureUrls =
184 | metaTag(doc, `og:video:secure_url`, `property`) ||
185 | metaTag(doc, `og:video:secure_url`, `name`);
186 | width =
187 | metaTagContent(doc, `og:video:width`, `property`) ||
188 | metaTagContent(doc, `og:video:width`, `name`);
189 | height =
190 | metaTagContent(doc, `og:video:height`, `property`) ||
191 | metaTagContent(doc, `og:video:height`, `name`);
192 |
193 | for (index = 0; index < nodes.length; index += 1) {
194 | const node = nodes[index];
195 | if (node.type === `tag`) video = node.attribs.content;
196 |
197 | nodeType = nodeTypes?.[index];
198 | if (nodeType?.type === `tag`) {
199 | videoType = nodeType ? nodeType.attribs.content : null;
200 | }
201 |
202 | nodeSecureUrl = nodeSecureUrls?.[index];
203 | if (nodeSecureUrl?.type === `tag`) {
204 | videoSecureUrl = nodeSecureUrl ? nodeSecureUrl.attribs.content : null;
205 | }
206 |
207 | videoObj = {
208 | url: video,
209 | secureUrl: videoSecureUrl,
210 | type: videoType,
211 | width,
212 | height,
213 | };
214 | if (videoType && videoType.indexOf(`video/`) === 0) {
215 | videos.splice(0, 0, videoObj);
216 | } else {
217 | videos.push(videoObj);
218 | }
219 | }
220 | }
221 |
222 | return videos;
223 | }
224 |
225 | // returns default favicon (//hostname/favicon.ico) for a url
226 | function getDefaultFavicon(rootUrl: string): string {
227 | return new URL(`/favicon.ico`, rootUrl).href;
228 | }
229 |
230 | // returns an array of URLs to favicon images
231 | function getFavicons(doc: cheerio.Root, rootUrl: string): string[] {
232 | const images = [];
233 | let nodes: cheerio.Cheerio | never[] = [];
234 | let src: string | undefined;
235 |
236 | const relSelectors = [
237 | `rel=icon`,
238 | `rel="shortcut icon"`,
239 | `rel=apple-touch-icon`,
240 | ];
241 |
242 | relSelectors.forEach((relSelector) => {
243 | // look for all icon tags
244 | nodes = doc(`link[${relSelector}]`);
245 |
246 | // collect all images from icon tags
247 | if (nodes.length) {
248 | nodes.each((_: number, node: cheerio.Element) => {
249 | if (node.type === `tag`) src = node.attribs.href;
250 | if (src) {
251 | src = new URL(src, rootUrl).href;
252 | images.push(src);
253 | }
254 | });
255 | }
256 | });
257 |
258 | // if no icon images, use default favicon location
259 | if (images.length <= 0) {
260 | images.push(getDefaultFavicon(rootUrl));
261 | }
262 |
263 | return images;
264 | }
265 |
266 | function parseImageResponse(url: string, contentType: string) {
267 | return {
268 | url,
269 | mediaType: `image`,
270 | contentType,
271 | favicons: [getDefaultFavicon(url)],
272 | };
273 | }
274 |
275 | function parseAudioResponse(url: string, contentType: string) {
276 | return {
277 | url,
278 | mediaType: `audio`,
279 | contentType,
280 | favicons: [getDefaultFavicon(url)],
281 | };
282 | }
283 |
284 | function parseVideoResponse(url: string, contentType: string) {
285 | return {
286 | url,
287 | mediaType: `video`,
288 | contentType,
289 | favicons: [getDefaultFavicon(url)],
290 | };
291 | }
292 |
293 | function parseApplicationResponse(url: string, contentType: string) {
294 | return {
295 | url,
296 | mediaType: `application`,
297 | contentType,
298 | favicons: [getDefaultFavicon(url)],
299 | };
300 | }
301 |
302 | function parseTextResponse(
303 | body: string,
304 | url: string,
305 | options: ILinkPreviewOptions = {},
306 | contentType?: string,
307 | ): ILinkPreviewResponse {
308 | const doc = cheerio.load(body);
309 |
310 | let response = {
311 | url,
312 | title: getTitle(doc),
313 | siteName: getSiteName(doc),
314 | description: getDescription(doc),
315 | author: getAuthor(doc),
316 | mediaType: getMediaType(doc) || `website`,
317 | contentType,
318 | images: getImages(doc, url, options.imagesPropertyType),
319 | videos: getVideos(doc),
320 | favicons: getFavicons(doc, url),
321 | };
322 |
323 | if (options?.onResponse && typeof options.onResponse !== `function`) {
324 | throw new Error(`link-preview-js onResponse option must be a function`);
325 | }
326 |
327 | if (options?.onResponse) {
328 | // send in a cloned response (to avoid mutation of original response reference)
329 | const clonedResponse = structuredClone(response);
330 | const urlObject = new URL(url);
331 | response = options.onResponse(clonedResponse, doc, urlObject);
332 | }
333 |
334 | return response;
335 | }
336 |
337 | function parseUnknownResponse(
338 | body: string,
339 | url: string,
340 | options: ILinkPreviewOptions = {},
341 | contentType?: string,
342 | ) {
343 | return parseTextResponse(body, url, options, contentType);
344 | }
345 |
346 | function parseResponse(
347 | response: IPreFetchedResource,
348 | options?: ILinkPreviewOptions,
349 | ) {
350 | try {
351 | // console.log("[link-preview-js] response", response);
352 | let contentType = response.headers[`content-type`];
353 | let contentTypeTokens: string[] = [];
354 | let charset = null;
355 |
356 | if (!contentType) {
357 | return parseUnknownResponse(response.data, response.url, options);
358 | }
359 |
360 | if (contentType.includes(`;`)) {
361 | contentTypeTokens = contentType.split(`;`);
362 | contentType = contentTypeTokens[0];
363 |
364 | for (let token of contentTypeTokens) {
365 | if (token.indexOf("charset=") !== -1) {
366 | charset = token.split("=")[1];
367 | }
368 | }
369 | }
370 |
371 | // parse response depending on content type
372 | if (CONSTANTS.REGEX_CONTENT_TYPE_IMAGE.test(contentType)) {
373 | return { ...parseImageResponse(response.url, contentType), charset };
374 | }
375 |
376 | if (CONSTANTS.REGEX_CONTENT_TYPE_AUDIO.test(contentType)) {
377 | return { ...parseAudioResponse(response.url, contentType), charset };
378 | }
379 |
380 | if (CONSTANTS.REGEX_CONTENT_TYPE_VIDEO.test(contentType)) {
381 | return { ...parseVideoResponse(response.url, contentType), charset };
382 | }
383 |
384 | if (CONSTANTS.REGEX_CONTENT_TYPE_TEXT.test(contentType)) {
385 | return {
386 | ...parseTextResponse(response.data, response.url, options, contentType),
387 | charset,
388 | };
389 | }
390 |
391 | if (CONSTANTS.REGEX_CONTENT_TYPE_APPLICATION.test(contentType)) {
392 | return {
393 | ...parseApplicationResponse(response.url, contentType),
394 | charset,
395 | };
396 | }
397 |
398 | const htmlString = response.data;
399 |
400 | return {
401 | ...parseUnknownResponse(htmlString, response.url, options),
402 | charset,
403 | };
404 | } catch (e) {
405 | throw new Error(
406 | `link-preview-js could not fetch link information ${(
407 | e as any
408 | ).toString()}`,
409 | );
410 | }
411 | }
412 |
413 | /**
414 | * Parses the text, extracts the first link it finds and does a HTTP request
415 | * to fetch the website content, afterwards it tries to parse the internal HTML
416 | * and extract the information via meta tags
417 | * @param text string, text to be parsed
418 | * @param options ILinkPreviewOptions
419 | */
420 | export async function getLinkPreview(
421 | text: string,
422 | options?: ILinkPreviewOptions,
423 | ) {
424 | if (!text || typeof text !== `string`) {
425 | throw new Error(`link-preview-js did not receive a valid url or text`);
426 | }
427 |
428 | const detectedUrl = text
429 | .replace(/\n/g, ` `)
430 | .split(` `)
431 | .find((token) => CONSTANTS.REGEX_VALID_URL.test(token));
432 |
433 | if (!detectedUrl) {
434 | throw new Error(`link-preview-js did not receive a valid a url or text`);
435 | }
436 |
437 | if (options?.followRedirects === `manual` && !options?.handleRedirects) {
438 | throw new Error(
439 | `link-preview-js followRedirects is set to manual, but no handleRedirects function was provided`,
440 | );
441 | }
442 |
443 | if (!!options?.resolveDNSHost) {
444 | const resolvedUrl = await options.resolveDNSHost(detectedUrl);
445 |
446 | throwOnLoopback(resolvedUrl);
447 | }
448 |
449 | const timeout = options?.timeout ?? 3000; // 3 second timeout default
450 | const controller = new AbortController();
451 | const timeoutCounter = setTimeout(() => controller.abort(), timeout);
452 |
453 | const fetchOptions = {
454 | headers: options?.headers ?? {},
455 | redirect: options?.followRedirects ?? `error`,
456 | signal: controller.signal,
457 | };
458 |
459 | const fetchUrl = options?.proxyUrl
460 | ? options.proxyUrl.concat(detectedUrl)
461 | : detectedUrl;
462 |
463 | let response = await fetch(fetchUrl, fetchOptions).catch((e) => {
464 | if (e.name === `AbortError`) {
465 | throw new Error(`Request timeout`);
466 | }
467 |
468 | clearTimeout(timeoutCounter);
469 | throw e;
470 | });
471 |
472 | if (
473 | response.status > 300 &&
474 | response.status < 309 &&
475 | fetchOptions.redirect === `manual` &&
476 | options?.handleRedirects
477 | ) {
478 | const locationHeader = response.headers.get(`location`) || ``;
479 | const isAbsoluteURI =
480 | locationHeader.startsWith("http://") ||
481 | locationHeader.startsWith("https://");
482 |
483 | // Resolve the URL, handling both absolute and relative URLs
484 | const forwardedUrl = isAbsoluteURI
485 | ? locationHeader
486 | : new URL(locationHeader, fetchUrl).href;
487 |
488 | if (!options.handleRedirects(fetchUrl, forwardedUrl)) {
489 | throw new Error(`link-preview-js could not handle redirect`);
490 | }
491 |
492 | if (!!options?.resolveDNSHost) {
493 | const resolvedUrl = await options.resolveDNSHost(forwardedUrl);
494 |
495 | throwOnLoopback(resolvedUrl);
496 | }
497 |
498 | response = await fetch(forwardedUrl, fetchOptions as any);
499 | }
500 |
501 | clearTimeout(timeoutCounter);
502 |
503 | const headers: Record = {};
504 | response.headers.forEach((header, key) => {
505 | headers[key] = header;
506 | });
507 |
508 | const normalizedResponse: IPreFetchedResource = {
509 | url: options?.proxyUrl
510 | ? response.url.replace(options.proxyUrl, ``)
511 | : response.url,
512 | headers,
513 | data: await response.text(),
514 | };
515 |
516 | return parseResponse(normalizedResponse, options);
517 | }
518 |
519 | /**
520 | * Skip the library fetching the website for you, instead pass a response object
521 | * from whatever source you get and use the internal parsing of the HTML to return
522 | * the necessary information
523 | * @param response Preview Response
524 | * @param options IPreviewLinkOptions
525 | */
526 | export async function getPreviewFromContent(
527 | response: IPreFetchedResource,
528 | options?: ILinkPreviewOptions,
529 | ) {
530 | if (!response || typeof response !== `object`) {
531 | throw new Error(`link-preview-js did not receive a valid response object`);
532 | }
533 |
534 | if (!response.url) {
535 | throw new Error(`link-preview-js did not receive a valid response object`);
536 | }
537 |
538 | return parseResponse(response, options);
539 | }
540 |
--------------------------------------------------------------------------------
/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.14.5":
14 | version "7.14.5"
15 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"
16 | integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
17 | dependencies:
18 | "@babel/highlight" "^7.14.5"
19 |
20 | "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6":
21 | version "7.18.6"
22 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
23 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
24 | dependencies:
25 | "@babel/highlight" "^7.18.6"
26 |
27 | "@babel/code-frame@^7.22.13":
28 | version "7.22.13"
29 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
30 | integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
31 | dependencies:
32 | "@babel/highlight" "^7.22.13"
33 | chalk "^2.4.2"
34 |
35 | "@babel/compat-data@^7.18.6":
36 | version "7.18.8"
37 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d"
38 | integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==
39 |
40 | "@babel/core@^7.11.6", "@babel/core@^7.12.3":
41 | version "7.18.6"
42 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.6.tgz#54a107a3c298aee3fe5e1947a6464b9b6faca03d"
43 | integrity sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==
44 | dependencies:
45 | "@ampproject/remapping" "^2.1.0"
46 | "@babel/code-frame" "^7.18.6"
47 | "@babel/generator" "^7.18.6"
48 | "@babel/helper-compilation-targets" "^7.18.6"
49 | "@babel/helper-module-transforms" "^7.18.6"
50 | "@babel/helpers" "^7.18.6"
51 | "@babel/parser" "^7.18.6"
52 | "@babel/template" "^7.18.6"
53 | "@babel/traverse" "^7.18.6"
54 | "@babel/types" "^7.18.6"
55 | convert-source-map "^1.7.0"
56 | debug "^4.1.0"
57 | gensync "^1.0.0-beta.2"
58 | json5 "^2.2.1"
59 | semver "^6.3.0"
60 |
61 | "@babel/generator@^7.18.6", "@babel/generator@^7.7.2":
62 | version "7.18.7"
63 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.7.tgz#2aa78da3c05aadfc82dbac16c99552fc802284bd"
64 | integrity sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==
65 | dependencies:
66 | "@babel/types" "^7.18.7"
67 | "@jridgewell/gen-mapping" "^0.3.2"
68 | jsesc "^2.5.1"
69 |
70 | "@babel/generator@^7.23.0":
71 | version "7.23.0"
72 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
73 | integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
74 | dependencies:
75 | "@babel/types" "^7.23.0"
76 | "@jridgewell/gen-mapping" "^0.3.2"
77 | "@jridgewell/trace-mapping" "^0.3.17"
78 | jsesc "^2.5.1"
79 |
80 | "@babel/helper-compilation-targets@^7.18.6":
81 | version "7.18.6"
82 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz#18d35bfb9f83b1293c22c55b3d576c1315b6ed96"
83 | integrity sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==
84 | dependencies:
85 | "@babel/compat-data" "^7.18.6"
86 | "@babel/helper-validator-option" "^7.18.6"
87 | browserslist "^4.20.2"
88 | semver "^6.3.0"
89 |
90 | "@babel/helper-environment-visitor@^7.18.6":
91 | version "7.18.6"
92 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz#b7eee2b5b9d70602e59d1a6cad7dd24de7ca6cd7"
93 | integrity sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==
94 |
95 | "@babel/helper-environment-visitor@^7.22.20":
96 | version "7.22.20"
97 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
98 | integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
99 |
100 | "@babel/helper-function-name@^7.23.0":
101 | version "7.23.0"
102 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
103 | integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
104 | dependencies:
105 | "@babel/template" "^7.22.15"
106 | "@babel/types" "^7.23.0"
107 |
108 | "@babel/helper-hoist-variables@^7.22.5":
109 | version "7.22.5"
110 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
111 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
112 | dependencies:
113 | "@babel/types" "^7.22.5"
114 |
115 | "@babel/helper-module-imports@^7.18.6":
116 | version "7.18.6"
117 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
118 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
119 | dependencies:
120 | "@babel/types" "^7.18.6"
121 |
122 | "@babel/helper-module-transforms@^7.18.6":
123 | version "7.18.8"
124 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz#4f8408afead0188cfa48672f9d0e5787b61778c8"
125 | integrity sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==
126 | dependencies:
127 | "@babel/helper-environment-visitor" "^7.18.6"
128 | "@babel/helper-module-imports" "^7.18.6"
129 | "@babel/helper-simple-access" "^7.18.6"
130 | "@babel/helper-split-export-declaration" "^7.18.6"
131 | "@babel/helper-validator-identifier" "^7.18.6"
132 | "@babel/template" "^7.18.6"
133 | "@babel/traverse" "^7.18.8"
134 | "@babel/types" "^7.18.8"
135 |
136 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0":
137 | version "7.14.5"
138 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"
139 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
140 |
141 | "@babel/helper-plugin-utils@^7.18.6":
142 | version "7.18.6"
143 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz#9448974dd4fb1d80fefe72e8a0af37809cd30d6d"
144 | integrity sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==
145 |
146 | "@babel/helper-simple-access@^7.18.6":
147 | version "7.18.6"
148 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea"
149 | integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==
150 | dependencies:
151 | "@babel/types" "^7.18.6"
152 |
153 | "@babel/helper-split-export-declaration@^7.18.6":
154 | version "7.18.6"
155 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
156 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
157 | dependencies:
158 | "@babel/types" "^7.18.6"
159 |
160 | "@babel/helper-split-export-declaration@^7.22.6":
161 | version "7.22.6"
162 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
163 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
164 | dependencies:
165 | "@babel/types" "^7.22.5"
166 |
167 | "@babel/helper-string-parser@^7.22.5":
168 | version "7.22.5"
169 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
170 | integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
171 |
172 | "@babel/helper-validator-identifier@^7.14.5":
173 | version "7.14.5"
174 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"
175 | integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==
176 |
177 | "@babel/helper-validator-identifier@^7.18.6":
178 | version "7.18.6"
179 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
180 | integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
181 |
182 | "@babel/helper-validator-identifier@^7.22.20":
183 | version "7.22.20"
184 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
185 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
186 |
187 | "@babel/helper-validator-option@^7.18.6":
188 | version "7.18.6"
189 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
190 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
191 |
192 | "@babel/helpers@^7.18.6":
193 | version "7.18.6"
194 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.6.tgz#4c966140eaa1fcaa3d5a8c09d7db61077d4debfd"
195 | integrity sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==
196 | dependencies:
197 | "@babel/template" "^7.18.6"
198 | "@babel/traverse" "^7.18.6"
199 | "@babel/types" "^7.18.6"
200 |
201 | "@babel/highlight@^7.14.5":
202 | version "7.14.5"
203 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"
204 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
205 | dependencies:
206 | "@babel/helper-validator-identifier" "^7.14.5"
207 | chalk "^2.0.0"
208 | js-tokens "^4.0.0"
209 |
210 | "@babel/highlight@^7.18.6":
211 | version "7.18.6"
212 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
213 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
214 | dependencies:
215 | "@babel/helper-validator-identifier" "^7.18.6"
216 | chalk "^2.0.0"
217 | js-tokens "^4.0.0"
218 |
219 | "@babel/highlight@^7.22.13":
220 | version "7.22.20"
221 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54"
222 | integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==
223 | dependencies:
224 | "@babel/helper-validator-identifier" "^7.22.20"
225 | chalk "^2.4.2"
226 | js-tokens "^4.0.0"
227 |
228 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.7":
229 | version "7.14.7"
230 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
231 | integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==
232 |
233 | "@babel/parser@^7.18.6":
234 | version "7.18.8"
235 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.8.tgz#822146080ac9c62dac0823bb3489622e0bc1cbdf"
236 | integrity sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==
237 |
238 | "@babel/parser@^7.22.15", "@babel/parser@^7.23.0":
239 | version "7.23.0"
240 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
241 | integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
242 |
243 | "@babel/plugin-syntax-async-generators@^7.8.4":
244 | version "7.8.4"
245 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
246 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
247 | dependencies:
248 | "@babel/helper-plugin-utils" "^7.8.0"
249 |
250 | "@babel/plugin-syntax-bigint@^7.8.3":
251 | version "7.8.3"
252 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
253 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
254 | dependencies:
255 | "@babel/helper-plugin-utils" "^7.8.0"
256 |
257 | "@babel/plugin-syntax-class-properties@^7.8.3":
258 | version "7.12.13"
259 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
260 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
261 | dependencies:
262 | "@babel/helper-plugin-utils" "^7.12.13"
263 |
264 | "@babel/plugin-syntax-import-meta@^7.8.3":
265 | version "7.10.4"
266 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
267 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
268 | dependencies:
269 | "@babel/helper-plugin-utils" "^7.10.4"
270 |
271 | "@babel/plugin-syntax-json-strings@^7.8.3":
272 | version "7.8.3"
273 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
274 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
275 | dependencies:
276 | "@babel/helper-plugin-utils" "^7.8.0"
277 |
278 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
279 | version "7.10.4"
280 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
281 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
282 | dependencies:
283 | "@babel/helper-plugin-utils" "^7.10.4"
284 |
285 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
286 | version "7.8.3"
287 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
288 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
289 | dependencies:
290 | "@babel/helper-plugin-utils" "^7.8.0"
291 |
292 | "@babel/plugin-syntax-numeric-separator@^7.8.3":
293 | version "7.10.4"
294 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
295 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
296 | dependencies:
297 | "@babel/helper-plugin-utils" "^7.10.4"
298 |
299 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
300 | version "7.8.3"
301 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
302 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
303 | dependencies:
304 | "@babel/helper-plugin-utils" "^7.8.0"
305 |
306 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
307 | version "7.8.3"
308 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
309 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
310 | dependencies:
311 | "@babel/helper-plugin-utils" "^7.8.0"
312 |
313 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
314 | version "7.8.3"
315 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
316 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
317 | dependencies:
318 | "@babel/helper-plugin-utils" "^7.8.0"
319 |
320 | "@babel/plugin-syntax-top-level-await@^7.8.3":
321 | version "7.14.5"
322 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
323 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
324 | dependencies:
325 | "@babel/helper-plugin-utils" "^7.14.5"
326 |
327 | "@babel/plugin-syntax-typescript@^7.7.2":
328 | version "7.18.6"
329 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz#1c09cd25795c7c2b8a4ba9ae49394576d4133285"
330 | integrity sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==
331 | dependencies:
332 | "@babel/helper-plugin-utils" "^7.18.6"
333 |
334 | "@babel/template@^7.18.6":
335 | version "7.18.6"
336 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31"
337 | integrity sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==
338 | dependencies:
339 | "@babel/code-frame" "^7.18.6"
340 | "@babel/parser" "^7.18.6"
341 | "@babel/types" "^7.18.6"
342 |
343 | "@babel/template@^7.22.15":
344 | version "7.22.15"
345 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
346 | integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
347 | dependencies:
348 | "@babel/code-frame" "^7.22.13"
349 | "@babel/parser" "^7.22.15"
350 | "@babel/types" "^7.22.15"
351 |
352 | "@babel/template@^7.3.3":
353 | version "7.14.5"
354 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz"
355 | integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==
356 | dependencies:
357 | "@babel/code-frame" "^7.14.5"
358 | "@babel/parser" "^7.14.5"
359 | "@babel/types" "^7.14.5"
360 |
361 | "@babel/traverse@^7.18.6", "@babel/traverse@^7.18.8", "@babel/traverse@^7.7.2":
362 | version "7.23.2"
363 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
364 | integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
365 | dependencies:
366 | "@babel/code-frame" "^7.22.13"
367 | "@babel/generator" "^7.23.0"
368 | "@babel/helper-environment-visitor" "^7.22.20"
369 | "@babel/helper-function-name" "^7.23.0"
370 | "@babel/helper-hoist-variables" "^7.22.5"
371 | "@babel/helper-split-export-declaration" "^7.22.6"
372 | "@babel/parser" "^7.23.0"
373 | "@babel/types" "^7.23.0"
374 | debug "^4.1.0"
375 | globals "^11.1.0"
376 |
377 | "@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
378 | version "7.14.5"
379 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
380 | integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==
381 | dependencies:
382 | "@babel/helper-validator-identifier" "^7.14.5"
383 | to-fast-properties "^2.0.0"
384 |
385 | "@babel/types@^7.18.6", "@babel/types@^7.18.7", "@babel/types@^7.18.8":
386 | version "7.18.8"
387 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.8.tgz#c5af199951bf41ba4a6a9a6d0d8ad722b30cd42f"
388 | integrity sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==
389 | dependencies:
390 | "@babel/helper-validator-identifier" "^7.18.6"
391 | to-fast-properties "^2.0.0"
392 |
393 | "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0":
394 | version "7.23.0"
395 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
396 | integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
397 | dependencies:
398 | "@babel/helper-string-parser" "^7.22.5"
399 | "@babel/helper-validator-identifier" "^7.22.20"
400 | to-fast-properties "^2.0.0"
401 |
402 | "@bcoe/v8-coverage@^0.2.3":
403 | version "0.2.3"
404 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
405 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
406 |
407 | "@istanbuljs/load-nyc-config@^1.0.0":
408 | version "1.1.0"
409 | resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
410 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
411 | dependencies:
412 | camelcase "^5.3.1"
413 | find-up "^4.1.0"
414 | get-package-type "^0.1.0"
415 | js-yaml "^3.13.1"
416 | resolve-from "^5.0.0"
417 |
418 | "@istanbuljs/schema@^0.1.2":
419 | version "0.1.3"
420 | resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
421 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
422 |
423 | "@jest/console@^28.1.1":
424 | version "28.1.1"
425 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.1.tgz#305f8ca50b6e70413839f54c0e002b60a0f2fd7d"
426 | integrity sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA==
427 | dependencies:
428 | "@jest/types" "^28.1.1"
429 | "@types/node" "*"
430 | chalk "^4.0.0"
431 | jest-message-util "^28.1.1"
432 | jest-util "^28.1.1"
433 | slash "^3.0.0"
434 |
435 | "@jest/core@^28.1.2":
436 | version "28.1.2"
437 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.2.tgz#eac519b9acbd154313854b8823a47b5c645f785a"
438 | integrity sha512-Xo4E+Sb/nZODMGOPt2G3cMmCBqL4/W2Ijwr7/mrXlq4jdJwcFQ/9KrrJZT2adQRk2otVBXXOz1GRQ4Z5iOgvRQ==
439 | dependencies:
440 | "@jest/console" "^28.1.1"
441 | "@jest/reporters" "^28.1.2"
442 | "@jest/test-result" "^28.1.1"
443 | "@jest/transform" "^28.1.2"
444 | "@jest/types" "^28.1.1"
445 | "@types/node" "*"
446 | ansi-escapes "^4.2.1"
447 | chalk "^4.0.0"
448 | ci-info "^3.2.0"
449 | exit "^0.1.2"
450 | graceful-fs "^4.2.9"
451 | jest-changed-files "^28.0.2"
452 | jest-config "^28.1.2"
453 | jest-haste-map "^28.1.1"
454 | jest-message-util "^28.1.1"
455 | jest-regex-util "^28.0.2"
456 | jest-resolve "^28.1.1"
457 | jest-resolve-dependencies "^28.1.2"
458 | jest-runner "^28.1.2"
459 | jest-runtime "^28.1.2"
460 | jest-snapshot "^28.1.2"
461 | jest-util "^28.1.1"
462 | jest-validate "^28.1.1"
463 | jest-watcher "^28.1.1"
464 | micromatch "^4.0.4"
465 | pretty-format "^28.1.1"
466 | rimraf "^3.0.0"
467 | slash "^3.0.0"
468 | strip-ansi "^6.0.0"
469 |
470 | "@jest/environment@^28.1.2":
471 | version "28.1.2"
472 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.2.tgz#94a052c0c5f9f8c8e6d13ea6da78dbc5d7d9b85b"
473 | integrity sha512-I0CR1RUMmOzd0tRpz10oUfaChBWs+/Hrvn5xYhMEF/ZqrDaaeHwS8yDBqEWCrEnkH2g+WE/6g90oBv3nKpcm8Q==
474 | dependencies:
475 | "@jest/fake-timers" "^28.1.2"
476 | "@jest/types" "^28.1.1"
477 | "@types/node" "*"
478 | jest-mock "^28.1.1"
479 |
480 | "@jest/expect-utils@^28.1.1":
481 | version "28.1.1"
482 | resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.1.tgz#d84c346025b9f6f3886d02c48a6177e2b0360587"
483 | integrity sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw==
484 | dependencies:
485 | jest-get-type "^28.0.2"
486 |
487 | "@jest/expect@^28.1.2":
488 | version "28.1.2"
489 | resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.2.tgz#0b25acedff46e1e1e5606285306c8a399c12534f"
490 | integrity sha512-HBzyZBeFBiOelNbBKN0pilWbbrGvwDUwAqMC46NVJmWm8AVkuE58NbG1s7DR4cxFt4U5cVLxofAoHxgvC5MyOw==
491 | dependencies:
492 | expect "^28.1.1"
493 | jest-snapshot "^28.1.2"
494 |
495 | "@jest/fake-timers@^28.1.2":
496 | version "28.1.2"
497 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.2.tgz#d49e8ee4e02ba85a6e844a52a5e7c59c23e3b76f"
498 | integrity sha512-xSYEI7Y0D5FbZN2LsCUj/EKRR1zfQYmGuAUVh6xTqhx7V5JhjgMcK5Pa0iR6WIk0GXiHDe0Ke4A+yERKE9saqg==
499 | dependencies:
500 | "@jest/types" "^28.1.1"
501 | "@sinonjs/fake-timers" "^9.1.2"
502 | "@types/node" "*"
503 | jest-message-util "^28.1.1"
504 | jest-mock "^28.1.1"
505 | jest-util "^28.1.1"
506 |
507 | "@jest/globals@^28.1.2":
508 | version "28.1.2"
509 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.2.tgz#92fab296e337c7309c25e4202fb724f62249d83f"
510 | integrity sha512-cz0lkJVDOtDaYhvT3Fv2U1B6FtBnV+OpEyJCzTHM1fdoTsU4QNLAt/H4RkiwEUU+dL4g/MFsoTuHeT2pvbo4Hg==
511 | dependencies:
512 | "@jest/environment" "^28.1.2"
513 | "@jest/expect" "^28.1.2"
514 | "@jest/types" "^28.1.1"
515 |
516 | "@jest/reporters@^28.1.2":
517 | version "28.1.2"
518 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.2.tgz#0327be4ce4d0d9ae49e7908656f89669d0c2a260"
519 | integrity sha512-/whGLhiwAqeCTmQEouSigUZJPVl7sW8V26EiboImL+UyXznnr1a03/YZ2BX8OlFw0n+Zlwu+EZAITZtaeRTxyA==
520 | dependencies:
521 | "@bcoe/v8-coverage" "^0.2.3"
522 | "@jest/console" "^28.1.1"
523 | "@jest/test-result" "^28.1.1"
524 | "@jest/transform" "^28.1.2"
525 | "@jest/types" "^28.1.1"
526 | "@jridgewell/trace-mapping" "^0.3.13"
527 | "@types/node" "*"
528 | chalk "^4.0.0"
529 | collect-v8-coverage "^1.0.0"
530 | exit "^0.1.2"
531 | glob "^7.1.3"
532 | graceful-fs "^4.2.9"
533 | istanbul-lib-coverage "^3.0.0"
534 | istanbul-lib-instrument "^5.1.0"
535 | istanbul-lib-report "^3.0.0"
536 | istanbul-lib-source-maps "^4.0.0"
537 | istanbul-reports "^3.1.3"
538 | jest-message-util "^28.1.1"
539 | jest-util "^28.1.1"
540 | jest-worker "^28.1.1"
541 | slash "^3.0.0"
542 | string-length "^4.0.1"
543 | strip-ansi "^6.0.0"
544 | terminal-link "^2.0.0"
545 | v8-to-istanbul "^9.0.1"
546 |
547 | "@jest/schemas@^28.0.2":
548 | version "28.0.2"
549 | resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.0.2.tgz#08c30df6a8d07eafea0aef9fb222c5e26d72e613"
550 | integrity sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==
551 | dependencies:
552 | "@sinclair/typebox" "^0.23.3"
553 |
554 | "@jest/source-map@^28.1.2":
555 | version "28.1.2"
556 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.1.2.tgz#7fe832b172b497d6663cdff6c13b0a920e139e24"
557 | integrity sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==
558 | dependencies:
559 | "@jridgewell/trace-mapping" "^0.3.13"
560 | callsites "^3.0.0"
561 | graceful-fs "^4.2.9"
562 |
563 | "@jest/test-result@^28.1.1":
564 | version "28.1.1"
565 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.1.tgz#c6f18d1bbb01aa88925dd687872a75f8414b317a"
566 | integrity sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==
567 | dependencies:
568 | "@jest/console" "^28.1.1"
569 | "@jest/types" "^28.1.1"
570 | "@types/istanbul-lib-coverage" "^2.0.0"
571 | collect-v8-coverage "^1.0.0"
572 |
573 | "@jest/test-sequencer@^28.1.1":
574 | version "28.1.1"
575 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.1.tgz#f594ee2331df75000afe0d1ae3237630ecec732e"
576 | integrity sha512-nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA==
577 | dependencies:
578 | "@jest/test-result" "^28.1.1"
579 | graceful-fs "^4.2.9"
580 | jest-haste-map "^28.1.1"
581 | slash "^3.0.0"
582 |
583 | "@jest/transform@^28.1.2":
584 | version "28.1.2"
585 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.2.tgz#b367962c53fd53821269bde050ce373e111327c1"
586 | integrity sha512-3o+lKF6iweLeJFHBlMJysdaPbpoMmtbHEFsjzSv37HIq/wWt5ijTeO2Yf7MO5yyczCopD507cNwNLeX8Y/CuIg==
587 | dependencies:
588 | "@babel/core" "^7.11.6"
589 | "@jest/types" "^28.1.1"
590 | "@jridgewell/trace-mapping" "^0.3.13"
591 | babel-plugin-istanbul "^6.1.1"
592 | chalk "^4.0.0"
593 | convert-source-map "^1.4.0"
594 | fast-json-stable-stringify "^2.0.0"
595 | graceful-fs "^4.2.9"
596 | jest-haste-map "^28.1.1"
597 | jest-regex-util "^28.0.2"
598 | jest-util "^28.1.1"
599 | micromatch "^4.0.4"
600 | pirates "^4.0.4"
601 | slash "^3.0.0"
602 | write-file-atomic "^4.0.1"
603 |
604 | "@jest/types@^28.1.1":
605 | version "28.1.1"
606 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.1.tgz#d059bbc80e6da6eda9f081f293299348bd78ee0b"
607 | integrity sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw==
608 | dependencies:
609 | "@jest/schemas" "^28.0.2"
610 | "@types/istanbul-lib-coverage" "^2.0.0"
611 | "@types/istanbul-reports" "^3.0.0"
612 | "@types/node" "*"
613 | "@types/yargs" "^17.0.8"
614 | chalk "^4.0.0"
615 |
616 | "@jridgewell/gen-mapping@^0.1.0":
617 | version "0.1.1"
618 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
619 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
620 | dependencies:
621 | "@jridgewell/set-array" "^1.0.0"
622 | "@jridgewell/sourcemap-codec" "^1.4.10"
623 |
624 | "@jridgewell/gen-mapping@^0.3.2":
625 | version "0.3.2"
626 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
627 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
628 | dependencies:
629 | "@jridgewell/set-array" "^1.0.1"
630 | "@jridgewell/sourcemap-codec" "^1.4.10"
631 | "@jridgewell/trace-mapping" "^0.3.9"
632 |
633 | "@jridgewell/resolve-uri@^3.0.3":
634 | version "3.1.0"
635 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
636 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
637 |
638 | "@jridgewell/resolve-uri@^3.1.0":
639 | version "3.1.1"
640 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
641 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
642 |
643 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
644 | version "1.1.2"
645 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
646 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
647 |
648 | "@jridgewell/sourcemap-codec@^1.4.10":
649 | version "1.4.14"
650 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
651 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
652 |
653 | "@jridgewell/sourcemap-codec@^1.4.14":
654 | version "1.4.15"
655 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
656 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
657 |
658 | "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.9":
659 | version "0.3.14"
660 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed"
661 | integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==
662 | dependencies:
663 | "@jridgewell/resolve-uri" "^3.0.3"
664 | "@jridgewell/sourcemap-codec" "^1.4.10"
665 |
666 | "@jridgewell/trace-mapping@^0.3.17":
667 | version "0.3.20"
668 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f"
669 | integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==
670 | dependencies:
671 | "@jridgewell/resolve-uri" "^3.1.0"
672 | "@jridgewell/sourcemap-codec" "^1.4.14"
673 |
674 | "@sinclair/typebox@^0.23.3":
675 | version "0.23.5"
676 | resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.23.5.tgz#93f7b9f4e3285a7a9ade7557d9a8d36809cbc47d"
677 | integrity sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==
678 |
679 | "@sinonjs/commons@^1.7.0":
680 | version "1.8.3"
681 | resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
682 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
683 | dependencies:
684 | type-detect "4.0.8"
685 |
686 | "@sinonjs/fake-timers@^9.1.2":
687 | version "9.1.2"
688 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c"
689 | integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==
690 | dependencies:
691 | "@sinonjs/commons" "^1.7.0"
692 |
693 | "@skypack/package-check@^0.2.2":
694 | version "0.2.2"
695 | resolved "https://registry.npmjs.org/@skypack/package-check/-/package-check-0.2.2.tgz"
696 | integrity sha512-T4Wyi9lUuz0a1C2OHuzqZ0aFOCI0AmaGTb2LP9sHgWdoHXlB3JU02gfBpa0Y081G/gFsJYpQ/R0iCJRzF/nknw==
697 | dependencies:
698 | kleur "^4.1.3"
699 | yargs-parser "^20.2.3"
700 |
701 | "@types/babel__core@^7.1.14":
702 | version "7.1.19"
703 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460"
704 | integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==
705 | dependencies:
706 | "@babel/parser" "^7.1.0"
707 | "@babel/types" "^7.0.0"
708 | "@types/babel__generator" "*"
709 | "@types/babel__template" "*"
710 | "@types/babel__traverse" "*"
711 |
712 | "@types/babel__generator@*":
713 | version "7.6.3"
714 | resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz"
715 | integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==
716 | dependencies:
717 | "@babel/types" "^7.0.0"
718 |
719 | "@types/babel__template@*":
720 | version "7.4.1"
721 | resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"
722 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==
723 | dependencies:
724 | "@babel/parser" "^7.1.0"
725 | "@babel/types" "^7.0.0"
726 |
727 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
728 | version "7.14.2"
729 | resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"
730 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==
731 | dependencies:
732 | "@babel/types" "^7.3.0"
733 |
734 | "@types/cheerio@0.22.24":
735 | version "0.22.24"
736 | resolved "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.24.tgz"
737 | integrity sha512-iKXt/cwltGvN06Dd6zwQG1U35edPwId9lmcSeYfcxSNvvNg4vysnFB+iBQNjj06tSVV7MBj0GWMQ7dwb4Z+p8Q==
738 | dependencies:
739 | "@types/node" "*"
740 |
741 | "@types/graceful-fs@^4.1.3":
742 | version "4.1.5"
743 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
744 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
745 | dependencies:
746 | "@types/node" "*"
747 |
748 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
749 | version "2.0.3"
750 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"
751 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
752 |
753 | "@types/istanbul-lib-report@*":
754 | version "3.0.0"
755 | resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
756 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
757 | dependencies:
758 | "@types/istanbul-lib-coverage" "*"
759 |
760 | "@types/istanbul-reports@^3.0.0":
761 | version "3.0.1"
762 | resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
763 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
764 | dependencies:
765 | "@types/istanbul-lib-report" "*"
766 |
767 | "@types/jest@^28.1.4":
768 | version "28.1.4"
769 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-28.1.4.tgz#a11ee6c8fd0b52c19c9c18138b78bbcc201dad5a"
770 | integrity sha512-telv6G5N7zRJiLcI3Rs3o+ipZ28EnE+7EvF0pSrt2pZOMnAVI/f+6/LucDxOvcBcTeTL3JMF744BbVQAVBUQRA==
771 | dependencies:
772 | jest-matcher-utils "^28.0.0"
773 | pretty-format "^28.0.0"
774 |
775 | "@types/node@*":
776 | version "16.3.3"
777 | resolved "https://registry.npmjs.org/@types/node/-/node-16.3.3.tgz"
778 | integrity sha512-8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ==
779 |
780 | "@types/prettier@^2.1.5":
781 | version "2.6.3"
782 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.3.tgz#68ada76827b0010d0db071f739314fa429943d0a"
783 | integrity sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==
784 |
785 | "@types/stack-utils@^2.0.0":
786 | version "2.0.1"
787 | resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz"
788 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
789 |
790 | "@types/yargs-parser@*":
791 | version "20.2.1"
792 | resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"
793 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==
794 |
795 | "@types/yargs@^17.0.8":
796 | version "17.0.10"
797 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz#591522fce85d8739bca7b8bb90d048e4478d186a"
798 | integrity sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==
799 | dependencies:
800 | "@types/yargs-parser" "*"
801 |
802 | ansi-escapes@^4.2.1:
803 | version "4.3.2"
804 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
805 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
806 | dependencies:
807 | type-fest "^0.21.3"
808 |
809 | ansi-regex@^5.0.0:
810 | version "5.0.0"
811 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
812 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
813 |
814 | ansi-regex@^5.0.1:
815 | version "5.0.1"
816 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
817 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
818 |
819 | ansi-styles@^3.2.1:
820 | version "3.2.1"
821 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
822 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
823 | dependencies:
824 | color-convert "^1.9.0"
825 |
826 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
827 | version "4.3.0"
828 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
829 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
830 | dependencies:
831 | color-convert "^2.0.1"
832 |
833 | ansi-styles@^5.0.0:
834 | version "5.2.0"
835 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
836 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
837 |
838 | anymatch@^3.0.3:
839 | version "3.1.2"
840 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
841 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
842 | dependencies:
843 | normalize-path "^3.0.0"
844 | picomatch "^2.0.4"
845 |
846 | argparse@^1.0.7:
847 | version "1.0.10"
848 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
849 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
850 | dependencies:
851 | sprintf-js "~1.0.2"
852 |
853 | babel-jest@^28.1.2:
854 | version "28.1.2"
855 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.2.tgz#2b37fb81439f14d34d8b2cc4a4bd7efabf9acbfe"
856 | integrity sha512-pfmoo6sh4L/+5/G2OOfQrGJgvH7fTa1oChnuYH2G/6gA+JwDvO8PELwvwnofKBMNrQsam0Wy/Rw+QSrBNewq2Q==
857 | dependencies:
858 | "@jest/transform" "^28.1.2"
859 | "@types/babel__core" "^7.1.14"
860 | babel-plugin-istanbul "^6.1.1"
861 | babel-preset-jest "^28.1.1"
862 | chalk "^4.0.0"
863 | graceful-fs "^4.2.9"
864 | slash "^3.0.0"
865 |
866 | babel-plugin-istanbul@^6.1.1:
867 | version "6.1.1"
868 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73"
869 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==
870 | dependencies:
871 | "@babel/helper-plugin-utils" "^7.0.0"
872 | "@istanbuljs/load-nyc-config" "^1.0.0"
873 | "@istanbuljs/schema" "^0.1.2"
874 | istanbul-lib-instrument "^5.0.4"
875 | test-exclude "^6.0.0"
876 |
877 | babel-plugin-jest-hoist@^28.1.1:
878 | version "28.1.1"
879 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.1.tgz#5e055cdcc47894f28341f87f5e35aad2df680b11"
880 | integrity sha512-NovGCy5Hn25uMJSAU8FaHqzs13cFoOI4lhIujiepssjCKRsAo3TA734RDWSGxuFTsUJXerYOqQQodlxgmtqbzw==
881 | dependencies:
882 | "@babel/template" "^7.3.3"
883 | "@babel/types" "^7.3.3"
884 | "@types/babel__core" "^7.1.14"
885 | "@types/babel__traverse" "^7.0.6"
886 |
887 | babel-preset-current-node-syntax@^1.0.0:
888 | version "1.0.1"
889 | resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"
890 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
891 | dependencies:
892 | "@babel/plugin-syntax-async-generators" "^7.8.4"
893 | "@babel/plugin-syntax-bigint" "^7.8.3"
894 | "@babel/plugin-syntax-class-properties" "^7.8.3"
895 | "@babel/plugin-syntax-import-meta" "^7.8.3"
896 | "@babel/plugin-syntax-json-strings" "^7.8.3"
897 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
898 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
899 | "@babel/plugin-syntax-numeric-separator" "^7.8.3"
900 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
901 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
902 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
903 | "@babel/plugin-syntax-top-level-await" "^7.8.3"
904 |
905 | babel-preset-jest@^28.1.1:
906 | version "28.1.1"
907 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.1.1.tgz#5b6e5e69f963eb2d70f739c607b8f723c0ee75e4"
908 | integrity sha512-FCq9Oud0ReTeWtcneYf/48981aTfXYuB9gbU4rBNNJVBSQ6ssv7E6v/qvbBxtOWwZFXjLZwpg+W3q7J6vhH25g==
909 | dependencies:
910 | babel-plugin-jest-hoist "^28.1.1"
911 | babel-preset-current-node-syntax "^1.0.0"
912 |
913 | balanced-match@^1.0.0:
914 | version "1.0.2"
915 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
916 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
917 |
918 | boolbase@^1.0.0:
919 | version "1.0.0"
920 | resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
921 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
922 |
923 | brace-expansion@^1.1.7:
924 | version "1.1.11"
925 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
926 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
927 | dependencies:
928 | balanced-match "^1.0.0"
929 | concat-map "0.0.1"
930 |
931 | braces@^3.0.3:
932 | version "3.0.3"
933 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
934 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
935 | dependencies:
936 | fill-range "^7.1.1"
937 |
938 | browserslist@^4.20.2:
939 | version "4.21.1"
940 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.1.tgz#c9b9b0a54c7607e8dc3e01a0d311727188011a00"
941 | integrity sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==
942 | dependencies:
943 | caniuse-lite "^1.0.30001359"
944 | electron-to-chromium "^1.4.172"
945 | node-releases "^2.0.5"
946 | update-browserslist-db "^1.0.4"
947 |
948 | bs-logger@0.x:
949 | version "0.2.6"
950 | resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz"
951 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==
952 | dependencies:
953 | fast-json-stable-stringify "2.x"
954 |
955 | bser@2.1.1:
956 | version "2.1.1"
957 | resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz"
958 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
959 | dependencies:
960 | node-int64 "^0.4.0"
961 |
962 | buffer-from@^1.0.0:
963 | version "1.1.1"
964 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"
965 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
966 |
967 | callsites@^3.0.0:
968 | version "3.1.0"
969 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
970 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
971 |
972 | camelcase@^5.3.1:
973 | version "5.3.1"
974 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
975 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
976 |
977 | camelcase@^6.2.0:
978 | version "6.3.0"
979 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
980 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
981 |
982 | caniuse-lite@^1.0.30001359:
983 | version "1.0.30001363"
984 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001363.tgz#26bec2d606924ba318235944e1193304ea7c4f15"
985 | integrity sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==
986 |
987 | chalk@^2.0.0, chalk@^2.4.2:
988 | version "2.4.2"
989 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
990 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
991 | dependencies:
992 | ansi-styles "^3.2.1"
993 | escape-string-regexp "^1.0.5"
994 | supports-color "^5.3.0"
995 |
996 | chalk@^4.0.0:
997 | version "4.1.1"
998 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz"
999 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
1000 | dependencies:
1001 | ansi-styles "^4.1.0"
1002 | supports-color "^7.1.0"
1003 |
1004 | char-regex@^1.0.2:
1005 | version "1.0.2"
1006 | resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"
1007 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
1008 |
1009 | cheerio-select@^2.1.0:
1010 | version "2.1.0"
1011 | resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4"
1012 | integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==
1013 | dependencies:
1014 | boolbase "^1.0.0"
1015 | css-select "^5.1.0"
1016 | css-what "^6.1.0"
1017 | domelementtype "^2.3.0"
1018 | domhandler "^5.0.3"
1019 | domutils "^3.0.1"
1020 |
1021 | cheerio@1.0.0-rc.11:
1022 | version "1.0.0-rc.11"
1023 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.11.tgz#1be84be1a126958366bcc57a11648cd9b30a60c2"
1024 | integrity sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==
1025 | dependencies:
1026 | cheerio-select "^2.1.0"
1027 | dom-serializer "^2.0.0"
1028 | domhandler "^5.0.3"
1029 | domutils "^3.0.1"
1030 | htmlparser2 "^8.0.1"
1031 | parse5 "^7.0.0"
1032 | parse5-htmlparser2-tree-adapter "^7.0.0"
1033 | tslib "^2.4.0"
1034 |
1035 | ci-info@^3.2.0:
1036 | version "3.3.2"
1037 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz#6d2967ffa407466481c6c90b6e16b3098f080128"
1038 | integrity sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==
1039 |
1040 | cjs-module-lexer@^1.0.0:
1041 | version "1.2.2"
1042 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40"
1043 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==
1044 |
1045 | cliui@^7.0.2:
1046 | version "7.0.4"
1047 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
1048 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
1049 | dependencies:
1050 | string-width "^4.2.0"
1051 | strip-ansi "^6.0.0"
1052 | wrap-ansi "^7.0.0"
1053 |
1054 | co@^4.6.0:
1055 | version "4.6.0"
1056 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz"
1057 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
1058 |
1059 | collect-v8-coverage@^1.0.0:
1060 | version "1.0.1"
1061 | resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"
1062 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
1063 |
1064 | color-convert@^1.9.0:
1065 | version "1.9.3"
1066 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
1067 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1068 | dependencies:
1069 | color-name "1.1.3"
1070 |
1071 | color-convert@^2.0.1:
1072 | version "2.0.1"
1073 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
1074 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
1075 | dependencies:
1076 | color-name "~1.1.4"
1077 |
1078 | color-name@1.1.3:
1079 | version "1.1.3"
1080 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
1081 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
1082 |
1083 | color-name@~1.1.4:
1084 | version "1.1.4"
1085 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
1086 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1087 |
1088 | concat-map@0.0.1:
1089 | version "0.0.1"
1090 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1091 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1092 |
1093 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
1094 | version "1.8.0"
1095 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"
1096 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
1097 | dependencies:
1098 | safe-buffer "~5.1.1"
1099 |
1100 | cross-spawn@^7.0.3:
1101 | version "7.0.6"
1102 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
1103 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
1104 | dependencies:
1105 | path-key "^3.1.0"
1106 | shebang-command "^2.0.0"
1107 | which "^2.0.1"
1108 |
1109 | css-select@^5.1.0:
1110 | version "5.1.0"
1111 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6"
1112 | integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==
1113 | dependencies:
1114 | boolbase "^1.0.0"
1115 | css-what "^6.1.0"
1116 | domhandler "^5.0.2"
1117 | domutils "^3.0.1"
1118 | nth-check "^2.0.1"
1119 |
1120 | css-what@^6.1.0:
1121 | version "6.1.0"
1122 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
1123 | integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
1124 |
1125 | debug@^4.1.0, debug@^4.1.1:
1126 | version "4.3.2"
1127 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"
1128 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
1129 | dependencies:
1130 | ms "2.1.2"
1131 |
1132 | dedent@^0.7.0:
1133 | version "0.7.0"
1134 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
1135 | integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
1136 |
1137 | deepmerge@^4.2.2:
1138 | version "4.2.2"
1139 | resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
1140 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
1141 |
1142 | detect-newline@^3.0.0:
1143 | version "3.1.0"
1144 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
1145 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
1146 |
1147 | diff-sequences@^28.1.1:
1148 | version "28.1.1"
1149 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-28.1.1.tgz#9989dc731266dc2903457a70e996f3a041913ac6"
1150 | integrity sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==
1151 |
1152 | dom-serializer@^2.0.0:
1153 | version "2.0.0"
1154 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
1155 | integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
1156 | dependencies:
1157 | domelementtype "^2.3.0"
1158 | domhandler "^5.0.2"
1159 | entities "^4.2.0"
1160 |
1161 | domelementtype@^2.3.0:
1162 | version "2.3.0"
1163 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
1164 | integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
1165 |
1166 | domhandler@^5.0.1, domhandler@^5.0.2, domhandler@^5.0.3:
1167 | version "5.0.3"
1168 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
1169 | integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
1170 | dependencies:
1171 | domelementtype "^2.3.0"
1172 |
1173 | domutils@^3.0.1:
1174 | version "3.0.1"
1175 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c"
1176 | integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==
1177 | dependencies:
1178 | dom-serializer "^2.0.0"
1179 | domelementtype "^2.3.0"
1180 | domhandler "^5.0.1"
1181 |
1182 | electron-to-chromium@^1.4.172:
1183 | version "1.4.185"
1184 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz#3432d7944f1c5fe20664bb45d9cced2151405ce2"
1185 | integrity sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==
1186 |
1187 | emittery@^0.10.2:
1188 | version "0.10.2"
1189 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933"
1190 | integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==
1191 |
1192 | emoji-regex@^8.0.0:
1193 | version "8.0.0"
1194 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
1195 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
1196 |
1197 | entities@^4.2.0, entities@^4.3.0:
1198 | version "4.3.0"
1199 | resolved "https://registry.yarnpkg.com/entities/-/entities-4.3.0.tgz#62915f08d67353bb4eb67e3d62641a4059aec656"
1200 | integrity sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==
1201 |
1202 | error-ex@^1.3.1:
1203 | version "1.3.2"
1204 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
1205 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
1206 | dependencies:
1207 | is-arrayish "^0.2.1"
1208 |
1209 | escalade@^3.1.1:
1210 | version "3.1.1"
1211 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
1212 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1213 |
1214 | escape-string-regexp@^1.0.5:
1215 | version "1.0.5"
1216 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
1217 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1218 |
1219 | escape-string-regexp@^2.0.0:
1220 | version "2.0.0"
1221 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"
1222 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
1223 |
1224 | esprima@^4.0.0:
1225 | version "4.0.1"
1226 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
1227 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1228 |
1229 | execa@^5.0.0:
1230 | version "5.1.1"
1231 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
1232 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
1233 | dependencies:
1234 | cross-spawn "^7.0.3"
1235 | get-stream "^6.0.0"
1236 | human-signals "^2.1.0"
1237 | is-stream "^2.0.0"
1238 | merge-stream "^2.0.0"
1239 | npm-run-path "^4.0.1"
1240 | onetime "^5.1.2"
1241 | signal-exit "^3.0.3"
1242 | strip-final-newline "^2.0.0"
1243 |
1244 | exit@^0.1.2:
1245 | version "0.1.2"
1246 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"
1247 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
1248 |
1249 | expect@^28.1.1:
1250 | version "28.1.1"
1251 | resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.1.tgz#ca6fff65f6517cf7220c2e805a49c19aea30b420"
1252 | integrity sha512-/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w==
1253 | dependencies:
1254 | "@jest/expect-utils" "^28.1.1"
1255 | jest-get-type "^28.0.2"
1256 | jest-matcher-utils "^28.1.1"
1257 | jest-message-util "^28.1.1"
1258 | jest-util "^28.1.1"
1259 |
1260 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0:
1261 | version "2.1.0"
1262 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
1263 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1264 |
1265 | fb-watchman@^2.0.0:
1266 | version "2.0.1"
1267 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz"
1268 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
1269 | dependencies:
1270 | bser "2.1.1"
1271 |
1272 | fill-range@^7.1.1:
1273 | version "7.1.1"
1274 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
1275 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
1276 | dependencies:
1277 | to-regex-range "^5.0.1"
1278 |
1279 | find-up@^4.0.0, find-up@^4.1.0:
1280 | version "4.1.0"
1281 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
1282 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1283 | dependencies:
1284 | locate-path "^5.0.0"
1285 | path-exists "^4.0.0"
1286 |
1287 | fs.realpath@^1.0.0:
1288 | version "1.0.0"
1289 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
1290 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1291 |
1292 | fsevents@^2.3.2:
1293 | version "2.3.2"
1294 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1295 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1296 |
1297 | function-bind@^1.1.1:
1298 | version "1.1.1"
1299 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
1300 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1301 |
1302 | gensync@^1.0.0-beta.2:
1303 | version "1.0.0-beta.2"
1304 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
1305 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1306 |
1307 | get-caller-file@^2.0.5:
1308 | version "2.0.5"
1309 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
1310 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
1311 |
1312 | get-package-type@^0.1.0:
1313 | version "0.1.0"
1314 | resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"
1315 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
1316 |
1317 | get-stream@^6.0.0:
1318 | version "6.0.1"
1319 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
1320 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
1321 |
1322 | glob@^7.1.3, glob@^7.1.4:
1323 | version "7.1.7"
1324 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
1325 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1326 | dependencies:
1327 | fs.realpath "^1.0.0"
1328 | inflight "^1.0.4"
1329 | inherits "2"
1330 | minimatch "^3.0.4"
1331 | once "^1.3.0"
1332 | path-is-absolute "^1.0.0"
1333 |
1334 | globals@^11.1.0:
1335 | version "11.12.0"
1336 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
1337 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1338 |
1339 | graceful-fs@^4.2.9:
1340 | version "4.2.10"
1341 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
1342 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
1343 |
1344 | has-flag@^3.0.0:
1345 | version "3.0.0"
1346 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
1347 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1348 |
1349 | has-flag@^4.0.0:
1350 | version "4.0.0"
1351 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
1352 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1353 |
1354 | has@^1.0.3:
1355 | version "1.0.3"
1356 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
1357 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1358 | dependencies:
1359 | function-bind "^1.1.1"
1360 |
1361 | html-escaper@^2.0.0:
1362 | version "2.0.2"
1363 | resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
1364 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
1365 |
1366 | htmlparser2@^8.0.1:
1367 | version "8.0.1"
1368 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.1.tgz#abaa985474fcefe269bc761a779b544d7196d010"
1369 | integrity sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==
1370 | dependencies:
1371 | domelementtype "^2.3.0"
1372 | domhandler "^5.0.2"
1373 | domutils "^3.0.1"
1374 | entities "^4.3.0"
1375 |
1376 | human-signals@^2.1.0:
1377 | version "2.1.0"
1378 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
1379 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
1380 |
1381 | import-local@^3.0.2:
1382 | version "3.0.2"
1383 | resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz"
1384 | integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
1385 | dependencies:
1386 | pkg-dir "^4.2.0"
1387 | resolve-cwd "^3.0.0"
1388 |
1389 | imurmurhash@^0.1.4:
1390 | version "0.1.4"
1391 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
1392 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1393 |
1394 | inflight@^1.0.4:
1395 | version "1.0.6"
1396 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
1397 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1398 | dependencies:
1399 | once "^1.3.0"
1400 | wrappy "1"
1401 |
1402 | inherits@2:
1403 | version "2.0.4"
1404 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
1405 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1406 |
1407 | is-arrayish@^0.2.1:
1408 | version "0.2.1"
1409 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
1410 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
1411 |
1412 | is-core-module@^2.9.0:
1413 | version "2.9.0"
1414 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
1415 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
1416 | dependencies:
1417 | has "^1.0.3"
1418 |
1419 | is-fullwidth-code-point@^3.0.0:
1420 | version "3.0.0"
1421 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
1422 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
1423 |
1424 | is-generator-fn@^2.0.0:
1425 | version "2.1.0"
1426 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz"
1427 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
1428 |
1429 | is-number@^7.0.0:
1430 | version "7.0.0"
1431 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
1432 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1433 |
1434 | is-stream@^2.0.0:
1435 | version "2.0.0"
1436 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
1437 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
1438 |
1439 | isexe@^2.0.0:
1440 | version "2.0.0"
1441 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
1442 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1443 |
1444 | istanbul-lib-coverage@^3.0.0:
1445 | version "3.0.0"
1446 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"
1447 | integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
1448 |
1449 | istanbul-lib-coverage@^3.2.0:
1450 | version "3.2.0"
1451 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3"
1452 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==
1453 |
1454 | istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0:
1455 | version "5.2.0"
1456 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f"
1457 | integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==
1458 | dependencies:
1459 | "@babel/core" "^7.12.3"
1460 | "@babel/parser" "^7.14.7"
1461 | "@istanbuljs/schema" "^0.1.2"
1462 | istanbul-lib-coverage "^3.2.0"
1463 | semver "^6.3.0"
1464 |
1465 | istanbul-lib-report@^3.0.0:
1466 | version "3.0.0"
1467 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
1468 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
1469 | dependencies:
1470 | istanbul-lib-coverage "^3.0.0"
1471 | make-dir "^3.0.0"
1472 | supports-color "^7.1.0"
1473 |
1474 | istanbul-lib-source-maps@^4.0.0:
1475 | version "4.0.0"
1476 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"
1477 | integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
1478 | dependencies:
1479 | debug "^4.1.1"
1480 | istanbul-lib-coverage "^3.0.0"
1481 | source-map "^0.6.1"
1482 |
1483 | istanbul-reports@^3.1.3:
1484 | version "3.1.4"
1485 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c"
1486 | integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==
1487 | dependencies:
1488 | html-escaper "^2.0.0"
1489 | istanbul-lib-report "^3.0.0"
1490 |
1491 | jest-changed-files@^28.0.2:
1492 | version "28.0.2"
1493 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.0.2.tgz#7d7810660a5bd043af9e9cfbe4d58adb05e91531"
1494 | integrity sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA==
1495 | dependencies:
1496 | execa "^5.0.0"
1497 | throat "^6.0.1"
1498 |
1499 | jest-circus@^28.1.2:
1500 | version "28.1.2"
1501 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.2.tgz#0d5a5623eccb244efe87d1edc365696e4fcf80ce"
1502 | integrity sha512-E2vdPIJG5/69EMpslFhaA46WkcrN74LI5V/cSJ59L7uS8UNoXbzTxmwhpi9XrIL3zqvMt5T0pl5k2l2u2GwBNQ==
1503 | dependencies:
1504 | "@jest/environment" "^28.1.2"
1505 | "@jest/expect" "^28.1.2"
1506 | "@jest/test-result" "^28.1.1"
1507 | "@jest/types" "^28.1.1"
1508 | "@types/node" "*"
1509 | chalk "^4.0.0"
1510 | co "^4.6.0"
1511 | dedent "^0.7.0"
1512 | is-generator-fn "^2.0.0"
1513 | jest-each "^28.1.1"
1514 | jest-matcher-utils "^28.1.1"
1515 | jest-message-util "^28.1.1"
1516 | jest-runtime "^28.1.2"
1517 | jest-snapshot "^28.1.2"
1518 | jest-util "^28.1.1"
1519 | pretty-format "^28.1.1"
1520 | slash "^3.0.0"
1521 | stack-utils "^2.0.3"
1522 | throat "^6.0.1"
1523 |
1524 | jest-cli@^28.1.2:
1525 | version "28.1.2"
1526 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.2.tgz#b89012e5bad14135e71b1628b85475d3773a1bbc"
1527 | integrity sha512-l6eoi5Do/IJUXAFL9qRmDiFpBeEJAnjJb1dcd9i/VWfVWbp3mJhuH50dNtX67Ali4Ecvt4eBkWb4hXhPHkAZTw==
1528 | dependencies:
1529 | "@jest/core" "^28.1.2"
1530 | "@jest/test-result" "^28.1.1"
1531 | "@jest/types" "^28.1.1"
1532 | chalk "^4.0.0"
1533 | exit "^0.1.2"
1534 | graceful-fs "^4.2.9"
1535 | import-local "^3.0.2"
1536 | jest-config "^28.1.2"
1537 | jest-util "^28.1.1"
1538 | jest-validate "^28.1.1"
1539 | prompts "^2.0.1"
1540 | yargs "^17.3.1"
1541 |
1542 | jest-config@^28.1.2:
1543 | version "28.1.2"
1544 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.2.tgz#ba00ad30caf62286c86e7c1099e915218a0ac8c6"
1545 | integrity sha512-g6EfeRqddVbjPVBVY4JWpUY4IvQoFRIZcv4V36QkqzE0IGhEC/VkugFeBMAeUE7PRgC8KJF0yvJNDeQRbamEVA==
1546 | dependencies:
1547 | "@babel/core" "^7.11.6"
1548 | "@jest/test-sequencer" "^28.1.1"
1549 | "@jest/types" "^28.1.1"
1550 | babel-jest "^28.1.2"
1551 | chalk "^4.0.0"
1552 | ci-info "^3.2.0"
1553 | deepmerge "^4.2.2"
1554 | glob "^7.1.3"
1555 | graceful-fs "^4.2.9"
1556 | jest-circus "^28.1.2"
1557 | jest-environment-node "^28.1.2"
1558 | jest-get-type "^28.0.2"
1559 | jest-regex-util "^28.0.2"
1560 | jest-resolve "^28.1.1"
1561 | jest-runner "^28.1.2"
1562 | jest-util "^28.1.1"
1563 | jest-validate "^28.1.1"
1564 | micromatch "^4.0.4"
1565 | parse-json "^5.2.0"
1566 | pretty-format "^28.1.1"
1567 | slash "^3.0.0"
1568 | strip-json-comments "^3.1.1"
1569 |
1570 | jest-diff@^28.1.1:
1571 | version "28.1.1"
1572 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.1.tgz#1a3eedfd81ae79810931c63a1d0f201b9120106c"
1573 | integrity sha512-/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg==
1574 | dependencies:
1575 | chalk "^4.0.0"
1576 | diff-sequences "^28.1.1"
1577 | jest-get-type "^28.0.2"
1578 | pretty-format "^28.1.1"
1579 |
1580 | jest-docblock@^28.1.1:
1581 | version "28.1.1"
1582 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8"
1583 | integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==
1584 | dependencies:
1585 | detect-newline "^3.0.0"
1586 |
1587 | jest-each@^28.1.1:
1588 | version "28.1.1"
1589 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.1.tgz#ba5238dacf4f31d9fe23ddc2c44c01e7c23885c4"
1590 | integrity sha512-A042rqh17ZvEhRceDMi784ppoXR7MWGDEKTXEZXb4svt0eShMZvijGxzKsx+yIjeE8QYmHPrnHiTSQVhN4nqaw==
1591 | dependencies:
1592 | "@jest/types" "^28.1.1"
1593 | chalk "^4.0.0"
1594 | jest-get-type "^28.0.2"
1595 | jest-util "^28.1.1"
1596 | pretty-format "^28.1.1"
1597 |
1598 | jest-environment-node@^28.1.2:
1599 | version "28.1.2"
1600 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.2.tgz#3e2eb47f6d173b0648d5f7c717cb1c26651d5c8a"
1601 | integrity sha512-oYsZz9Qw27XKmOgTtnl0jW7VplJkN2oeof+SwAwKFQacq3CLlG9u4kTGuuLWfvu3J7bVutWlrbEQMOCL/jughw==
1602 | dependencies:
1603 | "@jest/environment" "^28.1.2"
1604 | "@jest/fake-timers" "^28.1.2"
1605 | "@jest/types" "^28.1.1"
1606 | "@types/node" "*"
1607 | jest-mock "^28.1.1"
1608 | jest-util "^28.1.1"
1609 |
1610 | jest-get-type@^28.0.2:
1611 | version "28.0.2"
1612 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203"
1613 | integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==
1614 |
1615 | jest-haste-map@^28.1.1:
1616 | version "28.1.1"
1617 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.1.tgz#471685f1acd365a9394745bb97c8fc16289adca3"
1618 | integrity sha512-ZrRSE2o3Ezh7sb1KmeLEZRZ4mgufbrMwolcFHNRSjKZhpLa8TdooXOOFlSwoUzlbVs1t0l7upVRW2K7RWGHzbQ==
1619 | dependencies:
1620 | "@jest/types" "^28.1.1"
1621 | "@types/graceful-fs" "^4.1.3"
1622 | "@types/node" "*"
1623 | anymatch "^3.0.3"
1624 | fb-watchman "^2.0.0"
1625 | graceful-fs "^4.2.9"
1626 | jest-regex-util "^28.0.2"
1627 | jest-util "^28.1.1"
1628 | jest-worker "^28.1.1"
1629 | micromatch "^4.0.4"
1630 | walker "^1.0.8"
1631 | optionalDependencies:
1632 | fsevents "^2.3.2"
1633 |
1634 | jest-leak-detector@^28.1.1:
1635 | version "28.1.1"
1636 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.1.tgz#537f37afd610a4b3f4cab15e06baf60484548efb"
1637 | integrity sha512-4jvs8V8kLbAaotE+wFR7vfUGf603cwYtFf1/PYEsyX2BAjSzj8hQSVTP6OWzseTl0xL6dyHuKs2JAks7Pfubmw==
1638 | dependencies:
1639 | jest-get-type "^28.0.2"
1640 | pretty-format "^28.1.1"
1641 |
1642 | jest-matcher-utils@^28.0.0, jest-matcher-utils@^28.1.1:
1643 | version "28.1.1"
1644 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.1.tgz#a7c4653c2b782ec96796eb3088060720f1e29304"
1645 | integrity sha512-NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw==
1646 | dependencies:
1647 | chalk "^4.0.0"
1648 | jest-diff "^28.1.1"
1649 | jest-get-type "^28.0.2"
1650 | pretty-format "^28.1.1"
1651 |
1652 | jest-message-util@^28.1.1:
1653 | version "28.1.1"
1654 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.1.tgz#60aa0b475cfc08c8a9363ed2fb9108514dd9ab89"
1655 | integrity sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ==
1656 | dependencies:
1657 | "@babel/code-frame" "^7.12.13"
1658 | "@jest/types" "^28.1.1"
1659 | "@types/stack-utils" "^2.0.0"
1660 | chalk "^4.0.0"
1661 | graceful-fs "^4.2.9"
1662 | micromatch "^4.0.4"
1663 | pretty-format "^28.1.1"
1664 | slash "^3.0.0"
1665 | stack-utils "^2.0.3"
1666 |
1667 | jest-mock@^28.1.1:
1668 | version "28.1.1"
1669 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.1.tgz#37903d269427fa1ef5b2447be874e1c62a39a371"
1670 | integrity sha512-bDCb0FjfsmKweAvE09dZT59IMkzgN0fYBH6t5S45NoJfd2DHkS3ySG2K+hucortryhO3fVuXdlxWcbtIuV/Skw==
1671 | dependencies:
1672 | "@jest/types" "^28.1.1"
1673 | "@types/node" "*"
1674 |
1675 | jest-pnp-resolver@^1.2.2:
1676 | version "1.2.2"
1677 | resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz"
1678 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
1679 |
1680 | jest-regex-util@^28.0.2:
1681 | version "28.0.2"
1682 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead"
1683 | integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==
1684 |
1685 | jest-resolve-dependencies@^28.1.2:
1686 | version "28.1.2"
1687 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.2.tgz#ca528858e0c6642d5a1dda8fc7cda10230c275bc"
1688 | integrity sha512-OXw4vbOZuyRTBi3tapWBqdyodU+T33ww5cPZORuTWkg+Y8lmsxQlVu3MWtJh6NMlKRTHQetF96yGPv01Ye7Mbg==
1689 | dependencies:
1690 | jest-regex-util "^28.0.2"
1691 | jest-snapshot "^28.1.2"
1692 |
1693 | jest-resolve@^28.1.1:
1694 | version "28.1.1"
1695 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.1.tgz#bc2eaf384abdcc1aaf3ba7c50d1adf01e59095e5"
1696 | integrity sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==
1697 | dependencies:
1698 | chalk "^4.0.0"
1699 | graceful-fs "^4.2.9"
1700 | jest-haste-map "^28.1.1"
1701 | jest-pnp-resolver "^1.2.2"
1702 | jest-util "^28.1.1"
1703 | jest-validate "^28.1.1"
1704 | resolve "^1.20.0"
1705 | resolve.exports "^1.1.0"
1706 | slash "^3.0.0"
1707 |
1708 | jest-runner@^28.1.2:
1709 | version "28.1.2"
1710 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.2.tgz#f293409592a62234285a71237e38499a3554e350"
1711 | integrity sha512-6/k3DlAsAEr5VcptCMdhtRhOoYClZQmxnVMZvZ/quvPGRpN7OBQYPIC32tWSgOnbgqLXNs5RAniC+nkdFZpD4A==
1712 | dependencies:
1713 | "@jest/console" "^28.1.1"
1714 | "@jest/environment" "^28.1.2"
1715 | "@jest/test-result" "^28.1.1"
1716 | "@jest/transform" "^28.1.2"
1717 | "@jest/types" "^28.1.1"
1718 | "@types/node" "*"
1719 | chalk "^4.0.0"
1720 | emittery "^0.10.2"
1721 | graceful-fs "^4.2.9"
1722 | jest-docblock "^28.1.1"
1723 | jest-environment-node "^28.1.2"
1724 | jest-haste-map "^28.1.1"
1725 | jest-leak-detector "^28.1.1"
1726 | jest-message-util "^28.1.1"
1727 | jest-resolve "^28.1.1"
1728 | jest-runtime "^28.1.2"
1729 | jest-util "^28.1.1"
1730 | jest-watcher "^28.1.1"
1731 | jest-worker "^28.1.1"
1732 | source-map-support "0.5.13"
1733 | throat "^6.0.1"
1734 |
1735 | jest-runtime@^28.1.2:
1736 | version "28.1.2"
1737 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.2.tgz#d68f34f814a848555a345ceda23289f14d59a688"
1738 | integrity sha512-i4w93OsWzLOeMXSi9epmakb2+3z0AchZtUQVF1hesBmcQQy4vtaql5YdVe9KexdJaVRyPDw8DoBR0j3lYsZVYw==
1739 | dependencies:
1740 | "@jest/environment" "^28.1.2"
1741 | "@jest/fake-timers" "^28.1.2"
1742 | "@jest/globals" "^28.1.2"
1743 | "@jest/source-map" "^28.1.2"
1744 | "@jest/test-result" "^28.1.1"
1745 | "@jest/transform" "^28.1.2"
1746 | "@jest/types" "^28.1.1"
1747 | chalk "^4.0.0"
1748 | cjs-module-lexer "^1.0.0"
1749 | collect-v8-coverage "^1.0.0"
1750 | execa "^5.0.0"
1751 | glob "^7.1.3"
1752 | graceful-fs "^4.2.9"
1753 | jest-haste-map "^28.1.1"
1754 | jest-message-util "^28.1.1"
1755 | jest-mock "^28.1.1"
1756 | jest-regex-util "^28.0.2"
1757 | jest-resolve "^28.1.1"
1758 | jest-snapshot "^28.1.2"
1759 | jest-util "^28.1.1"
1760 | slash "^3.0.0"
1761 | strip-bom "^4.0.0"
1762 |
1763 | jest-snapshot@^28.1.2:
1764 | version "28.1.2"
1765 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.2.tgz#93d31b87b11b384f5946fe0767541496135f8d52"
1766 | integrity sha512-wzrieFttZYfLvrCVRJxX+jwML2YTArOUqFpCoSVy1QUapx+LlV9uLbV/mMEhYj4t7aMeE9aSQFHSvV/oNoDAMA==
1767 | dependencies:
1768 | "@babel/core" "^7.11.6"
1769 | "@babel/generator" "^7.7.2"
1770 | "@babel/plugin-syntax-typescript" "^7.7.2"
1771 | "@babel/traverse" "^7.7.2"
1772 | "@babel/types" "^7.3.3"
1773 | "@jest/expect-utils" "^28.1.1"
1774 | "@jest/transform" "^28.1.2"
1775 | "@jest/types" "^28.1.1"
1776 | "@types/babel__traverse" "^7.0.6"
1777 | "@types/prettier" "^2.1.5"
1778 | babel-preset-current-node-syntax "^1.0.0"
1779 | chalk "^4.0.0"
1780 | expect "^28.1.1"
1781 | graceful-fs "^4.2.9"
1782 | jest-diff "^28.1.1"
1783 | jest-get-type "^28.0.2"
1784 | jest-haste-map "^28.1.1"
1785 | jest-matcher-utils "^28.1.1"
1786 | jest-message-util "^28.1.1"
1787 | jest-util "^28.1.1"
1788 | natural-compare "^1.4.0"
1789 | pretty-format "^28.1.1"
1790 | semver "^7.3.5"
1791 |
1792 | jest-util@^28.0.0, jest-util@^28.1.1:
1793 | version "28.1.1"
1794 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.1.tgz#ff39e436a1aca397c0ab998db5a51ae2b7080d05"
1795 | integrity sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==
1796 | dependencies:
1797 | "@jest/types" "^28.1.1"
1798 | "@types/node" "*"
1799 | chalk "^4.0.0"
1800 | ci-info "^3.2.0"
1801 | graceful-fs "^4.2.9"
1802 | picomatch "^2.2.3"
1803 |
1804 | jest-validate@^28.1.1:
1805 | version "28.1.1"
1806 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.1.tgz#59b7b339b3c85b5144bd0c06ad3600f503a4acc8"
1807 | integrity sha512-Kpf6gcClqFCIZ4ti5++XemYJWUPCFUW+N2gknn+KgnDf549iLul3cBuKVe1YcWRlaF8tZV8eJCap0eECOEE3Ug==
1808 | dependencies:
1809 | "@jest/types" "^28.1.1"
1810 | camelcase "^6.2.0"
1811 | chalk "^4.0.0"
1812 | jest-get-type "^28.0.2"
1813 | leven "^3.1.0"
1814 | pretty-format "^28.1.1"
1815 |
1816 | jest-watcher@^28.1.1:
1817 | version "28.1.1"
1818 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.1.tgz#533597fb3bfefd52b5cd115cd916cffd237fb60c"
1819 | integrity sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug==
1820 | dependencies:
1821 | "@jest/test-result" "^28.1.1"
1822 | "@jest/types" "^28.1.1"
1823 | "@types/node" "*"
1824 | ansi-escapes "^4.2.1"
1825 | chalk "^4.0.0"
1826 | emittery "^0.10.2"
1827 | jest-util "^28.1.1"
1828 | string-length "^4.0.1"
1829 |
1830 | jest-worker@^28.1.1:
1831 | version "28.1.1"
1832 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.1.tgz#3480c73247171dfd01eda77200f0063ab6a3bf28"
1833 | integrity sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==
1834 | dependencies:
1835 | "@types/node" "*"
1836 | merge-stream "^2.0.0"
1837 | supports-color "^8.0.0"
1838 |
1839 | jest@^28.1.2:
1840 | version "28.1.2"
1841 | resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.2.tgz#451ff24081ce31ca00b07b60c61add13aa96f8eb"
1842 | integrity sha512-Tuf05DwLeCh2cfWCQbcz9UxldoDyiR1E9Igaei5khjonKncYdc6LDfynKCEWozK0oLE3GD+xKAo2u8x/0s6GOg==
1843 | dependencies:
1844 | "@jest/core" "^28.1.2"
1845 | "@jest/types" "^28.1.1"
1846 | import-local "^3.0.2"
1847 | jest-cli "^28.1.2"
1848 |
1849 | js-tokens@^4.0.0:
1850 | version "4.0.0"
1851 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
1852 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1853 |
1854 | js-yaml@^3.13.1:
1855 | version "3.14.1"
1856 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
1857 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
1858 | dependencies:
1859 | argparse "^1.0.7"
1860 | esprima "^4.0.0"
1861 |
1862 | jsesc@^2.5.1:
1863 | version "2.5.2"
1864 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
1865 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1866 |
1867 | json-parse-even-better-errors@^2.3.0:
1868 | version "2.3.1"
1869 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
1870 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
1871 |
1872 | json5@^2.2.1:
1873 | version "2.2.3"
1874 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
1875 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
1876 |
1877 | kleur@^3.0.3:
1878 | version "3.0.3"
1879 | resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"
1880 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
1881 |
1882 | kleur@^4.1.3:
1883 | version "4.1.4"
1884 | resolved "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz"
1885 | integrity sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==
1886 |
1887 | leven@^3.1.0:
1888 | version "3.1.0"
1889 | resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"
1890 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
1891 |
1892 | lines-and-columns@^1.1.6:
1893 | version "1.1.6"
1894 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz"
1895 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
1896 |
1897 | locate-path@^5.0.0:
1898 | version "5.0.0"
1899 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
1900 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
1901 | dependencies:
1902 | p-locate "^4.1.0"
1903 |
1904 | lodash.memoize@4.x:
1905 | version "4.1.2"
1906 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
1907 | integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
1908 |
1909 | lru-cache@^6.0.0:
1910 | version "6.0.0"
1911 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
1912 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1913 | dependencies:
1914 | yallist "^4.0.0"
1915 |
1916 | make-dir@^3.0.0:
1917 | version "3.1.0"
1918 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
1919 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
1920 | dependencies:
1921 | semver "^6.0.0"
1922 |
1923 | make-error@1.x:
1924 | version "1.3.6"
1925 | resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz"
1926 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
1927 |
1928 | makeerror@1.0.12:
1929 | version "1.0.12"
1930 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a"
1931 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==
1932 | dependencies:
1933 | tmpl "1.0.5"
1934 |
1935 | merge-stream@^2.0.0:
1936 | version "2.0.0"
1937 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
1938 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
1939 |
1940 | micromatch@^4.0.4:
1941 | version "4.0.8"
1942 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
1943 | integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
1944 | dependencies:
1945 | braces "^3.0.3"
1946 | picomatch "^2.3.1"
1947 |
1948 | mimic-fn@^2.1.0:
1949 | version "2.1.0"
1950 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
1951 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
1952 |
1953 | minimatch@^3.0.4:
1954 | version "3.1.2"
1955 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1956 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1957 | dependencies:
1958 | brace-expansion "^1.1.7"
1959 |
1960 | ms@2.1.2:
1961 | version "2.1.2"
1962 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
1963 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1964 |
1965 | natural-compare@^1.4.0:
1966 | version "1.4.0"
1967 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
1968 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1969 |
1970 | node-int64@^0.4.0:
1971 | version "0.4.0"
1972 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"
1973 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
1974 |
1975 | node-releases@^2.0.5:
1976 | version "2.0.6"
1977 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
1978 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
1979 |
1980 | normalize-path@^3.0.0:
1981 | version "3.0.0"
1982 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
1983 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1984 |
1985 | npm-run-path@^4.0.1:
1986 | version "4.0.1"
1987 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
1988 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
1989 | dependencies:
1990 | path-key "^3.0.0"
1991 |
1992 | nth-check@^2.0.1:
1993 | version "2.1.1"
1994 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
1995 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
1996 | dependencies:
1997 | boolbase "^1.0.0"
1998 |
1999 | once@^1.3.0:
2000 | version "1.4.0"
2001 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
2002 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
2003 | dependencies:
2004 | wrappy "1"
2005 |
2006 | onetime@^5.1.2:
2007 | version "5.1.2"
2008 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
2009 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
2010 | dependencies:
2011 | mimic-fn "^2.1.0"
2012 |
2013 | p-limit@^2.2.0:
2014 | version "2.3.0"
2015 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
2016 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
2017 | dependencies:
2018 | p-try "^2.0.0"
2019 |
2020 | p-locate@^4.1.0:
2021 | version "4.1.0"
2022 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
2023 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
2024 | dependencies:
2025 | p-limit "^2.2.0"
2026 |
2027 | p-try@^2.0.0:
2028 | version "2.2.0"
2029 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
2030 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2031 |
2032 | parse-json@^5.2.0:
2033 | version "5.2.0"
2034 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
2035 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
2036 | dependencies:
2037 | "@babel/code-frame" "^7.0.0"
2038 | error-ex "^1.3.1"
2039 | json-parse-even-better-errors "^2.3.0"
2040 | lines-and-columns "^1.1.6"
2041 |
2042 | parse5-htmlparser2-tree-adapter@^7.0.0:
2043 | version "7.0.0"
2044 | resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1"
2045 | integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==
2046 | dependencies:
2047 | domhandler "^5.0.2"
2048 | parse5 "^7.0.0"
2049 |
2050 | parse5@^7.0.0:
2051 | version "7.0.0"
2052 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.0.0.tgz#51f74a5257f5fcc536389e8c2d0b3802e1bfa91a"
2053 | integrity sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==
2054 | dependencies:
2055 | entities "^4.3.0"
2056 |
2057 | path-exists@^4.0.0:
2058 | version "4.0.0"
2059 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
2060 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
2061 |
2062 | path-is-absolute@^1.0.0:
2063 | version "1.0.1"
2064 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
2065 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
2066 |
2067 | path-key@^3.0.0, path-key@^3.1.0:
2068 | version "3.1.1"
2069 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
2070 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
2071 |
2072 | path-parse@^1.0.7:
2073 | version "1.0.7"
2074 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2075 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2076 |
2077 | picocolors@^1.0.0:
2078 | version "1.0.0"
2079 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
2080 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
2081 |
2082 | picomatch@^2.0.4, picomatch@^2.2.3:
2083 | version "2.3.0"
2084 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"
2085 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
2086 |
2087 | picomatch@^2.3.1:
2088 | version "2.3.1"
2089 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
2090 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
2091 |
2092 | pirates@^4.0.4:
2093 | version "4.0.5"
2094 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
2095 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
2096 |
2097 | pkg-dir@^4.2.0:
2098 | version "4.2.0"
2099 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
2100 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
2101 | dependencies:
2102 | find-up "^4.0.0"
2103 |
2104 | prettier@2.7.1:
2105 | version "2.7.1"
2106 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64"
2107 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==
2108 |
2109 | pretty-format@^28.0.0, pretty-format@^28.1.1:
2110 | version "28.1.1"
2111 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.1.tgz#f731530394e0f7fcd95aba6b43c50e02d86b95cb"
2112 | integrity sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw==
2113 | dependencies:
2114 | "@jest/schemas" "^28.0.2"
2115 | ansi-regex "^5.0.1"
2116 | ansi-styles "^5.0.0"
2117 | react-is "^18.0.0"
2118 |
2119 | prompts@^2.0.1:
2120 | version "2.4.1"
2121 | resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz"
2122 | integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==
2123 | dependencies:
2124 | kleur "^3.0.3"
2125 | sisteransi "^1.0.5"
2126 |
2127 | react-is@^18.0.0:
2128 | version "18.2.0"
2129 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b"
2130 | integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==
2131 |
2132 | require-directory@^2.1.1:
2133 | version "2.1.1"
2134 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
2135 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
2136 |
2137 | resolve-cwd@^3.0.0:
2138 | version "3.0.0"
2139 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
2140 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
2141 | dependencies:
2142 | resolve-from "^5.0.0"
2143 |
2144 | resolve-from@^5.0.0:
2145 | version "5.0.0"
2146 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
2147 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
2148 |
2149 | resolve.exports@^1.1.0:
2150 | version "1.1.0"
2151 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9"
2152 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
2153 |
2154 | resolve@^1.20.0:
2155 | version "1.22.1"
2156 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
2157 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
2158 | dependencies:
2159 | is-core-module "^2.9.0"
2160 | path-parse "^1.0.7"
2161 | supports-preserve-symlinks-flag "^1.0.0"
2162 |
2163 | rimraf@^3.0.0:
2164 | version "3.0.2"
2165 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
2166 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2167 | dependencies:
2168 | glob "^7.1.3"
2169 |
2170 | safe-buffer@~5.1.1:
2171 | version "5.1.2"
2172 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
2173 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
2174 |
2175 | semver@7.x, semver@^7.3.5:
2176 | version "7.5.4"
2177 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
2178 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
2179 | dependencies:
2180 | lru-cache "^6.0.0"
2181 |
2182 | semver@^6.0.0, semver@^6.3.0:
2183 | version "6.3.1"
2184 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
2185 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
2186 |
2187 | shebang-command@^2.0.0:
2188 | version "2.0.0"
2189 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
2190 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2191 | dependencies:
2192 | shebang-regex "^3.0.0"
2193 |
2194 | shebang-regex@^3.0.0:
2195 | version "3.0.0"
2196 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
2197 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2198 |
2199 | signal-exit@^3.0.3, signal-exit@^3.0.7:
2200 | version "3.0.7"
2201 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
2202 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
2203 |
2204 | sisteransi@^1.0.5:
2205 | version "1.0.5"
2206 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz"
2207 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
2208 |
2209 | slash@^3.0.0:
2210 | version "3.0.0"
2211 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
2212 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2213 |
2214 | source-map-support@0.5.13:
2215 | version "0.5.13"
2216 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932"
2217 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==
2218 | dependencies:
2219 | buffer-from "^1.0.0"
2220 | source-map "^0.6.0"
2221 |
2222 | source-map@^0.6.0, source-map@^0.6.1:
2223 | version "0.6.1"
2224 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
2225 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
2226 |
2227 | sprintf-js@~1.0.2:
2228 | version "1.0.3"
2229 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
2230 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
2231 |
2232 | stack-utils@^2.0.3:
2233 | version "2.0.5"
2234 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5"
2235 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==
2236 | dependencies:
2237 | escape-string-regexp "^2.0.0"
2238 |
2239 | string-length@^4.0.1:
2240 | version "4.0.2"
2241 | resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz"
2242 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
2243 | dependencies:
2244 | char-regex "^1.0.2"
2245 | strip-ansi "^6.0.0"
2246 |
2247 | string-width@^4.1.0, string-width@^4.2.0:
2248 | version "4.2.2"
2249 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz"
2250 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
2251 | dependencies:
2252 | emoji-regex "^8.0.0"
2253 | is-fullwidth-code-point "^3.0.0"
2254 | strip-ansi "^6.0.0"
2255 |
2256 | string-width@^4.2.3:
2257 | version "4.2.3"
2258 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
2259 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
2260 | dependencies:
2261 | emoji-regex "^8.0.0"
2262 | is-fullwidth-code-point "^3.0.0"
2263 | strip-ansi "^6.0.1"
2264 |
2265 | strip-ansi@^6.0.0:
2266 | version "6.0.0"
2267 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"
2268 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
2269 | dependencies:
2270 | ansi-regex "^5.0.0"
2271 |
2272 | strip-ansi@^6.0.1:
2273 | version "6.0.1"
2274 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
2275 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
2276 | dependencies:
2277 | ansi-regex "^5.0.1"
2278 |
2279 | strip-bom@^4.0.0:
2280 | version "4.0.0"
2281 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"
2282 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
2283 |
2284 | strip-final-newline@^2.0.0:
2285 | version "2.0.0"
2286 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
2287 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
2288 |
2289 | strip-json-comments@^3.1.1:
2290 | version "3.1.1"
2291 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
2292 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2293 |
2294 | supports-color@^5.3.0:
2295 | version "5.5.0"
2296 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
2297 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2298 | dependencies:
2299 | has-flag "^3.0.0"
2300 |
2301 | supports-color@^7.0.0, supports-color@^7.1.0:
2302 | version "7.2.0"
2303 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
2304 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2305 | dependencies:
2306 | has-flag "^4.0.0"
2307 |
2308 | supports-color@^8.0.0:
2309 | version "8.1.1"
2310 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
2311 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
2312 | dependencies:
2313 | has-flag "^4.0.0"
2314 |
2315 | supports-hyperlinks@^2.0.0:
2316 | version "2.2.0"
2317 | resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"
2318 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
2319 | dependencies:
2320 | has-flag "^4.0.0"
2321 | supports-color "^7.0.0"
2322 |
2323 | supports-preserve-symlinks-flag@^1.0.0:
2324 | version "1.0.0"
2325 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
2326 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
2327 |
2328 | terminal-link@^2.0.0:
2329 | version "2.1.1"
2330 | resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz"
2331 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
2332 | dependencies:
2333 | ansi-escapes "^4.2.1"
2334 | supports-hyperlinks "^2.0.0"
2335 |
2336 | test-exclude@^6.0.0:
2337 | version "6.0.0"
2338 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"
2339 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
2340 | dependencies:
2341 | "@istanbuljs/schema" "^0.1.2"
2342 | glob "^7.1.4"
2343 | minimatch "^3.0.4"
2344 |
2345 | throat@^6.0.1:
2346 | version "6.0.1"
2347 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
2348 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==
2349 |
2350 | tmpl@1.0.5:
2351 | version "1.0.5"
2352 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
2353 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
2354 |
2355 | to-fast-properties@^2.0.0:
2356 | version "2.0.0"
2357 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
2358 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
2359 |
2360 | to-regex-range@^5.0.1:
2361 | version "5.0.1"
2362 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
2363 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2364 | dependencies:
2365 | is-number "^7.0.0"
2366 |
2367 | ts-jest@^28.0.5:
2368 | version "28.0.5"
2369 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-28.0.5.tgz#31776f768fba6dfc8c061d488840ed0c8eeac8b9"
2370 | integrity sha512-Sx9FyP9pCY7pUzQpy4FgRZf2bhHY3za576HMKJFs+OnQ9jS96Du5vNsDKkyedQkik+sEabbKAnCliv9BEsHZgQ==
2371 | dependencies:
2372 | bs-logger "0.x"
2373 | fast-json-stable-stringify "2.x"
2374 | jest-util "^28.0.0"
2375 | json5 "^2.2.1"
2376 | lodash.memoize "4.x"
2377 | make-error "1.x"
2378 | semver "7.x"
2379 | yargs-parser "^21.0.1"
2380 |
2381 | tslib@^2.4.0:
2382 | version "2.4.0"
2383 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
2384 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
2385 |
2386 | type-detect@4.0.8:
2387 | version "4.0.8"
2388 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"
2389 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
2390 |
2391 | type-fest@^0.21.3:
2392 | version "0.21.3"
2393 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
2394 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
2395 |
2396 | typescript@^4.7.4:
2397 | version "4.7.4"
2398 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
2399 | integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
2400 |
2401 | update-browserslist-db@^1.0.4:
2402 | version "1.0.4"
2403 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz#dbfc5a789caa26b1db8990796c2c8ebbce304824"
2404 | integrity sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==
2405 | dependencies:
2406 | escalade "^3.1.1"
2407 | picocolors "^1.0.0"
2408 |
2409 | v8-to-istanbul@^9.0.1:
2410 | version "9.0.1"
2411 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz#b6f994b0b5d4ef255e17a0d17dc444a9f5132fa4"
2412 | integrity sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==
2413 | dependencies:
2414 | "@jridgewell/trace-mapping" "^0.3.12"
2415 | "@types/istanbul-lib-coverage" "^2.0.1"
2416 | convert-source-map "^1.6.0"
2417 |
2418 | walker@^1.0.8:
2419 | version "1.0.8"
2420 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f"
2421 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==
2422 | dependencies:
2423 | makeerror "1.0.12"
2424 |
2425 | which@^2.0.1:
2426 | version "2.0.2"
2427 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
2428 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2429 | dependencies:
2430 | isexe "^2.0.0"
2431 |
2432 | wrap-ansi@^7.0.0:
2433 | version "7.0.0"
2434 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
2435 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
2436 | dependencies:
2437 | ansi-styles "^4.0.0"
2438 | string-width "^4.1.0"
2439 | strip-ansi "^6.0.0"
2440 |
2441 | wrappy@1:
2442 | version "1.0.2"
2443 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
2444 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2445 |
2446 | write-file-atomic@^4.0.1:
2447 | version "4.0.1"
2448 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f"
2449 | integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==
2450 | dependencies:
2451 | imurmurhash "^0.1.4"
2452 | signal-exit "^3.0.7"
2453 |
2454 | y18n@^5.0.5:
2455 | version "5.0.8"
2456 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
2457 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
2458 |
2459 | yallist@^4.0.0:
2460 | version "4.0.0"
2461 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
2462 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2463 |
2464 | yargs-parser@^20.2.3:
2465 | version "20.2.9"
2466 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"
2467 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
2468 |
2469 | yargs-parser@^21.0.0, yargs-parser@^21.0.1:
2470 | version "21.0.1"
2471 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35"
2472 | integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==
2473 |
2474 | yargs@^17.3.1:
2475 | version "17.5.1"
2476 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e"
2477 | integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==
2478 | dependencies:
2479 | cliui "^7.0.2"
2480 | escalade "^3.1.1"
2481 | get-caller-file "^2.0.5"
2482 | require-directory "^2.1.1"
2483 | string-width "^4.2.3"
2484 | y18n "^5.0.5"
2485 | yargs-parser "^21.0.0"
2486 |
--------------------------------------------------------------------------------