├── .eslintignore
├── .prettierrc
├── test
├── .eslintrc.json
├── output
│ ├── pending.html
│ ├── fulfilledElement.html
│ ├── rejectedString.html
│ ├── rejectedError.html
│ ├── fulfilledNumber.html
│ ├── fulfilledString.html
│ ├── fulfilledString10Lines.html
│ ├── fulfilledMapProto.html
│ ├── fulfilledSetProto.html
│ ├── fulfilledString21Lines.html
│ ├── fulfilledString30Lines.html
│ ├── fulfilledImmutableRecord.html
│ ├── fulfilledSet.html
│ ├── fulfilledIntoMultiple.html
│ ├── fulfilledString30LinesOpen.html
│ ├── fulfilledImmutableRecordOpen.html
│ ├── fulfilledArray.html
│ ├── fulfilledImmutableSet.html
│ ├── fulfilledImmutableList.html
│ ├── fulfilledImmutableMap.html
│ ├── fulfilledMap.html
│ ├── fulfilledImmutableMapOpen.html
│ ├── fulfilledImmutableSetOpen.html
│ ├── fulfilledImmutableListOpen.html
│ └── fulfilledArrayOpen.html
├── into-test.js
├── jsdom.js
├── inspector-test.js
└── inspectors.js
├── .gitignore
├── src
├── formatDate.js
├── formatRegExp.js
├── formatError.js
├── inspectName.js
├── formatSymbol.js
├── dispatch.js
├── array.js
├── object.js
├── immutable.js
├── style.css
├── inspect.js
├── inspectFunction.js
├── index.js
├── formatString.js
├── collapsed.js
└── expanded.js
├── .eslintrc.json
├── .github
└── workflows
│ └── nodejs.yml
├── rollup.config.js
├── LICENSE
├── package.json
├── README.md
├── demo.html
└── yarn.lock
/.eslintignore:
--------------------------------------------------------------------------------
1 | dist/
2 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "bracketSpacing": false
3 | }
4 |
--------------------------------------------------------------------------------
/test/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "mocha": true
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.sublime-workspace
2 | .DS_Store
3 | .esm-cache/
4 | dist/
5 | node_modules
6 | npm-debug.log
7 |
--------------------------------------------------------------------------------
/test/output/pending.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledElement.html:
--------------------------------------------------------------------------------
1 |
2 | Surprise!
--------------------------------------------------------------------------------
/src/formatDate.js:
--------------------------------------------------------------------------------
1 | import {format} from "isoformat";
2 |
3 | export default function formatDate(date) {
4 | return format(date, "Invalid Date");
5 | }
6 |
--------------------------------------------------------------------------------
/src/formatRegExp.js:
--------------------------------------------------------------------------------
1 | var regExpToString = RegExp.prototype.toString;
2 |
3 | export default function formatRegExp(value) {
4 | return regExpToString.call(value);
5 | }
6 |
--------------------------------------------------------------------------------
/src/formatError.js:
--------------------------------------------------------------------------------
1 | var errorToString = Error.prototype.toString;
2 |
3 | export default function formatError(value) {
4 | return value.stack || errorToString.call(value);
5 | }
6 |
--------------------------------------------------------------------------------
/test/output/rejectedString.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/rejectedError.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledNumber.html:
--------------------------------------------------------------------------------
1 |
2 | 42
--------------------------------------------------------------------------------
/test/output/fulfilledString.html:
--------------------------------------------------------------------------------
1 |
2 | "hi"
--------------------------------------------------------------------------------
/src/inspectName.js:
--------------------------------------------------------------------------------
1 | export default function inspectName(name) {
2 | const n = document.createElement("span");
3 | n.className = "observablehq--cellname";
4 | n.textContent = `${name} = `;
5 | return n;
6 | }
7 |
--------------------------------------------------------------------------------
/src/formatSymbol.js:
--------------------------------------------------------------------------------
1 | const symbolToString = Symbol.prototype.toString;
2 |
3 | // Symbols do not coerce to strings; they must be explicitly converted.
4 | export default function formatSymbol(symbol) {
5 | return symbolToString.call(symbol);
6 | }
7 |
--------------------------------------------------------------------------------
/test/output/fulfilledString10Lines.html:
--------------------------------------------------------------------------------
1 |
2 | `hi
3 | hi
4 | hi
5 | hi
6 | hi
7 | hi
8 | hi
9 | hi
10 | hi
11 | hi`
--------------------------------------------------------------------------------
/test/into-test.js:
--------------------------------------------------------------------------------
1 | import {Inspector} from "@observablehq/inspector";
2 | import assert from "assert";
3 | import it from "./jsdom.js";
4 |
5 | it(`Inspector.into(selector) throws an error if no element is found`, () => {
6 | assert.throws(() => Inspector.into("unknown-id"), /container not found/);
7 | });
8 |
--------------------------------------------------------------------------------
/test/output/fulfilledMapProto.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledSetProto.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "eslint:recommended",
3 | "parserOptions": {
4 | "sourceType": "module",
5 | "ecmaVersion": 2020
6 | },
7 | "env": {
8 | "browser": true,
9 | "es6": true,
10 | "node": true
11 | },
12 | "rules": {
13 | "semi": 2,
14 | "no-process-env": 2,
15 | "no-cond-assign": 0,
16 | "no-redeclare": 0
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/test/output/fulfilledString21Lines.html:
--------------------------------------------------------------------------------
1 |
2 | `hi
3 | hi
4 | hi
5 | hi
6 | hi
7 | hi
8 | hi
9 | hi
10 | hi
11 | hi
12 | hi
13 | hi
14 | hi
15 | hi
16 | hi
17 | hi
18 | hi
19 | hi
20 | hi
21 | hi Show 1 truncated line
--------------------------------------------------------------------------------
/test/output/fulfilledString30Lines.html:
--------------------------------------------------------------------------------
1 |
2 | `hi
3 | hi
4 | hi
5 | hi
6 | hi
7 | hi
8 | hi
9 | hi
10 | hi
11 | hi
12 | hi
13 | hi
14 | hi
15 | hi
16 | hi
17 | hi
18 | hi
19 | hi
20 | hi
21 | hi Show 10 truncated lines
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableRecord.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledSet.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledIntoMultiple.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/dispatch.js:
--------------------------------------------------------------------------------
1 | export default function dispatch(node, type, detail) {
2 | detail = detail || {};
3 | var document = node.ownerDocument, event = document.defaultView.CustomEvent;
4 | if (typeof event === "function") {
5 | event = new event(type, {detail: detail});
6 | } else {
7 | event = document.createEvent("Event");
8 | event.initEvent(type, false, false);
9 | event.detail = detail;
10 | }
11 | node.dispatchEvent(event);
12 | }
13 |
--------------------------------------------------------------------------------
/test/output/fulfilledString30LinesOpen.html:
--------------------------------------------------------------------------------
1 |
2 | `hi
3 | hi
4 | hi
5 | hi
6 | hi
7 | hi
8 | hi
9 | hi
10 | hi
11 | hi
12 | hi
13 | hi
14 | hi
15 | hi
16 | hi
17 | hi
18 | hi
19 | hi
20 | hi
21 | hi
22 | hi
23 | hi
24 | hi
25 | hi
26 | hi
27 | hi
28 | hi
29 | hi
30 | hi
31 | hi`
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableRecordOpen.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledArray.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableSet.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableList.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableMap.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledMap.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableMapOpen.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableSetOpen.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.github/workflows/nodejs.yml:
--------------------------------------------------------------------------------
1 | name: Node CI
2 |
3 | on: [push]
4 |
5 | jobs:
6 | build:
7 |
8 | strategy:
9 | matrix:
10 | os: [ubuntu-latest]
11 | node-version: [14.x, 16.x, 18.x]
12 |
13 | runs-on: ${{ matrix.os }}
14 |
15 | steps:
16 | - uses: actions/checkout@v1
17 | - name: Use Node.js ${{ matrix.node-version }}
18 | uses: actions/setup-node@v1
19 | with:
20 | node-version: ${{ matrix.node-version }}
21 | - name: yarn install and test
22 | run: |
23 | yarn install --frozen-lockfile
24 | yarn test
25 | env:
26 | CI: true
27 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import node from "@rollup/plugin-node-resolve";
2 | import {terser} from "rollup-plugin-terser";
3 | import meta from "./package.json" assert {type: "json"};
4 |
5 | const copyright = `// @observablehq/inspector v${meta.version} Copyright ${(new Date).getFullYear()} Observable, Inc.`;
6 |
7 | export default [
8 | {
9 | input: "src/index.js",
10 | plugins: [
11 | node(),
12 | terser({output: {preamble: copyright}})
13 | ],
14 | output: {
15 | format: "umd",
16 | extend: true,
17 | name: "observablehq",
18 | file: "dist/inspector.js"
19 | }
20 | }
21 | ];
22 |
--------------------------------------------------------------------------------
/src/array.js:
--------------------------------------------------------------------------------
1 | // TODO https://twitter.com/mbostock/status/702737065121742848
2 | export function isarray(value) {
3 | return Array.isArray(value)
4 | || value instanceof Int8Array
5 | || value instanceof Int16Array
6 | || value instanceof Int32Array
7 | || value instanceof Uint8Array
8 | || value instanceof Uint8ClampedArray
9 | || value instanceof Uint16Array
10 | || value instanceof Uint32Array
11 | || value instanceof Float32Array
12 | || value instanceof Float64Array;
13 | }
14 |
15 | // Non-integer keys in arrays, e.g. [1, 2, 0.5: "value"].
16 | export function isindex(key) {
17 | return key === (key | 0) + "";
18 | }
19 |
--------------------------------------------------------------------------------
/test/output/fulfilledImmutableListOpen.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/object.js:
--------------------------------------------------------------------------------
1 | const {getOwnPropertySymbols, prototype: {hasOwnProperty}} = Object;
2 | const {toStringTag} = Symbol;
3 |
4 | export const FORBIDDEN = {};
5 |
6 | export const symbolsof = getOwnPropertySymbols;
7 |
8 | export function isown(object, key) {
9 | return hasOwnProperty.call(object, key);
10 | }
11 |
12 | export function tagof(object) {
13 | return object[toStringTag]
14 | || (object.constructor && object.constructor.name)
15 | || "Object";
16 | }
17 |
18 | export function valueof(object, key) {
19 | try {
20 | const value = object[key];
21 | if (value) value.constructor; // Test for SecurityError.
22 | return value;
23 | } catch (ignore) {
24 | return FORBIDDEN;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/test/output/fulfilledArrayOpen.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2018-2024 Observable, Inc.
2 |
3 | Permission to use, copy, modify, and/or distribute this software for any purpose
4 | with or without fee is hereby granted, provided that the above copyright notice
5 | and this permission notice appear in all copies.
6 |
7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
11 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
12 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
13 | THIS SOFTWARE.
14 |
--------------------------------------------------------------------------------
/test/jsdom.js:
--------------------------------------------------------------------------------
1 | import {JSDOM} from "jsdom";
2 |
3 | export default function jsdomit(description, run) {
4 | return it(description, withJsdom(run));
5 | }
6 |
7 | jsdomit.skip = (description, run) => {
8 | return it.skip(description, withJsdom(run));
9 | };
10 |
11 | jsdomit.only = (description, run) => {
12 | return it.only(description, withJsdom(run));
13 | };
14 |
15 | function withJsdom(run) {
16 | return async () => {
17 | const jsdom = new JSDOM("");
18 | global.window = jsdom.window;
19 | global.document = jsdom.window.document;
20 | global.navigator = jsdom.window.navigator;
21 | global.Event = jsdom.window.Event;
22 | global.Element = jsdom.window.Element;
23 | global.Node = jsdom.window.Node;
24 | global.NodeList = jsdom.window.NodeList;
25 | global.Text = jsdom.window.Text;
26 | global.HTMLCollection = jsdom.window.HTMLCollection;
27 | try {
28 | return await run();
29 | } finally {
30 | delete global.window;
31 | delete global.document;
32 | delete global.navigator;
33 | delete global.Event;
34 | delete global.Node;
35 | delete global.NodeList;
36 | delete global.HTMLCollection;
37 | }
38 | };
39 | }
40 |
--------------------------------------------------------------------------------
/src/immutable.js:
--------------------------------------------------------------------------------
1 | const SYMBOLS = [
2 | { symbol: "@@__IMMUTABLE_INDEXED__@@", name: "Indexed", modifier: true },
3 | { symbol: "@@__IMMUTABLE_KEYED__@@", name: "Keyed", modifier: true },
4 | { symbol: "@@__IMMUTABLE_LIST__@@", name: "List", arrayish: true },
5 | { symbol: "@@__IMMUTABLE_MAP__@@", name: "Map" },
6 | {
7 | symbol: "@@__IMMUTABLE_ORDERED__@@",
8 | name: "Ordered",
9 | modifier: true,
10 | prefix: true
11 | },
12 | { symbol: "@@__IMMUTABLE_RECORD__@@", name: "Record" },
13 | {
14 | symbol: "@@__IMMUTABLE_SET__@@",
15 | name: "Set",
16 | arrayish: true,
17 | setish: true
18 | },
19 | { symbol: "@@__IMMUTABLE_STACK__@@", name: "Stack", arrayish: true }
20 | ];
21 |
22 | export function immutableName(obj) {
23 | try {
24 | let symbols = SYMBOLS.filter(({ symbol }) => obj[symbol] === true);
25 | if (!symbols.length) return;
26 |
27 | const name = symbols.find(s => !s.modifier);
28 | const prefix =
29 | name.name === "Map" && symbols.find(s => s.modifier && s.prefix);
30 |
31 | const arrayish = symbols.some(s => s.arrayish);
32 | const setish = symbols.some(s => s.setish);
33 |
34 | return {
35 | name: `${prefix ? prefix.name : ""}${name.name}`,
36 | symbols,
37 | arrayish: arrayish && !setish,
38 | setish
39 | };
40 | } catch (e) {
41 | return null;
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@observablehq/inspector",
3 | "version": "5.0.1",
4 | "author": {
5 | "name": "Observable, Inc.",
6 | "url": "https://observablehq.com"
7 | },
8 | "license": "ISC",
9 | "type": "module",
10 | "main": "src/index.js",
11 | "module": "src/index.js",
12 | "jsdelivr": "dist/inspector.js",
13 | "unpkg": "dist/inspector.js",
14 | "exports": {
15 | "umd": "./dist/inspector.js",
16 | "default": "./src/index.js"
17 | },
18 | "repository": {
19 | "type": "git",
20 | "url": "https://github.com/observablehq/inspector.git"
21 | },
22 | "files": [
23 | "dist/**/*.css",
24 | "dist/**/*.js",
25 | "src/**/*.css",
26 | "src/**/*.js"
27 | ],
28 | "scripts": {
29 | "test": "mkdir -p test/output && mocha 'test/**/*-test.js' && eslint src test",
30 | "prepublishOnly": "rm -rf dist && rollup -c && cleancss -o dist/inspector.css src/style.css",
31 | "postpublish": "git push && git push --tags"
32 | },
33 | "_moduleAliases": {
34 | "@observablehq/inspector": "./src/index.js"
35 | },
36 | "dependencies": {
37 | "isoformat": "^0.2.0"
38 | },
39 | "devDependencies": {
40 | "@rollup/plugin-node-resolve": "^15.0.1",
41 | "clean-css-cli": "^5.6.1",
42 | "eslint": "^8.27.0",
43 | "immutable": "^4.1.0",
44 | "jsdom": "^20.0.2",
45 | "mocha": "^10.1.0",
46 | "module-alias": "^2.2.2",
47 | "rollup": "^3.2.5",
48 | "rollup-plugin-terser": "^7.0.2"
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/test/inspector-test.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable no-process-env */
2 |
3 | import assert from "assert";
4 | import {promises as fs} from "fs";
5 | import * as path from "path";
6 | import * as inspectors from "./inspectors.js";
7 | import it from "./jsdom.js";
8 |
9 | for (const [name, inspector] of Object.entries(inspectors)) {
10 | it(`inspector ${name}`, async () => {
11 | const root = await inspector();
12 | const actual = ` \n${root.outerHTML}`;
13 | const outfile = path.resolve("./test/output", `${name}.html`);
14 | const diffile = path.resolve("./test/output", `${name}-changed.html`);
15 | let expected;
16 |
17 | try {
18 | expected = await fs.readFile(outfile, "utf8");
19 | } catch (error) {
20 | if (error.code === "ENOENT" && process.env.CI !== "true") {
21 | console.warn(`! generating ${outfile}`);
22 | await fs.writeFile(outfile, actual, "utf8");
23 | return;
24 | } else {
25 | throw error;
26 | }
27 | }
28 |
29 | if (actual === expected) {
30 | if (process.env.CI !== "true") {
31 | try {
32 | await fs.unlink(diffile);
33 | console.warn(`! deleted ${diffile}`);
34 | } catch (error) {
35 | if (error.code !== "ENOENT") {
36 | throw error;
37 | }
38 | }
39 | }
40 | } else {
41 | console.warn(`! generating ${diffile}`);
42 | await fs.writeFile(diffile, actual, "utf8");
43 | }
44 |
45 | assert(actual === expected, `${name} must match snapshot`);
46 | });
47 | }
48 |
--------------------------------------------------------------------------------
/src/style.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --syntax_normal: #1b1e23;
3 | --syntax_comment: #a9b0bc;
4 | --syntax_number: #20a5ba;
5 | --syntax_keyword: #c30771;
6 | --syntax_atom: #10a778;
7 | --syntax_string: #008ec4;
8 | --syntax_error: #ffbedc;
9 | --syntax_unknown_variable: #838383;
10 | --syntax_known_variable: #005f87;
11 | --syntax_matchbracket: #20bbfc;
12 | --syntax_key: #6636b4;
13 | --mono_fonts: 82%/1.5 Menlo, Consolas, monospace;
14 | }
15 |
16 | .observablehq--expanded,
17 | .observablehq--collapsed,
18 | .observablehq--function,
19 | .observablehq--import,
20 | .observablehq--string:before,
21 | .observablehq--string:after,
22 | .observablehq--gray {
23 | color: var(--syntax_normal);
24 | }
25 |
26 | .observablehq--collapsed,
27 | .observablehq--inspect a {
28 | cursor: pointer;
29 | }
30 |
31 | .observablehq--field {
32 | text-indent: -1em;
33 | margin-left: 1em;
34 | }
35 |
36 | .observablehq--empty {
37 | color: var(--syntax_comment);
38 | }
39 |
40 | .observablehq--keyword,
41 | .observablehq--blue {
42 | color: #3182bd;
43 | }
44 |
45 | .observablehq--forbidden,
46 | .observablehq--pink {
47 | color: #e377c2;
48 | }
49 |
50 | .observablehq--orange {
51 | color: #e6550d;
52 | }
53 |
54 | .observablehq--null,
55 | .observablehq--undefined,
56 | .observablehq--boolean {
57 | color: var(--syntax_atom);
58 | }
59 |
60 | .observablehq--number,
61 | .observablehq--bigint,
62 | .observablehq--date,
63 | .observablehq--regexp,
64 | .observablehq--symbol,
65 | .observablehq--green {
66 | color: var(--syntax_number);
67 | }
68 |
69 | .observablehq--index,
70 | .observablehq--key {
71 | color: var(--syntax_key);
72 | }
73 |
74 | .observablehq--prototype-key {
75 | color: #aaa;
76 | }
77 |
78 | .observablehq--empty {
79 | font-style: oblique;
80 | }
81 |
82 | .observablehq--string,
83 | .observablehq--purple {
84 | color: var(--syntax_string);
85 | }
86 |
87 | .observablehq--error,
88 | .observablehq--red {
89 | color: #e7040f;
90 | }
91 |
92 | .observablehq--inspect {
93 | font: var(--mono_fonts);
94 | overflow-x: auto;
95 | display: block;
96 | white-space: pre;
97 | }
98 |
99 | .observablehq--error .observablehq--inspect {
100 | word-break: break-all;
101 | white-space: pre-wrap;
102 | }
103 |
--------------------------------------------------------------------------------
/src/inspect.js:
--------------------------------------------------------------------------------
1 | import dispatch from "./dispatch.js";
2 | import inspectCollapsed from "./collapsed.js";
3 | import inspectExpanded from "./expanded.js";
4 | import inspectName from "./inspectName.js";
5 | import formatDate from "./formatDate.js";
6 | import formatError from "./formatError.js";
7 | import formatRegExp from "./formatRegExp.js";
8 | import formatString from "./formatString.js";
9 | import formatSymbol from "./formatSymbol.js";
10 | import inspectFunction from "./inspectFunction.js";
11 | import {FORBIDDEN} from "./object.js";
12 |
13 | const {prototype: {toString}} = Object;
14 |
15 | export function inspect(value, shallow, expand, name, proto) {
16 | let type = typeof value;
17 | switch (type) {
18 | case "boolean":
19 | case "undefined": { value += ""; break; }
20 | case "number": { value = value === 0 && 1 / value < 0 ? "-0" : value + ""; break; }
21 | case "bigint": { value = value + "n"; break; }
22 | case "symbol": { value = formatSymbol(value, name); break; }
23 | case "function": { return inspectFunction(value, name); }
24 | case "string": { return formatString(value, shallow, expand, name); }
25 | default: {
26 | if (value === null) { type = null, value = "null"; break; }
27 | if (value instanceof Date) { type = "date", value = formatDate(value, name); break; }
28 | if (value === FORBIDDEN) { type = "forbidden", value = "[forbidden]"; break; }
29 | switch (toString.call(value)) {
30 | case "[object RegExp]": { type = "regexp", value = formatRegExp(value, name); break; }
31 | case "[object Error]": // https://github.com/lodash/lodash/blob/master/isError.js#L26
32 | case "[object DOMException]": { type = "error", value = formatError(value, name); break; }
33 | default: return (expand ? inspectExpanded : inspectCollapsed)(value, shallow, name, proto);
34 | }
35 | break;
36 | }
37 | }
38 | const span = document.createElement("span");
39 | if (name) span.appendChild(inspectName(name));
40 | const n = span.appendChild(document.createElement("span"));
41 | n.className = `observablehq--${type}`;
42 | n.textContent = value;
43 | return span;
44 | }
45 |
46 | export function replace(spanOld, spanNew) {
47 | if (spanOld.classList.contains("observablehq--inspect")) spanNew.classList.add("observablehq--inspect");
48 | spanOld.parentNode.replaceChild(spanNew, spanOld);
49 | dispatch(spanNew, "load");
50 | }
51 |
--------------------------------------------------------------------------------
/src/inspectFunction.js:
--------------------------------------------------------------------------------
1 | import inspectName from "./inspectName.js";
2 | var toString = Function.prototype.toString,
3 | TYPE_ASYNC = {prefix: "async ƒ"},
4 | TYPE_ASYNC_GENERATOR = {prefix: "async ƒ*"},
5 | TYPE_CLASS = {prefix: "class"},
6 | TYPE_FUNCTION = {prefix: "ƒ"},
7 | TYPE_GENERATOR = {prefix: "ƒ*"};
8 |
9 | export default function inspectFunction(f, name) {
10 | var type, m, t = toString.call(f);
11 |
12 | switch (f.constructor && f.constructor.name) {
13 | case "AsyncFunction": type = TYPE_ASYNC; break;
14 | case "AsyncGeneratorFunction": type = TYPE_ASYNC_GENERATOR; break;
15 | case "GeneratorFunction": type = TYPE_GENERATOR; break;
16 | default: type = /^class\b/.test(t) ? TYPE_CLASS : TYPE_FUNCTION; break;
17 | }
18 |
19 | // A class, possibly named.
20 | // class Name
21 | if (type === TYPE_CLASS) {
22 | return formatFunction(type, "", name);
23 | }
24 |
25 | // An arrow function with a single argument.
26 | // foo =>
27 | // async foo =>
28 | if ((m = /^(?:async\s*)?(\w+)\s*=>/.exec(t))) {
29 | return formatFunction(type, "(" + m[1] + ")", name);
30 | }
31 |
32 | // An arrow function with parenthesized arguments.
33 | // (…)
34 | // async (…)
35 | if ((m = /^(?:async\s*)?\(\s*(\w+(?:\s*,\s*\w+)*)?\s*\)/.exec(t))) {
36 | return formatFunction(type, m[1] ? "(" + m[1].replace(/\s*,\s*/g, ", ") + ")" : "()", name);
37 | }
38 |
39 | // A function, possibly: async, generator, anonymous, simply arguments.
40 | // function name(…)
41 | // function* name(…)
42 | // async function name(…)
43 | // async function* name(…)
44 | if ((m = /^(?:async\s*)?function(?:\s*\*)?(?:\s*\w+)?\s*\(\s*(\w+(?:\s*,\s*\w+)*)?\s*\)/.exec(t))) {
45 | return formatFunction(type, m[1] ? "(" + m[1].replace(/\s*,\s*/g, ", ") + ")" : "()", name);
46 | }
47 |
48 | // Something else, like destructuring, comments or default values.
49 | return formatFunction(type, "(…)", name);
50 | }
51 |
52 | function formatFunction(type, args, cellname) {
53 | var span = document.createElement("span");
54 | span.className = "observablehq--function";
55 | if (cellname) {
56 | span.appendChild(inspectName(cellname));
57 | }
58 | var spanType = span.appendChild(document.createElement("span"));
59 | spanType.className = "observablehq--keyword";
60 | spanType.textContent = type.prefix;
61 | span.appendChild(document.createTextNode(args));
62 | return span;
63 | }
64 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import dispatch from "./dispatch.js";
2 | import {inspect} from "./inspect.js";
3 | import inspectName from "./inspectName.js";
4 |
5 | const LOCATION_MATCH = /\s+\(\d+:\d+\)$/m;
6 |
7 | export class Inspector {
8 | constructor(node) {
9 | if (!node) throw new Error("invalid node");
10 | this._node = node;
11 | node.classList.add("observablehq");
12 | }
13 | pending() {
14 | const {_node} = this;
15 | _node.classList.remove("observablehq--error");
16 | _node.classList.add("observablehq--running");
17 | }
18 | fulfilled(value, name) {
19 | const {_node} = this;
20 | if (!isnode(value) || (value.parentNode && value.parentNode !== _node)) {
21 | value = inspect(value, false, _node.firstChild // TODO Do this better.
22 | && _node.firstChild.classList
23 | && _node.firstChild.classList.contains("observablehq--expanded"), name);
24 | value.classList.add("observablehq--inspect");
25 | }
26 | _node.classList.remove("observablehq--running", "observablehq--error");
27 | if (_node.firstChild !== value) {
28 | if (_node.firstChild) {
29 | while (_node.lastChild !== _node.firstChild) _node.removeChild(_node.lastChild);
30 | _node.replaceChild(value, _node.firstChild);
31 | } else {
32 | _node.appendChild(value);
33 | }
34 | }
35 | dispatch(_node, "update");
36 | }
37 | rejected(error, name) {
38 | const {_node} = this;
39 | _node.classList.remove("observablehq--running");
40 | _node.classList.add("observablehq--error");
41 | while (_node.lastChild) _node.removeChild(_node.lastChild);
42 | var div = document.createElement("div");
43 | div.className = "observablehq--inspect";
44 | if (name) div.appendChild(inspectName(name));
45 | div.appendChild(document.createTextNode((error + "").replace(LOCATION_MATCH, "")));
46 | _node.appendChild(div);
47 | dispatch(_node, "error", {error: error});
48 | }
49 | }
50 |
51 | Inspector.into = function(container) {
52 | if (typeof container === "string") {
53 | container = document.querySelector(container);
54 | if (container == null) throw new Error("container not found");
55 | }
56 | return function() {
57 | return new Inspector(container.appendChild(document.createElement("div")));
58 | };
59 | };
60 |
61 | // Returns true if the given value is something that should be added to the DOM
62 | // by the inspector, rather than being inspected. This deliberately excludes
63 | // DocumentFragment since appending a fragment “dissolves” (mutates) the
64 | // fragment, and we wish for the inspector to not have side-effects. Also,
65 | // HTMLElement.prototype is an instanceof Element, but not an element!
66 | function isnode(value) {
67 | return (value instanceof Element || value instanceof Text)
68 | && (value instanceof value.constructor);
69 | }
70 |
--------------------------------------------------------------------------------
/src/formatString.js:
--------------------------------------------------------------------------------
1 | import inspectName from "./inspectName.js";
2 | import {inspect, replace} from "./inspect.js";
3 |
4 | /* eslint-disable no-control-regex */
5 | const NEWLINE_LIMIT = 20;
6 |
7 | export default function formatString(string, shallow, expanded, name) {
8 | if (shallow === false) {
9 | // String has fewer escapes displayed with double quotes
10 | if (count(string, /["\n]/g) <= count(string, /`|\${/g)) {
11 | const span = document.createElement("span");
12 | if (name) span.appendChild(inspectName(name));
13 | const textValue = span.appendChild(document.createElement("span"));
14 | textValue.className = "observablehq--string";
15 | textValue.textContent = JSON.stringify(string);
16 | return span;
17 | }
18 | const lines = string.split("\n");
19 | if (lines.length > NEWLINE_LIMIT && !expanded) {
20 | const div = document.createElement("div");
21 | if (name) div.appendChild(inspectName(name));
22 | const textValue = div.appendChild(document.createElement("span"));
23 | textValue.className = "observablehq--string";
24 | textValue.textContent = "`" + templatify(lines.slice(0, NEWLINE_LIMIT).join("\n"));
25 | const splitter = div.appendChild(document.createElement("span"));
26 | const truncatedCount = lines.length - NEWLINE_LIMIT;
27 | splitter.textContent = `Show ${truncatedCount} truncated line${truncatedCount > 1 ? "s": ""}`; splitter.className = "observablehq--string-expand";
28 | splitter.addEventListener("mouseup", function (event) {
29 | event.stopPropagation();
30 | replace(div, inspect(string, shallow, true, name));
31 | });
32 | return div;
33 | }
34 | const span = document.createElement("span");
35 | if (name) span.appendChild(inspectName(name));
36 | const textValue = span.appendChild(document.createElement("span"));
37 | textValue.className = `observablehq--string${expanded ? " observablehq--expanded" : ""}`;
38 | textValue.textContent = "`" + templatify(string) + "`";
39 | return span;
40 | }
41 |
42 | const span = document.createElement("span");
43 | if (name) span.appendChild(inspectName(name));
44 | const textValue = span.appendChild(document.createElement("span"));
45 | textValue.className = "observablehq--string";
46 | textValue.textContent = JSON.stringify(string.length > 100 ?
47 | `${string.slice(0, 50)}…${string.slice(-49)}` : string);
48 | return span;
49 | }
50 |
51 | function templatify(string) {
52 | return string.replace(/[\\`\x00-\x09\x0b-\x19]|\${/g, templatifyChar);
53 | }
54 |
55 | function templatifyChar(char) {
56 | var code = char.charCodeAt(0);
57 | switch (code) {
58 | case 0x8: return "\\b";
59 | case 0x9: return "\\t";
60 | case 0xb: return "\\v";
61 | case 0xc: return "\\f";
62 | case 0xd: return "\\r";
63 | }
64 | return code < 0x10 ? "\\x0" + code.toString(16)
65 | : code < 0x20 ? "\\x" + code.toString(16)
66 | : "\\" + char;
67 | }
68 |
69 | function count(string, re) {
70 | var n = 0;
71 | while (re.exec(string)) ++n;
72 | return n;
73 | }
74 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # @observablehq/inspector
2 |
3 | [](https://github.com/observablehq/inspector/actions?workflow=Node+CI)
4 |
5 | This library implements the default value renderer for Observable programs. When used with the [Observable runtime](https://github.com/observablehq/runtime) as [observers](https://github.com/observablehq/runtime/blob/main/README.md#observers), inspectors can insert elements into the DOM and render interactive displays for arbitrary values.
6 |
7 | To install this library from [npm](https://www.npmjs.com/package/@observablehq/inspector):
8 |
9 | ```
10 | npm install @observablehq/inspector
11 | ```
12 |
13 | This library is also available for download [from unpkg](https://unpkg.com/@observablehq/inspector/) as an [ES module](https://unpkg.com/@observablehq/inspector?module) and as a [UMD bundle](https://unpkg.com/@observablehq/inspector/dist/inspector.js).
14 |
15 | ## API Reference
16 |
17 | ### Inspectors
18 |
19 | An inspector implements the Observable runtime’s [*Observer* interface](https://github.com/observablehq/runtime/blob/main/README.md#observers) by rendering the current value of its associated [variable](https://github.com/observablehq/runtime/blob/main/README.md#variables) to a given DOM element. Inspectors display DOM elements “as-is”, and create interactive “devtools”-style inspectors for other arbitrary values such as numbers and objects.
20 |
21 | # new **Inspector**(*element*) [<>](https://github.com/observablehq/inspector/blob/main/src/index.js "Source")
22 |
23 | Creates a new inspector attached to the specified DOM *element*. See also [Inspector.into](#Inspector_into).
24 |
25 | # *inspector*.**pending**() [<>](https://github.com/observablehq/inspector/blob/main/src/index.js "Source")
26 |
27 | Applies the `observablehq--running` class to this inspector’s *element*.
28 |
29 | # *inspector*.**fulfilled**(*value*) [<>](https://github.com/observablehq/inspector/blob/main/src/index.js "Source")
30 |
31 | Inspects the specified *value*, replacing the contents of this inspector’s *element* as appropriate, and dispatching an *update* event. If the specified *value* is a DOM element or text node, and the *value* is not already attached to the DOM, it is inserted into this inspector’s *element*, replacing any existing contents. Otherwise, for other arbitrary values such as numbers, arrays, or objects, an expandable display of the specified *value* is generated into this inspector’s *element*. Applies the `observablehq` class to this inspector’s *element*, and for non-element *value*s, the `observablehq--inspect` class.
32 |
33 | # *inspector*.**rejected**(*error*) [<>](https://github.com/observablehq/inspector/blob/main/src/index.js "Source")
34 |
35 | Inspects the specified *error*, replacing the contents of this inspector’s *element* as appropriate with the error’s description, and dispatching an *error* event. Applies the `observablehq` and `observablehq--error` class to this inspector’s *element*.
36 |
37 | # Inspector.**into**(*container*) [<>](https://github.com/observablehq/inspector/blob/main/src/index.js "Source")
38 |
39 | Returns a function that when passed a given [*variable*](https://github.com/observablehq/runtime/blob/main/README.md#variables), returns a new [*inspector*](#inspectors) attached to a new DIV element within the specifier *container* element. If *container* is a string, it represents a selector, and the *container* element becomes the matching selected element. This method can be used with [an Observable module definition](https://github.com/observablehq/runtime/blob/main/README.md#_define) as the observer factory to conveniently render an entire program.
40 |
--------------------------------------------------------------------------------
/test/inspectors.js:
--------------------------------------------------------------------------------
1 | import {Inspector} from "@observablehq/inspector";
2 | import Immutable from "immutable";
3 |
4 | function inspectFulfilled(value) {
5 | const div = document.createElement("div");
6 | const inspector = new Inspector(div);
7 | inspector.fulfilled(value);
8 | return div;
9 | }
10 |
11 | function inspectRejected(value) {
12 | const div = document.createElement("div");
13 | const inspector = new Inspector(div);
14 | inspector.rejected(value);
15 | return div;
16 | }
17 |
18 | export function fulfilledArray() {
19 | return inspectFulfilled([1, 2, 3]);
20 | }
21 |
22 | export function fulfilledArrayOpen() {
23 | const div = inspectFulfilled([1, 2, 3]);
24 | div.querySelector("a").dispatchEvent(new Event("mouseup"));
25 | return div;
26 | }
27 |
28 | export function fulfilledIntoMultiple() {
29 | const div = document.createElement("div");
30 | const createInspector = Inspector.into(div);
31 | createInspector().fulfilled(1);
32 | createInspector().fulfilled(2);
33 | createInspector().fulfilled(3);
34 | return div;
35 | }
36 |
37 | export function fulfilledElement() {
38 | const span = document.createElement("span");
39 | span.textContent = "Surprise!";
40 | return inspectFulfilled(span);
41 | }
42 |
43 | export function fulfilledNumber() {
44 | return inspectFulfilled(42);
45 | }
46 |
47 | export function fulfilledString() {
48 | return inspectFulfilled("hi");
49 | }
50 |
51 | export function fulfilledString10Lines() {
52 | return inspectFulfilled(Array.from({length: 10}, () => "hi").join("\n"));
53 | }
54 |
55 | export function fulfilledString21Lines() {
56 | return inspectFulfilled(Array.from({length: 21}, () => "hi").join("\n"));
57 | }
58 |
59 | export function fulfilledString30Lines() {
60 | return inspectFulfilled(Array.from({length: 30}, () => "hi").join("\n"));
61 | }
62 |
63 | export function fulfilledString30LinesOpen() {
64 | const div = inspectFulfilled(Array.from({length: 30}, () => "hi").join("\n"));
65 | div.querySelector(".observablehq--string-expand").dispatchEvent(new Event("mouseup"));
66 | return div;
67 | }
68 |
69 | export function fulfilledMap() {
70 | return inspectFulfilled(new Map([["foo", 1], ["bar", 2]]));
71 | }
72 |
73 | export function fulfilledMapProto() {
74 | class SubMap extends Map {}
75 | return inspectFulfilled(Object.getPrototypeOf(new SubMap()));
76 | }
77 |
78 | export function fulfilledSet() {
79 | return inspectFulfilled(new Set(["foo", "bar"]));
80 | }
81 |
82 | export function fulfilledSetProto() {
83 | class SubSet extends Set {}
84 | return inspectFulfilled(Object.getPrototypeOf(new SubSet()));
85 | }
86 |
87 | export function fulfilledImmutableMap() {
88 | return inspectFulfilled(Immutable.Map([["foo", 1], ["bar", 2]]));
89 | }
90 |
91 | export function fulfilledImmutableMapOpen() {
92 | const div = inspectFulfilled(Immutable.Map([["foo", 1], ["bar", 2]]));
93 | div.querySelector("a").dispatchEvent(new Event("mouseup"));
94 | return div;
95 | }
96 |
97 | export function fulfilledImmutableSet() {
98 | return inspectFulfilled(Immutable.Set([1, 2, 3]));
99 | }
100 |
101 | export function fulfilledImmutableSetOpen() {
102 | const div = inspectFulfilled(Immutable.Set([1, 2, 3]));
103 | div.querySelector("a").dispatchEvent(new Event("mouseup"));
104 | return div;
105 | }
106 |
107 | export function fulfilledImmutableList() {
108 | return inspectFulfilled(Immutable.List([1, 2, 3]));
109 | }
110 |
111 | export function fulfilledImmutableListOpen() {
112 | const div = inspectFulfilled(Immutable.List([1, 2, 3]));
113 | div.querySelector("a").dispatchEvent(new Event("mouseup"));
114 | return div;
115 | }
116 |
117 | export function fulfilledImmutableRecord() {
118 | return inspectFulfilled(Immutable.Record({a: 1})({a: 21}));
119 | }
120 |
121 | export function fulfilledImmutableRecordOpen() {
122 | const div = inspectFulfilled(Immutable.Record({a: 1})({a: 21}));
123 | div.querySelector("a").dispatchEvent(new Event("mouseup"));
124 | return div;
125 | }
126 |
127 | export function pending() {
128 | const div = document.createElement("div");
129 | const inspector = new Inspector(div);
130 | inspector.pending();
131 | return div;
132 | }
133 |
134 | export function rejectedError() {
135 | return inspectRejected(new Error("Danger!"));
136 | }
137 |
138 | export function rejectedString() {
139 | return inspectRejected("Danger!");
140 | }
141 |
--------------------------------------------------------------------------------
/src/collapsed.js:
--------------------------------------------------------------------------------
1 | import {isarray, isindex} from "./array.js";
2 | import inspectExpanded from "./expanded.js";
3 | import formatSymbol from "./formatSymbol.js";
4 | import inspectName from "./inspectName.js";
5 | import {inspect, replace} from "./inspect.js";
6 | import {isown, symbolsof, tagof, valueof} from "./object.js";
7 | import {immutableName} from "./immutable.js";
8 |
9 | function hasSelection(elem) {
10 | const sel = window.getSelection();
11 | return (
12 | sel.type === "Range" &&
13 | (sel.containsNode(elem, true) ||
14 | elem.contains(sel.anchorNode) ||
15 | elem.contains(sel.focusNode))
16 | );
17 | }
18 |
19 | export default function inspectCollapsed(object, shallow, name, proto) {
20 | let arrayish = isarray(object);
21 | let tag, fields, next, n;
22 |
23 | if (object instanceof Map) {
24 | if (object instanceof object.constructor) {
25 | tag = `Map(${object.size})`;
26 | fields = iterateMap;
27 | } else { // avoid incompatible receiver error for prototype
28 | tag = "Map()";
29 | fields = iterateObject;
30 | }
31 | } else if (object instanceof Set) {
32 | if (object instanceof object.constructor) {
33 | tag = `Set(${object.size})`;
34 | fields = iterateSet;
35 | } else { // avoid incompatible receiver error for prototype
36 | tag = "Set()";
37 | fields = iterateObject;
38 | }
39 | } else if (arrayish) {
40 | tag = `${object.constructor.name}(${object.length})`;
41 | fields = iterateArray;
42 | } else if ((n = immutableName(object))) {
43 | tag = `Immutable.${n.name}${n.name === 'Record' ? '' : `(${object.size})`}`;
44 | arrayish = n.arrayish;
45 | fields = n.arrayish ? iterateImArray : n.setish ? iterateImSet : iterateImObject;
46 | } else {
47 | tag = tagof(object);
48 | fields = iterateObject;
49 | }
50 |
51 | if (shallow) {
52 | const span = document.createElement("span");
53 | span.className = "observablehq--shallow";
54 | if (name) {
55 | span.appendChild(inspectName(name));
56 | }
57 | span.appendChild(document.createTextNode(tag));
58 | span.addEventListener("mouseup", function(event) {
59 | if (hasSelection(span)) return;
60 | event.stopPropagation();
61 | replace(span, inspectCollapsed(object));
62 | });
63 | return span;
64 | }
65 |
66 | const span = document.createElement("span");
67 | span.className = "observablehq--collapsed";
68 | if (name) {
69 | span.appendChild(inspectName(name));
70 | }
71 | const a = span.appendChild(document.createElement("a"));
72 | a.innerHTML = `
73 |
74 | `;
75 | a.appendChild(document.createTextNode(`${tag}${arrayish ? " [" : " {"}`));
76 | span.addEventListener("mouseup", function(event) {
77 | if (hasSelection(span)) return;
78 | event.stopPropagation();
79 | replace(span, inspectExpanded(object, null, name, proto));
80 | }, true);
81 |
82 | fields = fields(object);
83 | for (let i = 0; !(next = fields.next()).done && i < 20; ++i) {
84 | if (i > 0) span.appendChild(document.createTextNode(", "));
85 | span.appendChild(next.value);
86 | }
87 |
88 | if (!next.done) span.appendChild(document.createTextNode(", …"));
89 | span.appendChild(document.createTextNode(arrayish ? "]" : "}"));
90 |
91 | return span;
92 | }
93 |
94 | function* iterateMap(map) {
95 | for (const [key, value] of map) {
96 | yield formatMapField(key, value);
97 | }
98 | yield* iterateObject(map);
99 | }
100 |
101 | function* iterateSet(set) {
102 | for (const value of set) {
103 | yield inspect(value, true);
104 | }
105 | yield* iterateObject(set);
106 | }
107 |
108 | function* iterateImSet(set) {
109 | for (const value of set) {
110 | yield inspect(value, true);
111 | }
112 | }
113 |
114 | function* iterateImArray(array) {
115 | let i0 = -1, i1 = 0;
116 | for (const n = array.size; i1 < n; ++i1) {
117 | if (i1 > i0 + 1) yield formatEmpty(i1 - i0 - 1);
118 | yield inspect(array.get(i1), true);
119 | i0 = i1;
120 | }
121 | if (i1 > i0 + 1) yield formatEmpty(i1 - i0 - 1);
122 | }
123 |
124 | function* iterateArray(array) {
125 | let i0 = -1, i1 = 0;
126 | for (const n = array.length; i1 < n; ++i1) {
127 | if (i1 in array) {
128 | if (i1 > i0 + 1) yield formatEmpty(i1 - i0 - 1);
129 | yield inspect(valueof(array, i1), true);
130 | i0 = i1;
131 | }
132 | }
133 | if (i1 > i0 + 1) yield formatEmpty(i1 - i0 - 1);
134 | for (const key in array) {
135 | if (!isindex(key) && isown(array, key)) {
136 | yield formatField(key, valueof(array, key), "observablehq--key");
137 | }
138 | }
139 | for (const symbol of symbolsof(array)) {
140 | yield formatField(formatSymbol(symbol), valueof(array, symbol), "observablehq--symbol");
141 | }
142 | }
143 |
144 | function* iterateObject(object) {
145 | for (const key in object) {
146 | if (isown(object, key)) {
147 | yield formatField(key, valueof(object, key), "observablehq--key");
148 | }
149 | }
150 | for (const symbol of symbolsof(object)) {
151 | yield formatField(formatSymbol(symbol), valueof(object, symbol), "observablehq--symbol");
152 | }
153 | }
154 |
155 | function* iterateImObject(object) {
156 | for (const [key, value] of object) {
157 | yield formatField(key, value, "observablehq--key");
158 | }
159 | }
160 |
161 | function formatEmpty(e) {
162 | const span = document.createElement("span");
163 | span.className = "observablehq--empty";
164 | span.textContent = e === 1 ? "empty" : `empty × ${e}`;
165 | return span;
166 | }
167 |
168 | function formatField(key, value, className) {
169 | const fragment = document.createDocumentFragment();
170 | const span = fragment.appendChild(document.createElement("span"));
171 | span.className = className;
172 | span.textContent = key;
173 | fragment.appendChild(document.createTextNode(": "));
174 | fragment.appendChild(inspect(value, true));
175 | return fragment;
176 | }
177 |
178 | function formatMapField(key, value) {
179 | const fragment = document.createDocumentFragment();
180 | fragment.appendChild(inspect(key, true));
181 | fragment.appendChild(document.createTextNode(" => "));
182 | fragment.appendChild(inspect(value, true));
183 | return fragment;
184 | }
185 |
--------------------------------------------------------------------------------
/demo.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
150 |
151 |
152 |
153 |
154 |
input (JavaScript)
155 |
156 |
157 |
Fixed demos
158 |
159 |
160 |
219 |
220 |
221 |
--------------------------------------------------------------------------------
/src/expanded.js:
--------------------------------------------------------------------------------
1 | import dispatch from "./dispatch.js";
2 | import inspectName from "./inspectName.js";
3 | import {isarray, isindex} from "./array.js";
4 | import inspectCollapsed from "./collapsed.js";
5 | import formatSymbol from "./formatSymbol.js";
6 | import {inspect, replace} from "./inspect.js";
7 | import {isown, symbolsof, tagof, valueof} from "./object.js";
8 | import {immutableName} from "./immutable.js";
9 |
10 | const {getPrototypeOf, getOwnPropertyDescriptors} = Object;
11 | const objectPrototype = getPrototypeOf({});
12 |
13 | export default function inspectExpanded(object, _, name, proto) {
14 | let arrayish = isarray(object);
15 | let tag, fields, next, n;
16 |
17 | if (object instanceof Map) {
18 | if (object instanceof object.constructor) {
19 | tag = `Map(${object.size})`;
20 | fields = iterateMap;
21 | } else { // avoid incompatible receiver error for prototype
22 | tag = "Map()";
23 | fields = iterateObject;
24 | }
25 | } else if (object instanceof Set) {
26 | if (object instanceof object.constructor) {
27 | tag = `Set(${object.size})`;
28 | fields = iterateSet;
29 | } else { // avoid incompatible receiver error for prototype
30 | tag = "Set()";
31 | fields = iterateObject;
32 | }
33 | } else if (arrayish) {
34 | tag = `${object.constructor.name}(${object.length})`;
35 | fields = iterateArray;
36 | } else if ((n = immutableName(object))) {
37 | tag = `Immutable.${n.name}${n.name === "Record" ? "" : `(${object.size})`}`;
38 | arrayish = n.arrayish;
39 | fields = n.arrayish
40 | ? iterateImArray
41 | : n.setish
42 | ? iterateImSet
43 | : iterateImObject;
44 | } else if (proto) {
45 | tag = tagof(object);
46 | fields = iterateProto;
47 | } else {
48 | tag = tagof(object);
49 | fields = iterateObject;
50 | }
51 |
52 | const span = document.createElement("span");
53 | span.className = "observablehq--expanded";
54 | if (name) {
55 | span.appendChild(inspectName(name));
56 | }
57 | const a = span.appendChild(document.createElement("a"));
58 | a.innerHTML = `
59 |
60 | `;
61 | a.appendChild(document.createTextNode(`${tag}${arrayish ? " [" : " {"}`));
62 | a.addEventListener("mouseup", function(event) {
63 | event.stopPropagation();
64 | replace(span, inspectCollapsed(object, null, name, proto));
65 | });
66 |
67 | fields = fields(object);
68 | for (let i = 0; !(next = fields.next()).done && i < 20; ++i) {
69 | span.appendChild(next.value);
70 | }
71 |
72 | if (!next.done) {
73 | const a = span.appendChild(document.createElement("a"));
74 | a.className = "observablehq--field";
75 | a.style.display = "block";
76 | a.appendChild(document.createTextNode(` … more`));
77 | a.addEventListener("mouseup", function(event) {
78 | event.stopPropagation();
79 | span.insertBefore(next.value, span.lastChild.previousSibling);
80 | for (let i = 0; !(next = fields.next()).done && i < 19; ++i) {
81 | span.insertBefore(next.value, span.lastChild.previousSibling);
82 | }
83 | if (next.done) span.removeChild(span.lastChild.previousSibling);
84 | dispatch(span, "load");
85 | });
86 | }
87 |
88 | span.appendChild(document.createTextNode(arrayish ? "]" : "}"));
89 |
90 | return span;
91 | }
92 |
93 | function* iterateMap(map) {
94 | for (const [key, value] of map) {
95 | yield formatMapField(key, value);
96 | }
97 | yield* iterateObject(map);
98 | }
99 |
100 | function* iterateSet(set) {
101 | for (const value of set) {
102 | yield formatSetField(value);
103 | }
104 | yield* iterateObject(set);
105 | }
106 |
107 | function* iterateImSet(set) {
108 | for (const value of set) {
109 | yield formatSetField(value);
110 | }
111 | }
112 |
113 | function* iterateArray(array) {
114 | for (let i = 0, n = array.length; i < n; ++i) {
115 | if (i in array) {
116 | yield formatField(i, valueof(array, i), "observablehq--index");
117 | }
118 | }
119 | for (const key in array) {
120 | if (!isindex(key) && isown(array, key)) {
121 | yield formatField(key, valueof(array, key), "observablehq--key");
122 | }
123 | }
124 | for (const symbol of symbolsof(array)) {
125 | yield formatField(
126 | formatSymbol(symbol),
127 | valueof(array, symbol),
128 | "observablehq--symbol"
129 | );
130 | }
131 | }
132 |
133 | function* iterateImArray(array) {
134 | let i1 = 0;
135 | for (const n = array.size; i1 < n; ++i1) {
136 | yield formatField(i1, array.get(i1), true);
137 | }
138 | }
139 |
140 | function* iterateProto(object) {
141 | for (const key in getOwnPropertyDescriptors(object)) {
142 | yield formatField(key, valueof(object, key), "observablehq--key");
143 | }
144 | for (const symbol of symbolsof(object)) {
145 | yield formatField(
146 | formatSymbol(symbol),
147 | valueof(object, symbol),
148 | "observablehq--symbol"
149 | );
150 | }
151 |
152 | const proto = getPrototypeOf(object);
153 | if (proto && proto !== objectPrototype) {
154 | yield formatPrototype(proto);
155 | }
156 | }
157 |
158 | function* iterateObject(object) {
159 | for (const key in object) {
160 | if (isown(object, key)) {
161 | yield formatField(key, valueof(object, key), "observablehq--key");
162 | }
163 | }
164 | for (const symbol of symbolsof(object)) {
165 | yield formatField(
166 | formatSymbol(symbol),
167 | valueof(object, symbol),
168 | "observablehq--symbol"
169 | );
170 | }
171 |
172 | const proto = getPrototypeOf(object);
173 | if (proto && proto !== objectPrototype) {
174 | yield formatPrototype(proto);
175 | }
176 | }
177 |
178 | function* iterateImObject(object) {
179 | for (const [key, value] of object) {
180 | yield formatField(key, value, "observablehq--key");
181 | }
182 | }
183 |
184 | function formatPrototype(value) {
185 | const item = document.createElement("div");
186 | const span = item.appendChild(document.createElement("span"));
187 | item.className = "observablehq--field";
188 | span.className = "observablehq--prototype-key";
189 | span.textContent = ` `;
190 | item.appendChild(document.createTextNode(": "));
191 | item.appendChild(inspect(value, undefined, undefined, undefined, true));
192 | return item;
193 | }
194 |
195 | function formatField(key, value, className) {
196 | const item = document.createElement("div");
197 | const span = item.appendChild(document.createElement("span"));
198 | item.className = "observablehq--field";
199 | span.className = className;
200 | span.textContent = ` ${key}`;
201 | item.appendChild(document.createTextNode(": "));
202 | item.appendChild(inspect(value));
203 | return item;
204 | }
205 |
206 | function formatMapField(key, value) {
207 | const item = document.createElement("div");
208 | item.className = "observablehq--field";
209 | item.appendChild(document.createTextNode(" "));
210 | item.appendChild(inspect(key));
211 | item.appendChild(document.createTextNode(" => "));
212 | item.appendChild(inspect(value));
213 | return item;
214 | }
215 |
216 | function formatSetField(value) {
217 | const item = document.createElement("div");
218 | item.className = "observablehq--field";
219 | item.appendChild(document.createTextNode(" "));
220 | item.appendChild(inspect(value));
221 | return item;
222 | }
223 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.10.4":
6 | version "7.24.7"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465"
8 | integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==
9 | dependencies:
10 | "@babel/highlight" "^7.24.7"
11 | picocolors "^1.0.0"
12 |
13 | "@babel/helper-validator-identifier@^7.24.7":
14 | version "7.24.7"
15 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db"
16 | integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
17 |
18 | "@babel/highlight@^7.24.7":
19 | version "7.24.7"
20 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d"
21 | integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
22 | dependencies:
23 | "@babel/helper-validator-identifier" "^7.24.7"
24 | chalk "^2.4.2"
25 | js-tokens "^4.0.0"
26 | picocolors "^1.0.0"
27 |
28 | "@eslint-community/eslint-utils@^4.2.0":
29 | version "4.4.0"
30 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
31 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
32 | dependencies:
33 | eslint-visitor-keys "^3.3.0"
34 |
35 | "@eslint-community/regexpp@^4.6.1":
36 | version "4.11.0"
37 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.0.tgz#b0ffd0312b4a3fd2d6f77237e7248a5ad3a680ae"
38 | integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==
39 |
40 | "@eslint/eslintrc@^2.1.4":
41 | version "2.1.4"
42 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
43 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
44 | dependencies:
45 | ajv "^6.12.4"
46 | debug "^4.3.2"
47 | espree "^9.6.0"
48 | globals "^13.19.0"
49 | ignore "^5.2.0"
50 | import-fresh "^3.2.1"
51 | js-yaml "^4.1.0"
52 | minimatch "^3.1.2"
53 | strip-json-comments "^3.1.1"
54 |
55 | "@eslint/js@8.57.0":
56 | version "8.57.0"
57 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f"
58 | integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
59 |
60 | "@humanwhocodes/config-array@^0.11.14":
61 | version "0.11.14"
62 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b"
63 | integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==
64 | dependencies:
65 | "@humanwhocodes/object-schema" "^2.0.2"
66 | debug "^4.3.1"
67 | minimatch "^3.0.5"
68 |
69 | "@humanwhocodes/module-importer@^1.0.1":
70 | version "1.0.1"
71 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
72 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
73 |
74 | "@humanwhocodes/object-schema@^2.0.2":
75 | version "2.0.3"
76 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
77 | integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
78 |
79 | "@jridgewell/gen-mapping@^0.3.5":
80 | version "0.3.5"
81 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36"
82 | integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
83 | dependencies:
84 | "@jridgewell/set-array" "^1.2.1"
85 | "@jridgewell/sourcemap-codec" "^1.4.10"
86 | "@jridgewell/trace-mapping" "^0.3.24"
87 |
88 | "@jridgewell/resolve-uri@^3.1.0":
89 | version "3.1.2"
90 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
91 | integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
92 |
93 | "@jridgewell/set-array@^1.2.1":
94 | version "1.2.1"
95 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
96 | integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
97 |
98 | "@jridgewell/source-map@^0.3.3":
99 | version "0.3.6"
100 | resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a"
101 | integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==
102 | dependencies:
103 | "@jridgewell/gen-mapping" "^0.3.5"
104 | "@jridgewell/trace-mapping" "^0.3.25"
105 |
106 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
107 | version "1.5.0"
108 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
109 | integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
110 |
111 | "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
112 | version "0.3.25"
113 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
114 | integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
115 | dependencies:
116 | "@jridgewell/resolve-uri" "^3.1.0"
117 | "@jridgewell/sourcemap-codec" "^1.4.14"
118 |
119 | "@nodelib/fs.scandir@2.1.5":
120 | version "2.1.5"
121 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
122 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
123 | dependencies:
124 | "@nodelib/fs.stat" "2.0.5"
125 | run-parallel "^1.1.9"
126 |
127 | "@nodelib/fs.stat@2.0.5":
128 | version "2.0.5"
129 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
130 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
131 |
132 | "@nodelib/fs.walk@^1.2.8":
133 | version "1.2.8"
134 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
135 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
136 | dependencies:
137 | "@nodelib/fs.scandir" "2.1.5"
138 | fastq "^1.6.0"
139 |
140 | "@rollup/plugin-node-resolve@^15.0.1":
141 | version "15.2.3"
142 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz#e5e0b059bd85ca57489492f295ce88c2d4b0daf9"
143 | integrity sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==
144 | dependencies:
145 | "@rollup/pluginutils" "^5.0.1"
146 | "@types/resolve" "1.20.2"
147 | deepmerge "^4.2.2"
148 | is-builtin-module "^3.2.1"
149 | is-module "^1.0.0"
150 | resolve "^1.22.1"
151 |
152 | "@rollup/pluginutils@^5.0.1":
153 | version "5.1.0"
154 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0"
155 | integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==
156 | dependencies:
157 | "@types/estree" "^1.0.0"
158 | estree-walker "^2.0.2"
159 | picomatch "^2.3.1"
160 |
161 | "@tootallnate/once@2":
162 | version "2.0.0"
163 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
164 | integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
165 |
166 | "@types/estree@^1.0.0":
167 | version "1.0.5"
168 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
169 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
170 |
171 | "@types/node@*":
172 | version "22.0.0"
173 | resolved "https://registry.yarnpkg.com/@types/node/-/node-22.0.0.tgz#04862a2a71e62264426083abe1e27e87cac05a30"
174 | integrity sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==
175 | dependencies:
176 | undici-types "~6.11.1"
177 |
178 | "@types/resolve@1.20.2":
179 | version "1.20.2"
180 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.2.tgz#97d26e00cd4a0423b4af620abecf3e6f442b7975"
181 | integrity sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==
182 |
183 | "@ungap/structured-clone@^1.2.0":
184 | version "1.2.0"
185 | resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
186 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
187 |
188 | abab@^2.0.6:
189 | version "2.0.6"
190 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
191 | integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
192 |
193 | acorn-globals@^7.0.0:
194 | version "7.0.1"
195 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3"
196 | integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==
197 | dependencies:
198 | acorn "^8.1.0"
199 | acorn-walk "^8.0.2"
200 |
201 | acorn-jsx@^5.3.2:
202 | version "5.3.2"
203 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
204 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
205 |
206 | acorn-walk@^8.0.2:
207 | version "8.3.3"
208 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.3.tgz#9caeac29eefaa0c41e3d4c65137de4d6f34df43e"
209 | integrity sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==
210 | dependencies:
211 | acorn "^8.11.0"
212 |
213 | acorn@^8.1.0, acorn@^8.11.0, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0:
214 | version "8.12.1"
215 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248"
216 | integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==
217 |
218 | agent-base@6:
219 | version "6.0.2"
220 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
221 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
222 | dependencies:
223 | debug "4"
224 |
225 | ajv@^6.12.4:
226 | version "6.12.6"
227 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
228 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
229 | dependencies:
230 | fast-deep-equal "^3.1.1"
231 | fast-json-stable-stringify "^2.0.0"
232 | json-schema-traverse "^0.4.1"
233 | uri-js "^4.2.2"
234 |
235 | ansi-colors@^4.1.3:
236 | version "4.1.3"
237 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
238 | integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
239 |
240 | ansi-regex@^5.0.1:
241 | version "5.0.1"
242 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
243 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
244 |
245 | ansi-styles@^3.2.1:
246 | version "3.2.1"
247 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
248 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
249 | dependencies:
250 | color-convert "^1.9.0"
251 |
252 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
253 | version "4.3.0"
254 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
255 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
256 | dependencies:
257 | color-convert "^2.0.1"
258 |
259 | anymatch@~3.1.2:
260 | version "3.1.3"
261 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
262 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
263 | dependencies:
264 | normalize-path "^3.0.0"
265 | picomatch "^2.0.4"
266 |
267 | argparse@^2.0.1:
268 | version "2.0.1"
269 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
270 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
271 |
272 | asynckit@^0.4.0:
273 | version "0.4.0"
274 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
275 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
276 |
277 | balanced-match@^1.0.0:
278 | version "1.0.2"
279 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
280 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
281 |
282 | binary-extensions@^2.0.0:
283 | version "2.3.0"
284 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
285 | integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
286 |
287 | brace-expansion@^1.1.7:
288 | version "1.1.11"
289 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
290 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
291 | dependencies:
292 | balanced-match "^1.0.0"
293 | concat-map "0.0.1"
294 |
295 | brace-expansion@^2.0.1:
296 | version "2.0.1"
297 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
298 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
299 | dependencies:
300 | balanced-match "^1.0.0"
301 |
302 | braces@~3.0.2:
303 | version "3.0.3"
304 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
305 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
306 | dependencies:
307 | fill-range "^7.1.1"
308 |
309 | browser-stdout@^1.3.1:
310 | version "1.3.1"
311 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
312 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
313 |
314 | buffer-from@^1.0.0:
315 | version "1.1.2"
316 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
317 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
318 |
319 | builtin-modules@^3.3.0:
320 | version "3.3.0"
321 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
322 | integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
323 |
324 | callsites@^3.0.0:
325 | version "3.1.0"
326 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
327 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
328 |
329 | camelcase@^6.0.0:
330 | version "6.3.0"
331 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
332 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
333 |
334 | chalk@^2.4.2:
335 | version "2.4.2"
336 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
337 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
338 | dependencies:
339 | ansi-styles "^3.2.1"
340 | escape-string-regexp "^1.0.5"
341 | supports-color "^5.3.0"
342 |
343 | chalk@^4.0.0, chalk@^4.1.0:
344 | version "4.1.2"
345 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
346 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
347 | dependencies:
348 | ansi-styles "^4.1.0"
349 | supports-color "^7.1.0"
350 |
351 | chokidar@^3.5.2, chokidar@^3.5.3:
352 | version "3.6.0"
353 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
354 | integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
355 | dependencies:
356 | anymatch "~3.1.2"
357 | braces "~3.0.2"
358 | glob-parent "~5.1.2"
359 | is-binary-path "~2.1.0"
360 | is-glob "~4.0.1"
361 | normalize-path "~3.0.0"
362 | readdirp "~3.6.0"
363 | optionalDependencies:
364 | fsevents "~2.3.2"
365 |
366 | clean-css-cli@^5.6.1:
367 | version "5.6.3"
368 | resolved "https://registry.yarnpkg.com/clean-css-cli/-/clean-css-cli-5.6.3.tgz#be2d65c9b17bba01a598d7eeb5ce68f4119f07b5"
369 | integrity sha512-MUAta8pEqA/d2DKQwtZU5nm0Og8TCyAglOx3GlWwjhGdKBwY4kVF6E5M6LU/jmmuswv+HbYqG/dKKkq5p1dD0A==
370 | dependencies:
371 | chokidar "^3.5.2"
372 | clean-css "^5.3.3"
373 | commander "7.x"
374 | glob "^7.1.6"
375 |
376 | clean-css@^5.3.3:
377 | version "5.3.3"
378 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd"
379 | integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==
380 | dependencies:
381 | source-map "~0.6.0"
382 |
383 | cliui@^7.0.2:
384 | version "7.0.4"
385 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
386 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
387 | dependencies:
388 | string-width "^4.2.0"
389 | strip-ansi "^6.0.0"
390 | wrap-ansi "^7.0.0"
391 |
392 | color-convert@^1.9.0:
393 | version "1.9.3"
394 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
395 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
396 | dependencies:
397 | color-name "1.1.3"
398 |
399 | color-convert@^2.0.1:
400 | version "2.0.1"
401 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
402 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
403 | dependencies:
404 | color-name "~1.1.4"
405 |
406 | color-name@1.1.3:
407 | version "1.1.3"
408 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
409 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
410 |
411 | color-name@~1.1.4:
412 | version "1.1.4"
413 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
414 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
415 |
416 | combined-stream@^1.0.8:
417 | version "1.0.8"
418 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
419 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
420 | dependencies:
421 | delayed-stream "~1.0.0"
422 |
423 | commander@7.x:
424 | version "7.2.0"
425 | resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
426 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
427 |
428 | commander@^2.20.0:
429 | version "2.20.3"
430 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
431 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
432 |
433 | concat-map@0.0.1:
434 | version "0.0.1"
435 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
436 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
437 |
438 | cross-spawn@^7.0.2:
439 | version "7.0.3"
440 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
441 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
442 | dependencies:
443 | path-key "^3.1.0"
444 | shebang-command "^2.0.0"
445 | which "^2.0.1"
446 |
447 | cssom@^0.5.0:
448 | version "0.5.0"
449 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36"
450 | integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==
451 |
452 | cssom@~0.3.6:
453 | version "0.3.8"
454 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
455 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
456 |
457 | cssstyle@^2.3.0:
458 | version "2.3.0"
459 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
460 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
461 | dependencies:
462 | cssom "~0.3.6"
463 |
464 | data-urls@^3.0.2:
465 | version "3.0.2"
466 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143"
467 | integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==
468 | dependencies:
469 | abab "^2.0.6"
470 | whatwg-mimetype "^3.0.0"
471 | whatwg-url "^11.0.0"
472 |
473 | debug@4, debug@^4.3.1, debug@^4.3.2, debug@^4.3.5:
474 | version "4.3.6"
475 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
476 | integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
477 | dependencies:
478 | ms "2.1.2"
479 |
480 | decamelize@^4.0.0:
481 | version "4.0.0"
482 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
483 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
484 |
485 | decimal.js@^10.4.2:
486 | version "10.4.3"
487 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23"
488 | integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==
489 |
490 | deep-is@^0.1.3:
491 | version "0.1.4"
492 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
493 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
494 |
495 | deepmerge@^4.2.2:
496 | version "4.3.1"
497 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
498 | integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
499 |
500 | delayed-stream@~1.0.0:
501 | version "1.0.0"
502 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
503 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
504 |
505 | diff@^5.2.0:
506 | version "5.2.0"
507 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
508 | integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
509 |
510 | doctrine@^3.0.0:
511 | version "3.0.0"
512 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
513 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
514 | dependencies:
515 | esutils "^2.0.2"
516 |
517 | domexception@^4.0.0:
518 | version "4.0.0"
519 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673"
520 | integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==
521 | dependencies:
522 | webidl-conversions "^7.0.0"
523 |
524 | emoji-regex@^8.0.0:
525 | version "8.0.0"
526 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
527 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
528 |
529 | entities@^4.4.0:
530 | version "4.5.0"
531 | resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
532 | integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
533 |
534 | escalade@^3.1.1:
535 | version "3.1.2"
536 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
537 | integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
538 |
539 | escape-string-regexp@^1.0.5:
540 | version "1.0.5"
541 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
542 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
543 |
544 | escape-string-regexp@^4.0.0:
545 | version "4.0.0"
546 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
547 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
548 |
549 | escodegen@^2.0.0:
550 | version "2.1.0"
551 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17"
552 | integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==
553 | dependencies:
554 | esprima "^4.0.1"
555 | estraverse "^5.2.0"
556 | esutils "^2.0.2"
557 | optionalDependencies:
558 | source-map "~0.6.1"
559 |
560 | eslint-scope@^7.2.2:
561 | version "7.2.2"
562 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
563 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
564 | dependencies:
565 | esrecurse "^4.3.0"
566 | estraverse "^5.2.0"
567 |
568 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
569 | version "3.4.3"
570 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
571 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
572 |
573 | eslint@^8.27.0:
574 | version "8.57.0"
575 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668"
576 | integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==
577 | dependencies:
578 | "@eslint-community/eslint-utils" "^4.2.0"
579 | "@eslint-community/regexpp" "^4.6.1"
580 | "@eslint/eslintrc" "^2.1.4"
581 | "@eslint/js" "8.57.0"
582 | "@humanwhocodes/config-array" "^0.11.14"
583 | "@humanwhocodes/module-importer" "^1.0.1"
584 | "@nodelib/fs.walk" "^1.2.8"
585 | "@ungap/structured-clone" "^1.2.0"
586 | ajv "^6.12.4"
587 | chalk "^4.0.0"
588 | cross-spawn "^7.0.2"
589 | debug "^4.3.2"
590 | doctrine "^3.0.0"
591 | escape-string-regexp "^4.0.0"
592 | eslint-scope "^7.2.2"
593 | eslint-visitor-keys "^3.4.3"
594 | espree "^9.6.1"
595 | esquery "^1.4.2"
596 | esutils "^2.0.2"
597 | fast-deep-equal "^3.1.3"
598 | file-entry-cache "^6.0.1"
599 | find-up "^5.0.0"
600 | glob-parent "^6.0.2"
601 | globals "^13.19.0"
602 | graphemer "^1.4.0"
603 | ignore "^5.2.0"
604 | imurmurhash "^0.1.4"
605 | is-glob "^4.0.0"
606 | is-path-inside "^3.0.3"
607 | js-yaml "^4.1.0"
608 | json-stable-stringify-without-jsonify "^1.0.1"
609 | levn "^0.4.1"
610 | lodash.merge "^4.6.2"
611 | minimatch "^3.1.2"
612 | natural-compare "^1.4.0"
613 | optionator "^0.9.3"
614 | strip-ansi "^6.0.1"
615 | text-table "^0.2.0"
616 |
617 | espree@^9.6.0, espree@^9.6.1:
618 | version "9.6.1"
619 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
620 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
621 | dependencies:
622 | acorn "^8.9.0"
623 | acorn-jsx "^5.3.2"
624 | eslint-visitor-keys "^3.4.1"
625 |
626 | esprima@^4.0.1:
627 | version "4.0.1"
628 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
629 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
630 |
631 | esquery@^1.4.2:
632 | version "1.6.0"
633 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7"
634 | integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==
635 | dependencies:
636 | estraverse "^5.1.0"
637 |
638 | esrecurse@^4.3.0:
639 | version "4.3.0"
640 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
641 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
642 | dependencies:
643 | estraverse "^5.2.0"
644 |
645 | estraverse@^5.1.0, estraverse@^5.2.0:
646 | version "5.3.0"
647 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
648 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
649 |
650 | estree-walker@^2.0.2:
651 | version "2.0.2"
652 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
653 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
654 |
655 | esutils@^2.0.2:
656 | version "2.0.3"
657 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
658 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
659 |
660 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
661 | version "3.1.3"
662 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
663 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
664 |
665 | fast-json-stable-stringify@^2.0.0:
666 | version "2.1.0"
667 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
668 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
669 |
670 | fast-levenshtein@^2.0.6:
671 | version "2.0.6"
672 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
673 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
674 |
675 | fastq@^1.6.0:
676 | version "1.17.1"
677 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
678 | integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
679 | dependencies:
680 | reusify "^1.0.4"
681 |
682 | file-entry-cache@^6.0.1:
683 | version "6.0.1"
684 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
685 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
686 | dependencies:
687 | flat-cache "^3.0.4"
688 |
689 | fill-range@^7.1.1:
690 | version "7.1.1"
691 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
692 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
693 | dependencies:
694 | to-regex-range "^5.0.1"
695 |
696 | find-up@^5.0.0:
697 | version "5.0.0"
698 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
699 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
700 | dependencies:
701 | locate-path "^6.0.0"
702 | path-exists "^4.0.0"
703 |
704 | flat-cache@^3.0.4:
705 | version "3.2.0"
706 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee"
707 | integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==
708 | dependencies:
709 | flatted "^3.2.9"
710 | keyv "^4.5.3"
711 | rimraf "^3.0.2"
712 |
713 | flat@^5.0.2:
714 | version "5.0.2"
715 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
716 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
717 |
718 | flatted@^3.2.9:
719 | version "3.3.1"
720 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a"
721 | integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==
722 |
723 | form-data@^4.0.0:
724 | version "4.0.0"
725 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
726 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
727 | dependencies:
728 | asynckit "^0.4.0"
729 | combined-stream "^1.0.8"
730 | mime-types "^2.1.12"
731 |
732 | fs.realpath@^1.0.0:
733 | version "1.0.0"
734 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
735 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
736 |
737 | fsevents@~2.3.2:
738 | version "2.3.3"
739 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
740 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
741 |
742 | function-bind@^1.1.2:
743 | version "1.1.2"
744 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
745 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
746 |
747 | get-caller-file@^2.0.5:
748 | version "2.0.5"
749 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
750 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
751 |
752 | glob-parent@^6.0.2:
753 | version "6.0.2"
754 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
755 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
756 | dependencies:
757 | is-glob "^4.0.3"
758 |
759 | glob-parent@~5.1.2:
760 | version "5.1.2"
761 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
762 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
763 | dependencies:
764 | is-glob "^4.0.1"
765 |
766 | glob@^7.1.3, glob@^7.1.6:
767 | version "7.2.3"
768 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
769 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
770 | dependencies:
771 | fs.realpath "^1.0.0"
772 | inflight "^1.0.4"
773 | inherits "2"
774 | minimatch "^3.1.1"
775 | once "^1.3.0"
776 | path-is-absolute "^1.0.0"
777 |
778 | glob@^8.1.0:
779 | version "8.1.0"
780 | resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
781 | integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
782 | dependencies:
783 | fs.realpath "^1.0.0"
784 | inflight "^1.0.4"
785 | inherits "2"
786 | minimatch "^5.0.1"
787 | once "^1.3.0"
788 |
789 | globals@^13.19.0:
790 | version "13.24.0"
791 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171"
792 | integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==
793 | dependencies:
794 | type-fest "^0.20.2"
795 |
796 | graphemer@^1.4.0:
797 | version "1.4.0"
798 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
799 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
800 |
801 | has-flag@^3.0.0:
802 | version "3.0.0"
803 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
804 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
805 |
806 | has-flag@^4.0.0:
807 | version "4.0.0"
808 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
809 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
810 |
811 | hasown@^2.0.2:
812 | version "2.0.2"
813 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
814 | integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
815 | dependencies:
816 | function-bind "^1.1.2"
817 |
818 | he@^1.2.0:
819 | version "1.2.0"
820 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
821 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
822 |
823 | html-encoding-sniffer@^3.0.0:
824 | version "3.0.0"
825 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9"
826 | integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==
827 | dependencies:
828 | whatwg-encoding "^2.0.0"
829 |
830 | http-proxy-agent@^5.0.0:
831 | version "5.0.0"
832 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43"
833 | integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==
834 | dependencies:
835 | "@tootallnate/once" "2"
836 | agent-base "6"
837 | debug "4"
838 |
839 | https-proxy-agent@^5.0.1:
840 | version "5.0.1"
841 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
842 | integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
843 | dependencies:
844 | agent-base "6"
845 | debug "4"
846 |
847 | iconv-lite@0.6.3:
848 | version "0.6.3"
849 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
850 | integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
851 | dependencies:
852 | safer-buffer ">= 2.1.2 < 3.0.0"
853 |
854 | ignore@^5.2.0:
855 | version "5.3.1"
856 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
857 | integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
858 |
859 | immutable@^4.1.0:
860 | version "4.3.7"
861 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381"
862 | integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==
863 |
864 | import-fresh@^3.2.1:
865 | version "3.3.0"
866 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
867 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
868 | dependencies:
869 | parent-module "^1.0.0"
870 | resolve-from "^4.0.0"
871 |
872 | imurmurhash@^0.1.4:
873 | version "0.1.4"
874 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
875 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
876 |
877 | inflight@^1.0.4:
878 | version "1.0.6"
879 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
880 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
881 | dependencies:
882 | once "^1.3.0"
883 | wrappy "1"
884 |
885 | inherits@2:
886 | version "2.0.4"
887 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
888 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
889 |
890 | is-binary-path@~2.1.0:
891 | version "2.1.0"
892 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
893 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
894 | dependencies:
895 | binary-extensions "^2.0.0"
896 |
897 | is-builtin-module@^3.2.1:
898 | version "3.2.1"
899 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169"
900 | integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
901 | dependencies:
902 | builtin-modules "^3.3.0"
903 |
904 | is-core-module@^2.13.0:
905 | version "2.15.0"
906 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.0.tgz#71c72ec5442ace7e76b306e9d48db361f22699ea"
907 | integrity sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==
908 | dependencies:
909 | hasown "^2.0.2"
910 |
911 | is-extglob@^2.1.1:
912 | version "2.1.1"
913 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
914 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
915 |
916 | is-fullwidth-code-point@^3.0.0:
917 | version "3.0.0"
918 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
919 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
920 |
921 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
922 | version "4.0.3"
923 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
924 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
925 | dependencies:
926 | is-extglob "^2.1.1"
927 |
928 | is-module@^1.0.0:
929 | version "1.0.0"
930 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
931 | integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
932 |
933 | is-number@^7.0.0:
934 | version "7.0.0"
935 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
936 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
937 |
938 | is-path-inside@^3.0.3:
939 | version "3.0.3"
940 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
941 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
942 |
943 | is-plain-obj@^2.1.0:
944 | version "2.1.0"
945 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
946 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
947 |
948 | is-potential-custom-element-name@^1.0.1:
949 | version "1.0.1"
950 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
951 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
952 |
953 | is-unicode-supported@^0.1.0:
954 | version "0.1.0"
955 | resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
956 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
957 |
958 | isexe@^2.0.0:
959 | version "2.0.0"
960 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
961 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
962 |
963 | isoformat@^0.2.0:
964 | version "0.2.1"
965 | resolved "https://registry.yarnpkg.com/isoformat/-/isoformat-0.2.1.tgz#2526344a4276a101b2881848dc337d1d2ae74494"
966 | integrity sha512-tFLRAygk9NqrRPhJSnNGh7g7oaVWDwR0wKh/GM2LgmPa50Eg4UfyaCO4I8k6EqJHl1/uh2RAD6g06n5ygEnrjQ==
967 |
968 | jest-worker@^26.2.1:
969 | version "26.6.2"
970 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
971 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
972 | dependencies:
973 | "@types/node" "*"
974 | merge-stream "^2.0.0"
975 | supports-color "^7.0.0"
976 |
977 | js-tokens@^4.0.0:
978 | version "4.0.0"
979 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
980 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
981 |
982 | js-yaml@^4.1.0:
983 | version "4.1.0"
984 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
985 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
986 | dependencies:
987 | argparse "^2.0.1"
988 |
989 | jsdom@^20.0.2:
990 | version "20.0.3"
991 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db"
992 | integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==
993 | dependencies:
994 | abab "^2.0.6"
995 | acorn "^8.8.1"
996 | acorn-globals "^7.0.0"
997 | cssom "^0.5.0"
998 | cssstyle "^2.3.0"
999 | data-urls "^3.0.2"
1000 | decimal.js "^10.4.2"
1001 | domexception "^4.0.0"
1002 | escodegen "^2.0.0"
1003 | form-data "^4.0.0"
1004 | html-encoding-sniffer "^3.0.0"
1005 | http-proxy-agent "^5.0.0"
1006 | https-proxy-agent "^5.0.1"
1007 | is-potential-custom-element-name "^1.0.1"
1008 | nwsapi "^2.2.2"
1009 | parse5 "^7.1.1"
1010 | saxes "^6.0.0"
1011 | symbol-tree "^3.2.4"
1012 | tough-cookie "^4.1.2"
1013 | w3c-xmlserializer "^4.0.0"
1014 | webidl-conversions "^7.0.0"
1015 | whatwg-encoding "^2.0.0"
1016 | whatwg-mimetype "^3.0.0"
1017 | whatwg-url "^11.0.0"
1018 | ws "^8.11.0"
1019 | xml-name-validator "^4.0.0"
1020 |
1021 | json-buffer@3.0.1:
1022 | version "3.0.1"
1023 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
1024 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
1025 |
1026 | json-schema-traverse@^0.4.1:
1027 | version "0.4.1"
1028 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1029 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1030 |
1031 | json-stable-stringify-without-jsonify@^1.0.1:
1032 | version "1.0.1"
1033 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1034 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
1035 |
1036 | keyv@^4.5.3:
1037 | version "4.5.4"
1038 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
1039 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
1040 | dependencies:
1041 | json-buffer "3.0.1"
1042 |
1043 | levn@^0.4.1:
1044 | version "0.4.1"
1045 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1046 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1047 | dependencies:
1048 | prelude-ls "^1.2.1"
1049 | type-check "~0.4.0"
1050 |
1051 | locate-path@^6.0.0:
1052 | version "6.0.0"
1053 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
1054 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
1055 | dependencies:
1056 | p-locate "^5.0.0"
1057 |
1058 | lodash.merge@^4.6.2:
1059 | version "4.6.2"
1060 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1061 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1062 |
1063 | log-symbols@^4.1.0:
1064 | version "4.1.0"
1065 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
1066 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
1067 | dependencies:
1068 | chalk "^4.1.0"
1069 | is-unicode-supported "^0.1.0"
1070 |
1071 | merge-stream@^2.0.0:
1072 | version "2.0.0"
1073 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
1074 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
1075 |
1076 | mime-db@1.52.0:
1077 | version "1.52.0"
1078 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
1079 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
1080 |
1081 | mime-types@^2.1.12:
1082 | version "2.1.35"
1083 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
1084 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
1085 | dependencies:
1086 | mime-db "1.52.0"
1087 |
1088 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
1089 | version "3.1.2"
1090 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1091 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1092 | dependencies:
1093 | brace-expansion "^1.1.7"
1094 |
1095 | minimatch@^5.0.1, minimatch@^5.1.6:
1096 | version "5.1.6"
1097 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
1098 | integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
1099 | dependencies:
1100 | brace-expansion "^2.0.1"
1101 |
1102 | mocha@^10.1.0:
1103 | version "10.7.0"
1104 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.7.0.tgz#9e5cbed8fa9b37537a25bd1f7fb4f6fc45458b9a"
1105 | integrity sha512-v8/rBWr2VO5YkspYINnvu81inSz2y3ODJrhO175/Exzor1RcEZZkizgE2A+w/CAXXoESS8Kys5E62dOHGHzULA==
1106 | dependencies:
1107 | ansi-colors "^4.1.3"
1108 | browser-stdout "^1.3.1"
1109 | chokidar "^3.5.3"
1110 | debug "^4.3.5"
1111 | diff "^5.2.0"
1112 | escape-string-regexp "^4.0.0"
1113 | find-up "^5.0.0"
1114 | glob "^8.1.0"
1115 | he "^1.2.0"
1116 | js-yaml "^4.1.0"
1117 | log-symbols "^4.1.0"
1118 | minimatch "^5.1.6"
1119 | ms "^2.1.3"
1120 | serialize-javascript "^6.0.2"
1121 | strip-json-comments "^3.1.1"
1122 | supports-color "^8.1.1"
1123 | workerpool "^6.5.1"
1124 | yargs "^16.2.0"
1125 | yargs-parser "^20.2.9"
1126 | yargs-unparser "^2.0.0"
1127 |
1128 | module-alias@^2.2.2:
1129 | version "2.2.3"
1130 | resolved "https://registry.yarnpkg.com/module-alias/-/module-alias-2.2.3.tgz#ec2e85c68973bda6ab71ce7c93b763ec96053221"
1131 | integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==
1132 |
1133 | ms@2.1.2:
1134 | version "2.1.2"
1135 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1136 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1137 |
1138 | ms@^2.1.3:
1139 | version "2.1.3"
1140 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1141 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1142 |
1143 | natural-compare@^1.4.0:
1144 | version "1.4.0"
1145 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1146 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
1147 |
1148 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1149 | version "3.0.0"
1150 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1151 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1152 |
1153 | nwsapi@^2.2.2:
1154 | version "2.2.12"
1155 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8"
1156 | integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==
1157 |
1158 | once@^1.3.0:
1159 | version "1.4.0"
1160 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1161 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
1162 | dependencies:
1163 | wrappy "1"
1164 |
1165 | optionator@^0.9.3:
1166 | version "0.9.4"
1167 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734"
1168 | integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==
1169 | dependencies:
1170 | deep-is "^0.1.3"
1171 | fast-levenshtein "^2.0.6"
1172 | levn "^0.4.1"
1173 | prelude-ls "^1.2.1"
1174 | type-check "^0.4.0"
1175 | word-wrap "^1.2.5"
1176 |
1177 | p-limit@^3.0.2:
1178 | version "3.1.0"
1179 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
1180 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1181 | dependencies:
1182 | yocto-queue "^0.1.0"
1183 |
1184 | p-locate@^5.0.0:
1185 | version "5.0.0"
1186 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
1187 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1188 | dependencies:
1189 | p-limit "^3.0.2"
1190 |
1191 | parent-module@^1.0.0:
1192 | version "1.0.1"
1193 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1194 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1195 | dependencies:
1196 | callsites "^3.0.0"
1197 |
1198 | parse5@^7.1.1:
1199 | version "7.1.2"
1200 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
1201 | integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
1202 | dependencies:
1203 | entities "^4.4.0"
1204 |
1205 | path-exists@^4.0.0:
1206 | version "4.0.0"
1207 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
1208 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1209 |
1210 | path-is-absolute@^1.0.0:
1211 | version "1.0.1"
1212 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1213 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
1214 |
1215 | path-key@^3.1.0:
1216 | version "3.1.1"
1217 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1218 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1219 |
1220 | path-parse@^1.0.7:
1221 | version "1.0.7"
1222 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1223 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1224 |
1225 | picocolors@^1.0.0:
1226 | version "1.0.1"
1227 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1"
1228 | integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==
1229 |
1230 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
1231 | version "2.3.1"
1232 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1233 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1234 |
1235 | prelude-ls@^1.2.1:
1236 | version "1.2.1"
1237 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1238 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1239 |
1240 | psl@^1.1.33:
1241 | version "1.9.0"
1242 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7"
1243 | integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
1244 |
1245 | punycode@^2.1.0, punycode@^2.1.1:
1246 | version "2.3.1"
1247 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
1248 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
1249 |
1250 | querystringify@^2.1.1:
1251 | version "2.2.0"
1252 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
1253 | integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
1254 |
1255 | queue-microtask@^1.2.2:
1256 | version "1.2.3"
1257 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1258 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1259 |
1260 | randombytes@^2.1.0:
1261 | version "2.1.0"
1262 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
1263 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
1264 | dependencies:
1265 | safe-buffer "^5.1.0"
1266 |
1267 | readdirp@~3.6.0:
1268 | version "3.6.0"
1269 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
1270 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
1271 | dependencies:
1272 | picomatch "^2.2.1"
1273 |
1274 | require-directory@^2.1.1:
1275 | version "2.1.1"
1276 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1277 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
1278 |
1279 | requires-port@^1.0.0:
1280 | version "1.0.0"
1281 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
1282 | integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
1283 |
1284 | resolve-from@^4.0.0:
1285 | version "4.0.0"
1286 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1287 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1288 |
1289 | resolve@^1.22.1:
1290 | version "1.22.8"
1291 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
1292 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
1293 | dependencies:
1294 | is-core-module "^2.13.0"
1295 | path-parse "^1.0.7"
1296 | supports-preserve-symlinks-flag "^1.0.0"
1297 |
1298 | reusify@^1.0.4:
1299 | version "1.0.4"
1300 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1301 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1302 |
1303 | rimraf@^3.0.2:
1304 | version "3.0.2"
1305 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1306 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1307 | dependencies:
1308 | glob "^7.1.3"
1309 |
1310 | rollup-plugin-terser@^7.0.2:
1311 | version "7.0.2"
1312 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d"
1313 | integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==
1314 | dependencies:
1315 | "@babel/code-frame" "^7.10.4"
1316 | jest-worker "^26.2.1"
1317 | serialize-javascript "^4.0.0"
1318 | terser "^5.0.0"
1319 |
1320 | rollup@^3.2.5:
1321 | version "3.29.4"
1322 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981"
1323 | integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==
1324 | optionalDependencies:
1325 | fsevents "~2.3.2"
1326 |
1327 | run-parallel@^1.1.9:
1328 | version "1.2.0"
1329 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1330 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1331 | dependencies:
1332 | queue-microtask "^1.2.2"
1333 |
1334 | safe-buffer@^5.1.0:
1335 | version "5.2.1"
1336 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
1337 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
1338 |
1339 | "safer-buffer@>= 2.1.2 < 3.0.0":
1340 | version "2.1.2"
1341 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1342 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
1343 |
1344 | saxes@^6.0.0:
1345 | version "6.0.0"
1346 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5"
1347 | integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==
1348 | dependencies:
1349 | xmlchars "^2.2.0"
1350 |
1351 | serialize-javascript@^4.0.0:
1352 | version "4.0.0"
1353 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
1354 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
1355 | dependencies:
1356 | randombytes "^2.1.0"
1357 |
1358 | serialize-javascript@^6.0.2:
1359 | version "6.0.2"
1360 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2"
1361 | integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
1362 | dependencies:
1363 | randombytes "^2.1.0"
1364 |
1365 | shebang-command@^2.0.0:
1366 | version "2.0.0"
1367 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1368 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1369 | dependencies:
1370 | shebang-regex "^3.0.0"
1371 |
1372 | shebang-regex@^3.0.0:
1373 | version "3.0.0"
1374 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1375 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1376 |
1377 | source-map-support@~0.5.20:
1378 | version "0.5.21"
1379 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
1380 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
1381 | dependencies:
1382 | buffer-from "^1.0.0"
1383 | source-map "^0.6.0"
1384 |
1385 | source-map@^0.6.0, source-map@~0.6.0, source-map@~0.6.1:
1386 | version "0.6.1"
1387 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
1388 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
1389 |
1390 | string-width@^4.1.0, string-width@^4.2.0:
1391 | version "4.2.3"
1392 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1393 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
1394 | dependencies:
1395 | emoji-regex "^8.0.0"
1396 | is-fullwidth-code-point "^3.0.0"
1397 | strip-ansi "^6.0.1"
1398 |
1399 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1400 | version "6.0.1"
1401 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1402 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1403 | dependencies:
1404 | ansi-regex "^5.0.1"
1405 |
1406 | strip-json-comments@^3.1.1:
1407 | version "3.1.1"
1408 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1409 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1410 |
1411 | supports-color@^5.3.0:
1412 | version "5.5.0"
1413 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1414 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1415 | dependencies:
1416 | has-flag "^3.0.0"
1417 |
1418 | supports-color@^7.0.0, supports-color@^7.1.0:
1419 | version "7.2.0"
1420 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1421 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1422 | dependencies:
1423 | has-flag "^4.0.0"
1424 |
1425 | supports-color@^8.1.1:
1426 | version "8.1.1"
1427 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
1428 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
1429 | dependencies:
1430 | has-flag "^4.0.0"
1431 |
1432 | supports-preserve-symlinks-flag@^1.0.0:
1433 | version "1.0.0"
1434 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1435 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1436 |
1437 | symbol-tree@^3.2.4:
1438 | version "3.2.4"
1439 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
1440 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
1441 |
1442 | terser@^5.0.0:
1443 | version "5.31.3"
1444 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.3.tgz#b24b7beb46062f4653f049eea4f0cd165d0f0c38"
1445 | integrity sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==
1446 | dependencies:
1447 | "@jridgewell/source-map" "^0.3.3"
1448 | acorn "^8.8.2"
1449 | commander "^2.20.0"
1450 | source-map-support "~0.5.20"
1451 |
1452 | text-table@^0.2.0:
1453 | version "0.2.0"
1454 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1455 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
1456 |
1457 | to-regex-range@^5.0.1:
1458 | version "5.0.1"
1459 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1460 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1461 | dependencies:
1462 | is-number "^7.0.0"
1463 |
1464 | tough-cookie@^4.1.2:
1465 | version "4.1.4"
1466 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36"
1467 | integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==
1468 | dependencies:
1469 | psl "^1.1.33"
1470 | punycode "^2.1.1"
1471 | universalify "^0.2.0"
1472 | url-parse "^1.5.3"
1473 |
1474 | tr46@^3.0.0:
1475 | version "3.0.0"
1476 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9"
1477 | integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==
1478 | dependencies:
1479 | punycode "^2.1.1"
1480 |
1481 | type-check@^0.4.0, type-check@~0.4.0:
1482 | version "0.4.0"
1483 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
1484 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1485 | dependencies:
1486 | prelude-ls "^1.2.1"
1487 |
1488 | type-fest@^0.20.2:
1489 | version "0.20.2"
1490 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
1491 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1492 |
1493 | undici-types@~6.11.1:
1494 | version "6.11.1"
1495 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.11.1.tgz#432ea6e8efd54a48569705a699e62d8f4981b197"
1496 | integrity sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==
1497 |
1498 | universalify@^0.2.0:
1499 | version "0.2.0"
1500 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
1501 | integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
1502 |
1503 | uri-js@^4.2.2:
1504 | version "4.4.1"
1505 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
1506 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1507 | dependencies:
1508 | punycode "^2.1.0"
1509 |
1510 | url-parse@^1.5.3:
1511 | version "1.5.10"
1512 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
1513 | integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
1514 | dependencies:
1515 | querystringify "^2.1.1"
1516 | requires-port "^1.0.0"
1517 |
1518 | w3c-xmlserializer@^4.0.0:
1519 | version "4.0.0"
1520 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073"
1521 | integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==
1522 | dependencies:
1523 | xml-name-validator "^4.0.0"
1524 |
1525 | webidl-conversions@^7.0.0:
1526 | version "7.0.0"
1527 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a"
1528 | integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==
1529 |
1530 | whatwg-encoding@^2.0.0:
1531 | version "2.0.0"
1532 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53"
1533 | integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==
1534 | dependencies:
1535 | iconv-lite "0.6.3"
1536 |
1537 | whatwg-mimetype@^3.0.0:
1538 | version "3.0.0"
1539 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7"
1540 | integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==
1541 |
1542 | whatwg-url@^11.0.0:
1543 | version "11.0.0"
1544 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018"
1545 | integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==
1546 | dependencies:
1547 | tr46 "^3.0.0"
1548 | webidl-conversions "^7.0.0"
1549 |
1550 | which@^2.0.1:
1551 | version "2.0.2"
1552 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1553 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1554 | dependencies:
1555 | isexe "^2.0.0"
1556 |
1557 | word-wrap@^1.2.5:
1558 | version "1.2.5"
1559 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
1560 | integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
1561 |
1562 | workerpool@^6.5.1:
1563 | version "6.5.1"
1564 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544"
1565 | integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
1566 |
1567 | wrap-ansi@^7.0.0:
1568 | version "7.0.0"
1569 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1570 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
1571 | dependencies:
1572 | ansi-styles "^4.0.0"
1573 | string-width "^4.1.0"
1574 | strip-ansi "^6.0.0"
1575 |
1576 | wrappy@1:
1577 | version "1.0.2"
1578 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1579 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
1580 |
1581 | ws@^8.11.0:
1582 | version "8.18.0"
1583 | resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
1584 | integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
1585 |
1586 | xml-name-validator@^4.0.0:
1587 | version "4.0.0"
1588 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835"
1589 | integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==
1590 |
1591 | xmlchars@^2.2.0:
1592 | version "2.2.0"
1593 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
1594 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
1595 |
1596 | y18n@^5.0.5:
1597 | version "5.0.8"
1598 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
1599 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
1600 |
1601 | yargs-parser@^20.2.2, yargs-parser@^20.2.9:
1602 | version "20.2.9"
1603 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
1604 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
1605 |
1606 | yargs-unparser@^2.0.0:
1607 | version "2.0.0"
1608 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb"
1609 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==
1610 | dependencies:
1611 | camelcase "^6.0.0"
1612 | decamelize "^4.0.0"
1613 | flat "^5.0.2"
1614 | is-plain-obj "^2.1.0"
1615 |
1616 | yargs@^16.2.0:
1617 | version "16.2.0"
1618 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
1619 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
1620 | dependencies:
1621 | cliui "^7.0.2"
1622 | escalade "^3.1.1"
1623 | get-caller-file "^2.0.5"
1624 | require-directory "^2.1.1"
1625 | string-width "^4.2.0"
1626 | y18n "^5.0.5"
1627 | yargs-parser "^20.2.2"
1628 |
1629 | yocto-queue@^0.1.0:
1630 | version "0.1.0"
1631 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
1632 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1633 |
--------------------------------------------------------------------------------