├── dist └── .gitkeep ├── html ├── happ │ ├── comb │ ├── comb_no_debug.html │ └── index.html └── chaperone │ ├── comb │ ├── comb_not_listening.html │ ├── comb_method_does_not_exist.html │ ├── comb_method_is_not_a_function.html │ ├── comb_no_debug.html │ ├── comb_method_no_response.html │ ├── comb_method_long_wait.html │ └── index.html ├── .gitignore ├── webpack.config.js ├── src ├── tsconfig.json ├── tsconfig.es.json ├── async_with_timeout.ts └── index.ts ├── docs └── .jsdoc.json ├── tsconfig.json ├── CHANGELOG.md ├── tests ├── integration │ ├── test_setup.js │ ├── test_puppeteer.js │ └── test_comb.js └── setup.js ├── package.json ├── Makefile ├── README.md └── yarn.lock /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/happ/comb: -------------------------------------------------------------------------------- 1 | ../../dist/ -------------------------------------------------------------------------------- /html/chaperone/comb: -------------------------------------------------------------------------------- 1 | ../../dist/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | lib 5 | lib.es 6 | *~ 7 | \#*# 8 | .#* 9 | docs 10 | .tsbuildinfo 11 | -------------------------------------------------------------------------------- /html/chaperone/comb_not_listening.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

COMB not listening!

4 | -------------------------------------------------------------------------------- /html/happ/comb_no_debug.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

hApp!

4 | 5 |
Hello World
6 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | target: 'web', 4 | 5 | // Assign 'module.exports' to the window variable 6 | output: { 7 | libraryTarget: 'window', 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig", 3 | "compilerOptions": { 4 | "outDir": "../lib", 5 | "sourceMap": true, 6 | "tsBuildInfoFile": "../.tsbuildinfo" 7 | }, 8 | "include": [ 9 | "**/*" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /html/happ/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

hApp!

4 | 5 |
Hello World
6 | 7 | 12 | -------------------------------------------------------------------------------- /docs/.jsdoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["plugins/markdown"], 3 | "templates": { 4 | "referenceTitle": "Holo Hosting - Cross-origin Message Bus (COMB)", 5 | "disableSort": false, 6 | "resources": { 7 | } 8 | }, 9 | "opts": { 10 | "template": "node_modules/braintree-jsdoc-template" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/tsconfig.es.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig", 3 | "compilerOptions": { 4 | "outDir": "../lib.es", 5 | "module": "es2015", 6 | "sourceMap": true, 7 | "moduleResolution": "node", 8 | "tsBuildInfoFile": "../.tsbuildinfo" 9 | }, 10 | "include": [ 11 | "**/*" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /html/chaperone/comb_method_does_not_exist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Chaperone!

4 | 5 | 15 | -------------------------------------------------------------------------------- /html/chaperone/comb_method_is_not_a_function.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Chaperone!

4 | 5 | 17 | -------------------------------------------------------------------------------- /html/chaperone/comb_no_debug.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Chaperone!

4 | 5 | 18 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "module": "CommonJS", 5 | 6 | "composite": true, 7 | "esModuleInterop": true, 8 | 9 | "forceConsistentCasingInFileNames": true, 10 | "strict": false, // true, 11 | "skipLibCheck": true, 12 | 13 | "types": [ 14 | "node" 15 | ] 16 | }, 17 | 18 | "files": [], 19 | 20 | "references": [ 21 | { "path": "./src/tsconfig.json" }, 22 | { "path": "./src/tsconfig.es.json" } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /html/chaperone/comb_method_no_response.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Chaperone!

4 | 5 | 21 | -------------------------------------------------------------------------------- /html/chaperone/comb_method_long_wait.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Chaperone!

4 | 5 | 22 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 3 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 4 | 5 | ## [Unreleased] 6 | 7 | ## [0.3.2] - 2023-11-1 8 | - Support node 18 9 | 10 | ## [0.3.1] - 2023-10-22 11 | - Adds container param for customizable container 12 | 13 | ## [0.3.0] - 2022-06-01 14 | 15 | ### Changed 16 | - Format code with prettier-standard 17 | - Added and updated types to be more specific 18 | - msgpack encodes/decodes data passing through postmate, to avoid json stringify issues with complex data types, eg Uint8Arrays 19 | - Propogates errors thrown by listener methods. (eg if `zomeCall` throws in chaperone, now `zomeCall` in web-sdk will throw that error) 20 | - Updates typescript build config to work with msgpack 21 | - Replaces npm with yarn 22 | 23 | ## [0.2.0] - 2021-02-04 24 | ### Added 25 | - Handle signals. `ParentAPI` now has a `.sendSignal` method which calls a `signalCb` passed in through `COMB.connect` 26 | -------------------------------------------------------------------------------- /src/async_with_timeout.ts: -------------------------------------------------------------------------------- 1 | class TimeoutError extends Error { 2 | timeout: number 3 | 4 | constructor (message: string, timeout: number) { 5 | // Pass remaining arguments (including vendor specific ones) to parent constructor 6 | super(message) 7 | 8 | // Maintains proper stack trace for where our error was thrown (only available on V8) 9 | if (Error.captureStackTrace) { 10 | Error.captureStackTrace(this, TimeoutError) 11 | } 12 | 13 | this.name = 'TimeoutError' 14 | this.timeout = timeout 15 | } 16 | } 17 | 18 | function async_with_timeout (fn: () => Promise, timeout = 2000): Promise { 19 | return new Promise(async (f, r) => { 20 | const to_id = setTimeout(() => { 21 | r(new TimeoutError('Waited for ' + timeout / 1000 + ' seconds', timeout)) 22 | }, timeout) 23 | 24 | try { 25 | const result = await fn() 26 | f(result) 27 | } catch (err) { 28 | r(err) 29 | } finally { 30 | clearTimeout(to_id) 31 | } 32 | }) 33 | } 34 | 35 | export default async_with_timeout 36 | export { TimeoutError } 37 | -------------------------------------------------------------------------------- /html/chaperone/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Chaperone!

4 | 5 | 34 | -------------------------------------------------------------------------------- /tests/integration/test_setup.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const log = require('@whi/stdlog')(path.basename(__filename), { 3 | level: process.env.LOG_LEVEL || 'fatal' 4 | }) 5 | 6 | const expect = require('chai').expect 7 | const puppeteer = require('puppeteer') 8 | 9 | const http_servers = require('../setup.js') 10 | 11 | describe('Testing setup for tests', function () { 12 | it('should start test servers, connect with puppeteer, then close', async function () { 13 | const setup = http_servers() 14 | log.debug('Setup config: %s', setup.ports) 15 | const browser = await puppeteer.launch() 16 | 17 | try { 18 | const happ_url = `http://localhost:${setup.ports.happ}/index.html` 19 | 20 | log.info('Fetch: %s', happ_url) 21 | const page = await browser.newPage() 22 | 23 | await page.goto(happ_url) 24 | 25 | const parent = page.mainFrame() 26 | log.debug('Main frame: %s', parent.constructor.name) 27 | 28 | const content = await parent.$eval('#main-content', div => div.innerHTML) 29 | log.debug('Content: %s', content) 30 | 31 | expect(content).to.equal('Hello World') 32 | } finally { 33 | await browser.close() 34 | await setup.close() 35 | } 36 | }) 37 | }) 38 | -------------------------------------------------------------------------------- /tests/integration/test_puppeteer.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const log = require('@whi/stdlog')(path.basename(__filename), { 3 | level: process.env.LOG_LEVEL || 'fatal' 4 | }) 5 | 6 | const expect = require('chai').expect 7 | const puppeteer = require('puppeteer') 8 | 9 | const http_servers = require('../setup.js') 10 | 11 | describe('Testing puppeteer with test servers', function () { 12 | it('should start test servers, connect with puppeteer, then close', async function () { 13 | const setup = http_servers() 14 | log.debug('Setup config: %s', setup.ports) 15 | const browser = await puppeteer.launch() 16 | 17 | try { 18 | const happ_url = `http://localhost:${setup.ports.happ}/index.html` 19 | 20 | log.info('Fetch: %s', happ_url) 21 | const page = await browser.newPage() 22 | 23 | await page.goto(happ_url) 24 | 25 | const parent = page.mainFrame() 26 | log.debug('Main frame: %s', parent.constructor.name) 27 | 28 | const content = await parent.$eval('#main-content', div => div.innerHTML) 29 | log.debug('Content: %s', content) 30 | 31 | expect(content).to.equal('Hello World') 32 | } finally { 33 | await browser.close() 34 | await setup.close() 35 | } 36 | }) 37 | }) 38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@holo-host/comb", 3 | "version": "0.3.2", 4 | "description": "Cross-origin message bus (COMB) facilitates communication between a hApp UI and Holo Chaperone", 5 | "main": "lib/index.js", 6 | "module": "lib.es/index.js", 7 | "types": "lib/index.d.ts", 8 | "scripts": { 9 | "build": "npm run compile && npm run bundle", 10 | "compile": "tsc -b", 11 | "bundle": "npx webpack --mode production --output-filename holo_hosting_comb.js ./lib/index.js", 12 | "test": "yarn build && mocha --recursive --timeout 5000 ./tests/" 13 | }, 14 | "author": "Holo Ltd.", 15 | "contributors": [ 16 | "Matthew Brisebois " 17 | ], 18 | "license": "ISC", 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/Holo-Host/chaperone/" 22 | }, 23 | "files": [ 24 | "README.md", 25 | "lib", 26 | "lib.es" 27 | ], 28 | "dependencies": { 29 | "@msgpack/msgpack": "^2.7.1", 30 | "postmate": "^1.5.1", 31 | "webpack": "^5.89.0", 32 | "webpack-cli": "4.10.0" 33 | }, 34 | "devDependencies": { 35 | "@types/node": "^12.11.1", 36 | "@types/postmate": "^1.5.2", 37 | "@whi/stdlog": "^0.3.0", 38 | "braintree-jsdoc-template": "^3.3.0", 39 | "chai": "^4.2.0", 40 | "chokidar-cli": "^2.0.0", 41 | "jsdoc": "^3.6.3", 42 | "mocha": "^6.2.1", 43 | "node-fetch": "^2.6.0", 44 | "puppeteer": "^1.20.0", 45 | "typescript": "^3.6.4" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const log = require('@whi/stdlog')(path.basename(__filename), { 3 | level: process.env.LOG_LEVEL || 'fatal' 4 | }) 5 | 6 | // Start simple HTTP servers 7 | 8 | const http = require('http') 9 | const url = require('url') 10 | const fs = require('fs') 11 | 12 | const HAPP_PORT = 4531 13 | const CHAP_PORT = 4532 14 | 15 | function create_server (base_dir, port) { 16 | const server = http.createServer(function (request, response) { 17 | try { 18 | const req_url = url.parse(request.url) 19 | 20 | const fs_path = base_dir + path.normalize(req_url.pathname) 21 | 22 | log.normal('Looking for file @ %s', fs_path) 23 | var file_stream = fs.createReadStream(fs_path) 24 | file_stream.pipe(response) 25 | file_stream.on('open', function () { 26 | response.writeHead(200) 27 | }) 28 | file_stream.on('error', function (e) { 29 | // assume the file doesn't exist 30 | response.writeHead(404) 31 | response.end() 32 | }) 33 | } catch (e) { 34 | log.fatal('Failed to process request: %s', e) 35 | console.error(e) 36 | 37 | response.writeHead(500) 38 | response.end() 39 | } 40 | }) 41 | 42 | server.listen(port) 43 | 44 | return server 45 | } 46 | 47 | function async_wrapper (fn) { 48 | return new Promise(function (fulfill, reject) { 49 | try { 50 | fn(fulfill, reject) 51 | } catch (e) { 52 | reject(e) 53 | } 54 | }) 55 | } 56 | 57 | function main () { 58 | const happ_server = create_server('./html/happ', HAPP_PORT) 59 | const chap_server = create_server('./html/chaperone', CHAP_PORT) 60 | 61 | return { 62 | servers: { 63 | happ: happ_server, 64 | chaperone: chap_server 65 | }, 66 | ports: { 67 | happ: HAPP_PORT, 68 | chaperone: CHAP_PORT 69 | }, 70 | close: async function () { 71 | return await Promise.all([ 72 | async_wrapper(f => happ_server.close(f)), 73 | async_wrapper(f => chap_server.close(f)) 74 | ]) 75 | } 76 | } 77 | } 78 | 79 | module.exports = main 80 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | NAME = holo_hosting_comb 3 | 4 | build/index.js: src/index.ts 5 | yarn run compile 6 | 7 | dist/$(NAME).js: build/index.js webpack.config.js 8 | yarn run bundle 9 | 10 | docs/index.html: build/index.js 11 | npx jsdoc --verbose -c ./docs/.jsdoc.json --private --destination ./docs build/index.js 12 | 13 | yarn.lock: package.json 14 | yarn install 15 | touch $@ 16 | 17 | node_modules: yarn.lock 18 | 19 | 20 | .PHONY: src build dist docs docs-watch dist-watch preview-package publish-docs publish-package 21 | 22 | build: node_modules build/index.js 23 | dist: node_modules dist/$(NAME).js 24 | docs: node_modules docs/index.html 25 | 26 | 27 | MOCHA_OPTS = --timeout 5000 28 | 29 | test: dist 30 | npx mocha $(MOCHA_OPTS) --recursive ./tests 31 | test-debug: dist 32 | LOG_LEVEL=silly npx mocha $(MOCHA_OPTS) --recursive ./tests 33 | test-unit: dist 34 | LOG_LEVEL=silly npx mocha $(MOCHA_OPTS) ./tests/unit/ 35 | test-integration: dist 36 | LOG_LEVEL=silly npx mocha $(MOCHA_OPTS) ./tests/integration/ 37 | 38 | docs-watch: 39 | npx chokidar -d 3000 'src/**/*.ts' -c "make --no-print-directory docs" 2> /dev/null 40 | dist-watch: 41 | npx chokidar -d 3000 'src/**/*.ts' -c "make --no-print-directory dist" 2> /dev/null 42 | 43 | clean-docs: 44 | git clean -df ./docs 45 | 46 | static-servers: 47 | cd ./html/happ/; python3 -m http.server 8001 & 48 | cd ./html/chaperone/; python3 -m http.server 8002 49 | 50 | 51 | preview-package: dist 52 | npm pack --dry-run . 53 | 54 | publish-package: test 55 | npm publish --access public . 56 | 57 | 58 | CURRENT_BRANCH = $(shell git branch | grep \* | cut -d ' ' -f2) 59 | publish-docs: 60 | git branch -D gh-pages || true 61 | git checkout -b gh-pages 62 | echo "\nBuilding docs" 63 | make docs 64 | ln -s docs v$$( cat package.json | jq -r .version ) 65 | @echo "\nAdding docs..." 66 | git add -f docs 67 | git add v$$( cat package.json | jq -r .version ) 68 | @echo "\nCreating commit..." 69 | git commit -m "JSdocs v$$( cat package.json | jq -r .version )" 70 | @echo "\nForce push to gh-pages" 71 | git push -f origin gh-pages 72 | git checkout $(CURRENT_BRANCH) 73 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://img.shields.io/npm/v/@holo-host/comb/latest?style=flat-square) 2 | 3 | # Cross-origin Message Bus (COMB) 4 | 5 | COMB is a library that facilitates the calls between the parent window (hApp UI) and the iframe 6 | (Chaperone). 7 | 8 | Used between [Holo Chaperone](https://github.com/Holo-Host/chaperone/tree/develop) and `Holo Hosting 9 | Web SDK`. 10 | 11 | ## Architecture 12 | 13 | COMB is designed to make an iFrame feel like a script. With this in mind, the expectation is that 14 | the parent window wants to operate the iFrame, not vice-versa. The purpose of using an iFrame 15 | instead of a script will usually be for isolation and/or security. The iFrame does not trust the 16 | parent window, but requires input from the parent window to know what to do. 17 | 18 | **Features** 19 | - Parent/Child communication line 20 | - Promise wrappers 21 | - Round trip method request 22 | - Restrict domains 23 | 24 | ### API 25 | 26 | [API Reference](https://holo-host.github.io/chaperone/comb/docs/module-COMB.html) 27 | 28 | ### Example Usage 29 | 30 | Both the parent window and iFrame must load COMB. 31 | 32 | 33 | ```html 34 | 35 | 48 | ``` 49 | 50 | ```html 51 | 52 | 65 | ``` 66 | 67 | 68 | ## Contributors 69 | 70 | We use `Postmate` to set up a message tunnel between the parent and child frames. 71 | 72 | `Postmate` provided a `call` child method in its API, but it did not return the result. COMB's 73 | `Parent` and `Child` classes wrap the communication tunnel in a more useful `request/response` type 74 | API. 75 | 76 | **Development environment as of 2019/11** 77 | - Node.js `12` 78 | 79 | **Project employs** 80 | - Typescript 81 | - Webpack 82 | - JSDoc 83 | 84 | **Setup** 85 | 86 | Nix shell will provide packages listed in [../default.nix](../default.nix) `nativeBuildInputs` 87 | ```bash 88 | nix-shell ../shell.nix 89 | ``` 90 | 91 | Inside the nix shell 92 | ```bash 93 | yarn install 94 | ``` 95 | 96 | ### Compile (Typescript) 97 | 98 | The source is written in Typescript. Run `yarn run compile` or `make build`. 99 | 100 | ### Bundler (Webpack) 101 | 102 | The web distribution is bundled with Webpack. Run `yarn run bundle` or `make dist`. 103 | 104 | > **NOTE:** `yarn run bundle` will not automatically compile 105 | 106 | ### Testing 107 | 108 | ```bash 109 | yarn test 110 | ``` 111 | 112 | #### Unit tests 113 | Unit tests are not written because nearly all the complexity is in the integration tests. 114 | 115 | #### Integration tests 116 | Integration tests use `puppeteer` to simulate a real browser experience. 117 | 118 | **Required setup** 119 | - HTTP Server for parent window (hApp UI) 120 | - HTTP Server for child window (Holo Chaperon) 121 | - Call methods from parent, mock responses from external systems (Resolver, Envoy) 122 | -------------------------------------------------------------------------------- /tests/integration/test_comb.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const log = require('@whi/stdlog')(path.basename(__filename), { 3 | level: process.env.LOG_LEVEL || 'fatal' 4 | }) 5 | 6 | const expect = require('chai').expect 7 | const puppeteer = require('puppeteer') 8 | 9 | const http_servers = require('../setup.js') 10 | 11 | let browser 12 | 13 | async function create_page (url) { 14 | const page = await browser.newPage() 15 | 16 | page.on('console', async msg => { 17 | log.silly('From puppeteer: console.log( %s )', msg.text()) 18 | }) 19 | 20 | log.info('Go to: %s', url) 21 | await page.goto(url, { waitUntil: 'networkidle0' }) 22 | 23 | return page 24 | } 25 | 26 | class PageTestUtils { 27 | constructor (page) { 28 | this.logPageErrors = () => 29 | page.on('pageerror', async error => { 30 | if (error instanceof Error) { 31 | log.silly(error.message) 32 | } else log.silly(error) 33 | }) 34 | 35 | this.describeJsHandleLogs = () => 36 | page.on('console', async msg => { 37 | try { 38 | const args = await Promise.all( 39 | msg.args().map(arg => this.describeJsHandle(arg)) 40 | ) 41 | console.log(...args) 42 | } catch (e) { 43 | console.log( 44 | 'Could not asynchronously forward console logs from Puppeteer:', 45 | e 46 | ) 47 | } 48 | }) 49 | 50 | this.describeJsHandle = async jsHandle => { 51 | try { 52 | return await jsHandle 53 | .executionContext() 54 | .evaluate(arg => (arg instanceof Error ? arg.message : arg), jsHandle) 55 | } catch (e) { 56 | if (e.toString().includes('Target closed')) { 57 | // Page was closed before we could load the message 58 | return '' 59 | } 60 | throw e 61 | } 62 | } 63 | } 64 | } 65 | 66 | describe('Testing COMB', function () { 67 | let setup, happ_host, chap_host, happ_url, chap_url, page, pageTestUtils 68 | 69 | before('Start servers and browser', async () => { 70 | setup = http_servers() 71 | browser = await puppeteer.launch() 72 | 73 | log.debug('Setup config: %s', setup.ports) 74 | 75 | happ_host = `http://localhost:${setup.ports.happ}` 76 | chap_host = `http://localhost:${setup.ports.chaperone}` 77 | 78 | happ_url = `${happ_host}/index.html` 79 | chap_url = `${chap_host}/index.html` 80 | }) 81 | 82 | beforeEach(async () => { 83 | page = await create_page(happ_url) 84 | pageTestUtils = new PageTestUtils(page) 85 | 86 | pageTestUtils.logPageErrors() 87 | pageTestUtils.describeJsHandleLogs() 88 | }) 89 | 90 | afterEach(async () => { 91 | await page.close() 92 | }) 93 | 94 | after('Close servers and browser', async () => { 95 | log.debug('Shutdown cleanly...') 96 | await browser.close() 97 | await setup.close() 98 | }) 99 | 100 | it('should insert Chaperone iframe into hApp window', async function () { 101 | await page.evaluate(async function (frame_url) { 102 | const child = await COMB.connect(frame_url) 103 | }, chap_url) 104 | 105 | const parent = page.mainFrame() 106 | const frames = parent.childFrames() 107 | log.debug('Frames: %s', frames.length) 108 | 109 | expect(frames.length).to.equal(1) 110 | 111 | const chap_frame = frames[0] 112 | 113 | expect(frames[0].url()).to.equal(chap_url) 114 | }) 115 | 116 | it('should call method on child and await response', async function () { 117 | let answer 118 | 119 | answer = await page.evaluate(async function (frame_url) { 120 | window.child = await COMB.connect(frame_url) 121 | const resp = await child.run('test', 'counting', [1, 2, 3], 4) 122 | return resp 123 | }, chap_url) 124 | 125 | expect(answer).to.equal('Hello World: ["counting",[1,2,3],4]') 126 | 127 | answer = await page.evaluate(async function (frame_url) { 128 | window.child = await COMB.connect(frame_url) 129 | return await child.run('test_synchronous') 130 | }, chap_url) 131 | 132 | expect(answer).to.equal('Hello World') 133 | }) 134 | 135 | it('can pass through a Uint8Array', async function () { 136 | const answer = await page.evaluate(async function (frame_url) { 137 | window.child = await COMB.connect(frame_url) 138 | const resp = await child.run( 139 | 'test_return_verbatim', 140 | new Uint8Array([0, 3]) 141 | ) 142 | // Puppeteer can't pass through Uint8Arrays 143 | return { 144 | isBytes: resp instanceof Uint8Array, 145 | stringified: resp.toString() 146 | } 147 | }, chap_url) 148 | expect(answer).to.deep.equal({ isBytes: true, stringified: '0,3' }) 149 | }) 150 | 151 | it('should call method on child and return error', async function () { 152 | let answer 153 | 154 | answer = await page.evaluate(async function (frame_url) { 155 | window.child = await COMB.connect(frame_url) 156 | try { 157 | await child.call('test_error', 'counting', [1, 2, 3], 4) 158 | } catch (err) { 159 | console.log('Caught expected error:', err) 160 | return err.toString() 161 | } 162 | }, chap_url) 163 | 164 | expect(answer).to.equal( 165 | 'HolochainTestError: Method did not succeed\n["counting",[1,2,3],4]' 166 | ) 167 | 168 | answer = await page.evaluate(async function (frame_url) { 169 | window.child = await COMB.connect(frame_url) 170 | try { 171 | return await child.run('test_synchronous_error') 172 | } catch (err) { 173 | console.log('Caught expected error:', err) 174 | return err.toString() 175 | } 176 | }, chap_url) 177 | 178 | expect(answer).to.equal('HolochainTestError: Method did not succeed') 179 | }) 180 | 181 | it('should set key/value on child and await confirmation', async function () { 182 | const answer = await page.evaluate(async function (frame_url) { 183 | const child = await COMB.connect(frame_url) 184 | return await child.set('mode', 'develop') 185 | }, chap_url) 186 | 187 | expect(answer).to.be.null 188 | }) 189 | 190 | it('should call the provided signalCb when sendSignal is called on the parent', async function () { 191 | // have to setup our spy function in the puppeteer evaluation context 192 | await page.evaluate(() => { 193 | window.signalCb = function (signal) { 194 | window.signalCbCalledWith = signal 195 | } 196 | }) 197 | 198 | const expectedSignal = 'Hello COMB' 199 | 200 | const signalCbCalledWith = await page.evaluate( 201 | async function (chap_url, expectedSignal) { 202 | window.child = await COMB.connect(chap_url, 5000, window.signalCb) 203 | await child.run('test_signal', expectedSignal) 204 | return window.signalCbCalledWith 205 | }, 206 | chap_url, 207 | expectedSignal 208 | ) 209 | 210 | expect(signalCbCalledWith).to.equal(expectedSignal) 211 | }) 212 | 213 | it('can emit signal containing Uint8Array', async function () { 214 | // have to setup our spy function in the puppeteer evaluation context 215 | await page.evaluate(() => { 216 | window.signalCb = function (signal) { 217 | window.signalCbCalledWith = signal 218 | } 219 | }) 220 | 221 | const answer = await page.evaluate(async function (chap_url) { 222 | window.child = await COMB.connect(chap_url, document.body, 5000, window.signalCb) 223 | await child.run('test_signal', new Uint8Array([1, 4])) 224 | const signalEmitted = window.signalCbCalledWith 225 | // Puppeteer can't pass through Uint8Arrays 226 | return { 227 | isBytes: signalEmitted instanceof Uint8Array, 228 | stringified: signalEmitted.toString() 229 | } 230 | }, chap_url) 231 | 232 | expect(answer).to.deep.equal({ isBytes: true, stringified: '1,4' }) 233 | }) 234 | 235 | it('should timeout because of wrong frame URL', async function () { 236 | const result = await page.evaluate(async function () { 237 | try { 238 | await COMB.connect('http://localhost:55555', document.body, 500) 239 | } catch (err) { 240 | console.log('Caught expected error:', err) 241 | return err.toString() 242 | } 243 | }) 244 | log.debug('Error result: %s', result) 245 | 246 | expect(result).to.equal('TimeoutError: Failed to load iFrame') 247 | }) 248 | 249 | it('should timeout because COMB is not listening', async function () { 250 | const fail_url = `${chap_host}/comb_not_listening.html` 251 | 252 | const result = await page.evaluate(async function (frame_url) { 253 | try { 254 | await COMB.connect(frame_url, document.body, 500) 255 | } catch (err) { 256 | console.log('Caught expected error:', err) 257 | return err.toString() 258 | } 259 | }, fail_url) 260 | 261 | expect(result).to.equal('TimeoutError: Failed to load iFrame') 262 | }) 263 | 264 | it("should timeout because method didn't respond", async function () { 265 | const fail_url = `${chap_host}/comb_method_no_response.html` 266 | 267 | const result = await page.evaluate(async function (frame_url) { 268 | try { 269 | const child = await COMB.connect(frame_url) 270 | await child.run('timeout') 271 | } catch (err) { 272 | console.log('Caught expected error:', err) 273 | return err.toString() 274 | } 275 | }, fail_url) 276 | 277 | expect(result).to.equal('TimeoutError: Waited for 2 seconds') 278 | }) 279 | 280 | it('should not timeout because of long call', async function () { 281 | const pass_url = `${chap_host}/comb_method_long_wait.html` 282 | 283 | const result = await page.evaluate(async function (frame_url) { 284 | const child = await COMB.connect(frame_url) 285 | return await child.call('long_call') 286 | }, pass_url) 287 | 288 | expect(result).to.equal('Hello World') 289 | }) 290 | 291 | it('should throw error because method does not exist', async function () { 292 | const fail_url = `${chap_host}/comb_method_does_not_exist.html` 293 | 294 | const result = await page.evaluate(async function (frame_url) { 295 | try { 296 | const child = await COMB.connect(frame_url) 297 | await child.run('undefined_method') 298 | } catch (err) { 299 | console.log('Caught expected error:', err) 300 | return err.toString() 301 | } 302 | }, fail_url) 303 | 304 | expect(result).to.equal("Method 'undefined_method' does not exist") 305 | }) 306 | 307 | it('should throw error because method is not a function', async function () { 308 | const fail_url = `${chap_host}/comb_method_is_not_a_function.html` 309 | 310 | const result = await page.evaluate(async function (frame_url) { 311 | try { 312 | const child = await COMB.connect(frame_url) 313 | await child.run('not_a_function') 314 | } catch (err) { 315 | console.log('Caught expected error:', err) 316 | return err.toString() 317 | } 318 | }, fail_url) 319 | 320 | expect(result).to.equal( 321 | "Method 'not_a_function' is not a function. Found type 'object'" 322 | ) 323 | }) 324 | 325 | it('should not emit any console.log messages', async function () { 326 | const no_debug_happ_url = `${happ_host}/comb_no_debug.html` 327 | const no_debug_chap_url = `${chap_host}/comb_no_debug.html` 328 | 329 | const newPage = await browser.newPage() 330 | 331 | let no_logs = true 332 | newPage.on('console', async msg => { 333 | log.silly('From puppeteer: console.log( %s )', msg.text()) 334 | no_logs = false 335 | }) 336 | 337 | log.info('Go to: %s', no_debug_happ_url) 338 | await newPage.goto(no_debug_happ_url, { waitUntil: 'networkidle0' }) 339 | 340 | try { 341 | newPage.on('console', async msg => { 342 | log.silly('From puppeteer: console.log( %s )', msg.text()) 343 | }) 344 | 345 | const answer = await newPage.evaluate(async function (frame_url) { 346 | const child = await COMB.connect(frame_url) 347 | return await child.run('test') 348 | }, no_debug_chap_url) 349 | 350 | expect(answer).to.equal('Hello World') 351 | expect(no_logs).to.be.true 352 | } finally { 353 | await newPage.close() 354 | } 355 | }) 356 | }) 357 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import Postmate from 'postmate' 2 | import { encode, decode } from '@msgpack/msgpack' 3 | 4 | import async_with_timeout from './async_with_timeout' 5 | import { TimeoutError } from './async_with_timeout' 6 | 7 | /** 8 | * @module COMB 9 | * 10 | * @description 11 | * Parent window 12 | * ```html 13 | * 14 | * 23 | * ``` 24 | * 25 | * Child frame 26 | * ```html 27 | * 28 | * 41 | * ``` 42 | * 43 | */ 44 | 45 | const COMB = { 46 | /** 47 | * Turn on debugging and set the logging level. If 'debug' is not called, the default log level 48 | * is 'error'. 49 | * 50 | * @function debug 51 | * 52 | * @param {string} level - Log level (default: "debug", options: "error", "warn", "info", "debug", "trace") 53 | * 54 | * @example 55 | * COMB.debug( "info" ); 56 | */ 57 | debug (level = 'debug') { 58 | Postmate.debug = true 59 | }, 60 | 61 | /** 62 | * Insert an iframe (pointing at the given URL) into the `document.body` and wait for COMB to 63 | * connect. 64 | * 65 | * @async 66 | * @function connect 67 | * 68 | * @param {string} url - URL that is used as 'src' for the iframe 69 | * @param {HTMLElement} container - Parent HTMLElement to insert the iframe into 70 | 71 | * @return {ChildAPI} Connection to child frame 72 | * 73 | * @example 74 | * const child = await COMB.connect( "http://localhost:8002" ); 75 | */ 76 | async connect ( 77 | url: string, 78 | container: HTMLElement, 79 | timeout: number, 80 | signalCb: (signal: unknown) => void 81 | ): Promise { 82 | const child = new ChildAPI(url, container, timeout, signalCb) 83 | await child.connect() 84 | return child 85 | }, 86 | 87 | /** 88 | * Listen to 'postMessage' requests and wait for a parent window to connect. 89 | * 90 | * @async 91 | * @function listen 92 | * 93 | * @param {object} methods - Functions that are available for the parent to call. 94 | * 95 | * @return {ParentAPI} Connection to parent window 96 | * 97 | * @example 98 | * const parent = await COMB.listen({ 99 | * "hello": async function () { 100 | * return "Hello world"; 101 | * } 102 | * }); 103 | */ 104 | async listen (methods) { 105 | const parent = new ParentAPI(methods) 106 | await parent.connect() 107 | return parent 108 | } 109 | } 110 | 111 | type Method = 'prop' | 'exec' 112 | 113 | class ChildAPI { 114 | static frame_count: number = 0 115 | 116 | url: string 117 | msg_count: number 118 | responses: Record< 119 | number, 120 | [(resolved: Response) => void, (rejected: any) => void] 121 | > 122 | msg_bus: Postmate.ParentAPI 123 | handshake: Promise 124 | class_name: string 125 | loaded: boolean 126 | signalCb: (signal: unknown) => void 127 | 128 | /** 129 | * Initialize a child frame using the given URL. 130 | * 131 | * @class ChildAPI 132 | * 133 | * @param {string} url - URL that is used as 'src' for the iframe 134 | * 135 | * @prop {string} url - iFrame URL 136 | * @prop {number} msg_count - Incrementing message ID 137 | * @prop {object} responses - Dictionary of request Promises waiting for their responses 138 | * @prop {object} msg_bus - Postmate instance 139 | * @prop {promise} handshake - Promise that is waiting for connection confirmation 140 | * @prop {string} class_name - iFrame's unique class name 141 | * @prop {boolean} loaded - Indicates if iFrame successfully loaded 142 | * @prop {any} signalCb - A callback that's run when we receive a signal 143 | * 144 | * @example 145 | * const child = new ChildAPI( url ); 146 | * await child.connect(); 147 | * 148 | * await child.set("mode", mode ); 149 | * let response = await child.run("signIn"); 150 | */ 151 | constructor (url, container: HTMLElement = document.body, timeout = 5_000, signalCb) { 152 | this.url = url 153 | this.msg_count = 0 154 | this.responses = {} 155 | this.loaded = false 156 | 157 | this.signalCb = signalCb 158 | 159 | this.class_name = 'comb-frame-' + ChildAPI.frame_count++ 160 | this.handshake = async_with_timeout(async () => { 161 | // log.info("Init Postmate handshake"); 162 | const handshake = new Postmate({ 163 | container, 164 | url: this.url, 165 | classListArray: [this.class_name] 166 | }) 167 | 168 | const iframe = document.querySelector('iframe.' + this.class_name) 169 | // log.debug("Listening for iFrame load event", iframe ); 170 | 171 | iframe['contentWindow'].addEventListener('domcontentloaded', () => { 172 | // log.debug("iFrame content has loaded"); 173 | this.loaded = true 174 | }) 175 | 176 | return handshake 177 | }, timeout) 178 | } 179 | 180 | /** 181 | * Wait for handshake to complete and then attach response listener. 182 | * 183 | * @async 184 | * 185 | * @return {this} 186 | * 187 | * @example 188 | * const child = new ChildAPI( url ); 189 | * await child.connect(); 190 | */ 191 | async connect (): Promise { 192 | let child: Postmate.ParentAPI 193 | 194 | try { 195 | child = await this.handshake 196 | } catch (err) { 197 | if (err.name === 'TimeoutError') { 198 | if (this.loaded) { 199 | // log.error("iFrame loaded but could not communicate with COMB"); 200 | throw new TimeoutError( 201 | 'Failed to complete COMB handshake', 202 | err.timeout 203 | ) 204 | } else { 205 | // log.error("iFrame did not trigger load event"); 206 | throw new TimeoutError('Failed to load iFrame', err.timeout) 207 | } 208 | } else throw err 209 | } 210 | 211 | // log.info("Finished handshake"); 212 | 213 | child.on('response', data => { 214 | let [k, v] = data 215 | // log.info("Received response for msg_id:", k ); 216 | 217 | const [f, r] = this.responses[k] 218 | 219 | if (v instanceof Error) r(v) 220 | else f(v) 221 | 222 | delete this.responses[k] 223 | }) 224 | 225 | if (this.signalCb) { 226 | child.on('signal', signalBytes => this.signalCb(decode(signalBytes))) 227 | } 228 | 229 | this.msg_bus = child 230 | 231 | return this 232 | } 233 | 234 | /** 235 | * Internal method that wraps requests in a timeout. 236 | * 237 | * @async 238 | * @private 239 | * 240 | * @param {string} method - Internally consistent Postmate method 241 | * @param {string} name - Function name or property name 242 | * @param {*} data - Variable input that is handled by child API 243 | * 244 | * @return {*} Response from child 245 | */ 246 | private async request ( 247 | method: Method, 248 | name: string, 249 | data: unknown, 250 | timeout = 2000 251 | ): Promise { 252 | let msg_id = this.msg_count++ 253 | 254 | this.msg_bus.call(method, [msg_id, name, encode(data)]) 255 | // log.info("Sent request with msg_id:", msg_id ); 256 | 257 | const resp = await async_with_timeout(async () => { 258 | const request: Promise = new Promise((f, r) => { 259 | this.responses[msg_id] = [f, r] 260 | }) 261 | 262 | return await request 263 | }, timeout) 264 | if (resp.type === 'error') { 265 | throw resp.data 266 | } else { 267 | return decode(resp.data) 268 | } 269 | } 270 | 271 | /** 272 | * Set a property on the child instance and wait for the confirmation. Properties set that way 273 | * can be accessed as properties of `this` in the functions passed via listen() to the parentAPI. 274 | * 275 | * Essentially, it is a shortcut to remember some state instead of having to write a method to 276 | * remember some state. Example `child.set("development_mode", true)` vs 277 | * `child.call("setDevelopmentMode", true)`. The latter requires you to define 278 | * `setDevelopmentMode` on the child model where the former does not require any 279 | * pre-configuration. 280 | * 281 | * @async 282 | * 283 | * @param {string} key - Property name 284 | * @param {*} value - Property value 285 | * 286 | * @return {boolean} Success status 287 | * 288 | * @example 289 | * let success = await child.set( "key", "value" ); 290 | */ 291 | async set (key, value) { 292 | return await this.request('prop', key, value) 293 | } 294 | 295 | /** 296 | * Call an exposed function on the child instance and wait for the response. 297 | * 298 | * @async 299 | * 300 | * @param {string} method - Name of exposed function to call 301 | * @param {...*} args - Arguments that are passed to function 302 | * 303 | * @return {*} 304 | * 305 | * @example 306 | * let response = await child.run( "some_method", "argument 1", 2, 3 ); 307 | */ 308 | async run (method: string, ...args: unknown[]): Promise { 309 | return await this.request('exec', method, args) 310 | } 311 | 312 | async call (method, ...args) { 313 | return await this.request('exec', method, args, 84000000) 314 | } 315 | } 316 | 317 | type Response = 318 | | { 319 | type: 'ok' 320 | data: Uint8Array 321 | } 322 | | { 323 | type: 'error' 324 | data: string 325 | } 326 | 327 | type Signal = Uint8Array 328 | 329 | interface PostmateParentAPI { 330 | emit(type: 'response', resp: [number, Response]): Promise 331 | emit(type: 'signal', signal: Signal): Promise 332 | } 333 | 334 | class ParentAPI { 335 | listener: any 336 | msg_bus: PostmateParentAPI 337 | methods: Record Promise> 338 | properties: object 339 | 340 | /** 341 | * Initialize a listening instance and set available methods. 342 | * 343 | * @class ParentAPI 344 | * 345 | * @param {object} methods - Functions that are available for the parent to call. 346 | * @param {object} properties - Properties to memorize in the instance for later use, optional 347 | * 348 | * @prop {promise} listener - Promise that is waiting for parent to connect 349 | * @prop {object} msg_bus - Postmate instance 350 | * @prop {object} methods - Method storage 351 | * @prop {object} properties - Set properties storage 352 | * 353 | * @example 354 | * const parent = new ParentAPI({ 355 | * "hello": async function () { 356 | * return "Hello world"; 357 | * } 358 | * }); 359 | * await parent.connect(); 360 | */ 361 | constructor (methods, properties = {}) { 362 | this.methods = methods 363 | this.properties = properties 364 | 365 | this.listener = new Postmate.Model({ 366 | exec: async (data: [number, string, Uint8Array]) => { 367 | const [msg_id, method, arg_bytes] = data 368 | 369 | const fn = this.methods[method] 370 | 371 | if (fn === undefined) { 372 | // log.error("Method does not exist", method ); 373 | return this.msg_bus.emit('response', [ 374 | msg_id, 375 | { type: 'error', data: "Method '" + method + "' does not exist" } 376 | ]) 377 | } 378 | if (typeof fn !== 'function') { 379 | // log.error("Method is not a function: type", typeof fn ); 380 | return this.msg_bus.emit('response', [ 381 | msg_id, 382 | { 383 | type: 'error', 384 | data: 385 | "Method '" + 386 | method + 387 | "' is not a function. Found type '" + 388 | typeof fn + 389 | "'" 390 | } 391 | ]) 392 | } 393 | 394 | const args: unknown[] = decode(arg_bytes) as unknown[] 395 | 396 | let resp: unknown | null = null 397 | let error: unknown | null = null 398 | try { 399 | resp = await fn.apply(this.properties, args) 400 | } catch (e) { 401 | error = e 402 | } 403 | if (error !== null) { 404 | this.msg_bus.emit('response', [ 405 | msg_id, 406 | { type: 'error', data: String(error) } 407 | ]) 408 | } else { 409 | this.msg_bus.emit('response', [ 410 | msg_id, 411 | { type: 'ok', data: encode(resp) } 412 | ]) 413 | } 414 | }, 415 | prop: async data => { 416 | const [msg_id, key, value] = data 417 | 418 | this.properties[key] = value 419 | 420 | this.msg_bus.emit('response', [ 421 | msg_id, 422 | { type: 'ok', data: encode(undefined) } 423 | ]) 424 | } 425 | }) 426 | } 427 | 428 | /** 429 | * Wait for parent to connect. 430 | * 431 | * @async 432 | * 433 | * @return {this} 434 | * 435 | * @example 436 | * const parent = new ParentAPI({ 437 | * "hello": async function () { 438 | * return "Hello world"; 439 | * } 440 | * }); 441 | * await parent.connect(); 442 | */ 443 | async connect () { 444 | this.msg_bus = await this.listener 445 | 446 | return this 447 | } 448 | 449 | /** 450 | * Send holochain conductor signal to parent. 451 | * 452 | * @async 453 | * 454 | * @param {object} signal - The signal 455 | * 456 | * @example 457 | * const parent = new ParentAPI({ 458 | * "hello": async function () { 459 | * return "Hello world"; 460 | * } 461 | * }); 462 | * await parent.sendSignal(signal); 463 | */ 464 | async sendSignal (signal: unknown) { 465 | this.msg_bus.emit('signal', encode(signal)) 466 | } 467 | } 468 | 469 | export { COMB } 470 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/parser@^7.9.4": 6 | version "7.18.5" 7 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz" 8 | integrity sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw== 9 | 10 | "@colors/colors@1.5.0": 11 | version "1.5.0" 12 | resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" 13 | integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== 14 | 15 | "@dabh/diagnostics@^2.0.2": 16 | version "2.0.3" 17 | resolved "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz" 18 | integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA== 19 | dependencies: 20 | colorspace "1.1.x" 21 | enabled "2.0.x" 22 | kuler "^2.0.0" 23 | 24 | "@discoveryjs/json-ext@^0.5.0": 25 | version "0.5.7" 26 | resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" 27 | integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== 28 | 29 | "@jridgewell/gen-mapping@^0.3.0": 30 | version "0.3.3" 31 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 32 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 33 | dependencies: 34 | "@jridgewell/set-array" "^1.0.1" 35 | "@jridgewell/sourcemap-codec" "^1.4.10" 36 | "@jridgewell/trace-mapping" "^0.3.9" 37 | 38 | "@jridgewell/resolve-uri@^3.1.0": 39 | version "3.1.1" 40 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 41 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 42 | 43 | "@jridgewell/set-array@^1.0.1": 44 | version "1.1.2" 45 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 46 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 47 | 48 | "@jridgewell/source-map@^0.3.3": 49 | version "0.3.5" 50 | resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" 51 | integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== 52 | dependencies: 53 | "@jridgewell/gen-mapping" "^0.3.0" 54 | "@jridgewell/trace-mapping" "^0.3.9" 55 | 56 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 57 | version "1.4.15" 58 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 59 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 60 | 61 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": 62 | version "0.3.20" 63 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" 64 | integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== 65 | dependencies: 66 | "@jridgewell/resolve-uri" "^3.1.0" 67 | "@jridgewell/sourcemap-codec" "^1.4.14" 68 | 69 | "@msgpack/msgpack@^2.7.1": 70 | version "2.7.2" 71 | resolved "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-2.7.2.tgz" 72 | integrity sha512-rYEi46+gIzufyYUAoHDnRzkWGxajpD9vVXFQ3g1vbjrBm6P7MBmm+s/fqPa46sxa+8FOUdEuRQKaugo5a4JWpw== 73 | 74 | "@types/eslint-scope@^3.7.3": 75 | version "3.7.6" 76 | resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.6.tgz#585578b368ed170e67de8aae7b93f54a1b2fdc26" 77 | integrity sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ== 78 | dependencies: 79 | "@types/eslint" "*" 80 | "@types/estree" "*" 81 | 82 | "@types/eslint@*": 83 | version "8.44.6" 84 | resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.6.tgz#60e564551966dd255f4c01c459f0b4fb87068603" 85 | integrity sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw== 86 | dependencies: 87 | "@types/estree" "*" 88 | "@types/json-schema" "*" 89 | 90 | "@types/estree@*", "@types/estree@^1.0.0": 91 | version "1.0.4" 92 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.4.tgz#d9748f5742171b26218516cf1828b8eafaf8a9fa" 93 | integrity sha512-2JwWnHK9H+wUZNorf2Zr6ves96WHoWDJIftkcxPKsS7Djta6Zu519LarhRNljPXkpsZR2ZMwNCPeW7omW07BJw== 94 | 95 | "@types/json-schema@*", "@types/json-schema@^7.0.8": 96 | version "7.0.14" 97 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.14.tgz#74a97a5573980802f32c8e47b663530ab3b6b7d1" 98 | integrity sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw== 99 | 100 | "@types/linkify-it@*": 101 | version "3.0.2" 102 | resolved "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz" 103 | integrity sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA== 104 | 105 | "@types/markdown-it@^12.2.3": 106 | version "12.2.3" 107 | resolved "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz" 108 | integrity sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ== 109 | dependencies: 110 | "@types/linkify-it" "*" 111 | "@types/mdurl" "*" 112 | 113 | "@types/mdurl@*": 114 | version "1.0.2" 115 | resolved "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz" 116 | integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== 117 | 118 | "@types/node@*": 119 | version "20.8.10" 120 | resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.10.tgz#a5448b895c753ae929c26ce85cab557c6d4a365e" 121 | integrity sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w== 122 | dependencies: 123 | undici-types "~5.26.4" 124 | 125 | "@types/node@^12.11.1": 126 | version "12.20.55" 127 | resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz" 128 | integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== 129 | 130 | "@types/postmate@^1.5.2": 131 | version "1.5.2" 132 | resolved "https://registry.npmjs.org/@types/postmate/-/postmate-1.5.2.tgz" 133 | integrity sha512-BpNgyT6GBX1o6MES5SDEnfFhaeLyHWb8JDxF2ph3kZPqaGDPGZ3fZ8DDXV47Dpq9Sx7D9fC8EheqPuUqRWTI/A== 134 | 135 | "@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": 136 | version "1.11.6" 137 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" 138 | integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== 139 | dependencies: 140 | "@webassemblyjs/helper-numbers" "1.11.6" 141 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" 142 | 143 | "@webassemblyjs/floating-point-hex-parser@1.11.6": 144 | version "1.11.6" 145 | resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" 146 | integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== 147 | 148 | "@webassemblyjs/helper-api-error@1.11.6": 149 | version "1.11.6" 150 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" 151 | integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== 152 | 153 | "@webassemblyjs/helper-buffer@1.11.6": 154 | version "1.11.6" 155 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" 156 | integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== 157 | 158 | "@webassemblyjs/helper-numbers@1.11.6": 159 | version "1.11.6" 160 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" 161 | integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== 162 | dependencies: 163 | "@webassemblyjs/floating-point-hex-parser" "1.11.6" 164 | "@webassemblyjs/helper-api-error" "1.11.6" 165 | "@xtuc/long" "4.2.2" 166 | 167 | "@webassemblyjs/helper-wasm-bytecode@1.11.6": 168 | version "1.11.6" 169 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" 170 | integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== 171 | 172 | "@webassemblyjs/helper-wasm-section@1.11.6": 173 | version "1.11.6" 174 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" 175 | integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== 176 | dependencies: 177 | "@webassemblyjs/ast" "1.11.6" 178 | "@webassemblyjs/helper-buffer" "1.11.6" 179 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" 180 | "@webassemblyjs/wasm-gen" "1.11.6" 181 | 182 | "@webassemblyjs/ieee754@1.11.6": 183 | version "1.11.6" 184 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" 185 | integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== 186 | dependencies: 187 | "@xtuc/ieee754" "^1.2.0" 188 | 189 | "@webassemblyjs/leb128@1.11.6": 190 | version "1.11.6" 191 | resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" 192 | integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== 193 | dependencies: 194 | "@xtuc/long" "4.2.2" 195 | 196 | "@webassemblyjs/utf8@1.11.6": 197 | version "1.11.6" 198 | resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" 199 | integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== 200 | 201 | "@webassemblyjs/wasm-edit@^1.11.5": 202 | version "1.11.6" 203 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" 204 | integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== 205 | dependencies: 206 | "@webassemblyjs/ast" "1.11.6" 207 | "@webassemblyjs/helper-buffer" "1.11.6" 208 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" 209 | "@webassemblyjs/helper-wasm-section" "1.11.6" 210 | "@webassemblyjs/wasm-gen" "1.11.6" 211 | "@webassemblyjs/wasm-opt" "1.11.6" 212 | "@webassemblyjs/wasm-parser" "1.11.6" 213 | "@webassemblyjs/wast-printer" "1.11.6" 214 | 215 | "@webassemblyjs/wasm-gen@1.11.6": 216 | version "1.11.6" 217 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" 218 | integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== 219 | dependencies: 220 | "@webassemblyjs/ast" "1.11.6" 221 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" 222 | "@webassemblyjs/ieee754" "1.11.6" 223 | "@webassemblyjs/leb128" "1.11.6" 224 | "@webassemblyjs/utf8" "1.11.6" 225 | 226 | "@webassemblyjs/wasm-opt@1.11.6": 227 | version "1.11.6" 228 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" 229 | integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== 230 | dependencies: 231 | "@webassemblyjs/ast" "1.11.6" 232 | "@webassemblyjs/helper-buffer" "1.11.6" 233 | "@webassemblyjs/wasm-gen" "1.11.6" 234 | "@webassemblyjs/wasm-parser" "1.11.6" 235 | 236 | "@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": 237 | version "1.11.6" 238 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" 239 | integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== 240 | dependencies: 241 | "@webassemblyjs/ast" "1.11.6" 242 | "@webassemblyjs/helper-api-error" "1.11.6" 243 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" 244 | "@webassemblyjs/ieee754" "1.11.6" 245 | "@webassemblyjs/leb128" "1.11.6" 246 | "@webassemblyjs/utf8" "1.11.6" 247 | 248 | "@webassemblyjs/wast-printer@1.11.6": 249 | version "1.11.6" 250 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" 251 | integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== 252 | dependencies: 253 | "@webassemblyjs/ast" "1.11.6" 254 | "@xtuc/long" "4.2.2" 255 | 256 | "@webpack-cli/configtest@^1.2.0": 257 | version "1.2.0" 258 | resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.2.0.tgz#7b20ce1c12533912c3b217ea68262365fa29a6f5" 259 | integrity sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg== 260 | 261 | "@webpack-cli/info@^1.5.0": 262 | version "1.5.0" 263 | resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.5.0.tgz#6c78c13c5874852d6e2dd17f08a41f3fe4c261b1" 264 | integrity sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ== 265 | dependencies: 266 | envinfo "^7.7.3" 267 | 268 | "@webpack-cli/serve@^1.7.0": 269 | version "1.7.0" 270 | resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.7.0.tgz#e1993689ac42d2b16e9194376cfb6753f6254db1" 271 | integrity sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q== 272 | 273 | "@whi/stdlog@^0.3.0": 274 | version "0.3.4" 275 | resolved "https://registry.npmjs.org/@whi/stdlog/-/stdlog-0.3.4.tgz" 276 | integrity sha512-yjA7N4n2PHtAhDNSe52tmqIGdkkFVYH1/OgqEkV6e2lMkOqdIWx9wxpRbupX6JPzaCjg83QppoO98LZF9s0BmQ== 277 | dependencies: 278 | sprintf-js "^1.1.2" 279 | winston "^3.3.3" 280 | 281 | "@xtuc/ieee754@^1.2.0": 282 | version "1.2.0" 283 | resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" 284 | integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== 285 | 286 | "@xtuc/long@4.2.2": 287 | version "4.2.2" 288 | resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" 289 | integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== 290 | 291 | acorn-import-assertions@^1.9.0: 292 | version "1.9.0" 293 | resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" 294 | integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== 295 | 296 | acorn@^8.7.1, acorn@^8.8.2: 297 | version "8.11.2" 298 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" 299 | integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== 300 | 301 | agent-base@^4.3.0: 302 | version "4.3.0" 303 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz" 304 | integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== 305 | dependencies: 306 | es6-promisify "^5.0.0" 307 | 308 | ajv-keywords@^3.5.2: 309 | version "3.5.2" 310 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" 311 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== 312 | 313 | ajv@^6.12.5: 314 | version "6.12.6" 315 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 316 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 317 | dependencies: 318 | fast-deep-equal "^3.1.1" 319 | fast-json-stable-stringify "^2.0.0" 320 | json-schema-traverse "^0.4.1" 321 | uri-js "^4.2.2" 322 | 323 | ansi-colors@3.2.3: 324 | version "3.2.3" 325 | resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz" 326 | integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== 327 | 328 | ansi-regex@^3.0.0: 329 | version "3.0.1" 330 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz" 331 | integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== 332 | 333 | ansi-regex@^4.1.0: 334 | version "4.1.1" 335 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz" 336 | integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== 337 | 338 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 339 | version "3.2.1" 340 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 341 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 342 | dependencies: 343 | color-convert "^1.9.0" 344 | 345 | anymatch@~3.1.2: 346 | version "3.1.2" 347 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" 348 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 349 | dependencies: 350 | normalize-path "^3.0.0" 351 | picomatch "^2.0.4" 352 | 353 | argparse@^1.0.7: 354 | version "1.0.10" 355 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" 356 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 357 | dependencies: 358 | sprintf-js "~1.0.2" 359 | 360 | argparse@^2.0.1: 361 | version "2.0.1" 362 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 363 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 364 | 365 | array.prototype.reduce@^1.0.4: 366 | version "1.0.4" 367 | resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz" 368 | integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw== 369 | dependencies: 370 | call-bind "^1.0.2" 371 | define-properties "^1.1.3" 372 | es-abstract "^1.19.2" 373 | es-array-method-boxes-properly "^1.0.0" 374 | is-string "^1.0.7" 375 | 376 | assertion-error@^1.1.0: 377 | version "1.1.0" 378 | resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz" 379 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== 380 | 381 | async-limiter@~1.0.0: 382 | version "1.0.1" 383 | resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" 384 | integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== 385 | 386 | async@^3.2.3: 387 | version "3.2.4" 388 | resolved "https://registry.npmjs.org/async/-/async-3.2.4.tgz" 389 | integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== 390 | 391 | balanced-match@^1.0.0: 392 | version "1.0.2" 393 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 394 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 395 | 396 | binary-extensions@^2.0.0: 397 | version "2.2.0" 398 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" 399 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 400 | 401 | bluebird@^3.7.2: 402 | version "3.7.2" 403 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz" 404 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 405 | 406 | brace-expansion@^1.1.7: 407 | version "1.1.11" 408 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 409 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 410 | dependencies: 411 | balanced-match "^1.0.0" 412 | concat-map "0.0.1" 413 | 414 | braces@~3.0.2: 415 | version "3.0.2" 416 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 417 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 418 | dependencies: 419 | fill-range "^7.0.1" 420 | 421 | braintree-jsdoc-template@^3.3.0: 422 | version "3.3.0" 423 | resolved "https://registry.npmjs.org/braintree-jsdoc-template/-/braintree-jsdoc-template-3.3.0.tgz" 424 | integrity sha512-sjkq3w1Dt1HO/yKa2WzFpsi+cuO5qv0kD2kHl6T0amdrnQX9T7sQBBde56iYR1dzXFYMXyh7ti/662v9/00bGw== 425 | 426 | browser-stdout@1.3.1: 427 | version "1.3.1" 428 | resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz" 429 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 430 | 431 | browserslist@^4.14.5: 432 | version "4.22.1" 433 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619" 434 | integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== 435 | dependencies: 436 | caniuse-lite "^1.0.30001541" 437 | electron-to-chromium "^1.4.535" 438 | node-releases "^2.0.13" 439 | update-browserslist-db "^1.0.13" 440 | 441 | buffer-crc32@~0.2.3: 442 | version "0.2.13" 443 | resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz" 444 | integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 445 | 446 | buffer-from@^1.0.0: 447 | version "1.1.2" 448 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" 449 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 450 | 451 | call-bind@^1.0.0, call-bind@^1.0.2: 452 | version "1.0.2" 453 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 454 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 455 | dependencies: 456 | function-bind "^1.1.1" 457 | get-intrinsic "^1.0.2" 458 | 459 | camelcase@^5.0.0: 460 | version "5.3.1" 461 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" 462 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 463 | 464 | caniuse-lite@^1.0.30001541: 465 | version "1.0.30001559" 466 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz#95a982440d3d314c471db68d02664fb7536c5a30" 467 | integrity sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA== 468 | 469 | catharsis@^0.9.0: 470 | version "0.9.0" 471 | resolved "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz" 472 | integrity sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A== 473 | dependencies: 474 | lodash "^4.17.15" 475 | 476 | chai@^4.2.0: 477 | version "4.3.6" 478 | resolved "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz" 479 | integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== 480 | dependencies: 481 | assertion-error "^1.1.0" 482 | check-error "^1.0.2" 483 | deep-eql "^3.0.1" 484 | get-func-name "^2.0.0" 485 | loupe "^2.3.1" 486 | pathval "^1.1.1" 487 | type-detect "^4.0.5" 488 | 489 | chalk@^2.0.1: 490 | version "2.4.2" 491 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 492 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 493 | dependencies: 494 | ansi-styles "^3.2.1" 495 | escape-string-regexp "^1.0.5" 496 | supports-color "^5.3.0" 497 | 498 | check-error@^1.0.2: 499 | version "1.0.2" 500 | resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz" 501 | integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== 502 | 503 | chokidar-cli@^2.0.0: 504 | version "2.1.0" 505 | resolved "https://registry.npmjs.org/chokidar-cli/-/chokidar-cli-2.1.0.tgz" 506 | integrity sha512-6n21AVpW6ywuEPoxJcLXMA2p4T+SLjWsXKny/9yTWFz0kKxESI3eUylpeV97LylING/27T/RVTY0f2/0QaWq9Q== 507 | dependencies: 508 | chokidar "^3.2.3" 509 | lodash.debounce "^4.0.8" 510 | lodash.throttle "^4.1.1" 511 | yargs "^13.3.0" 512 | 513 | chokidar@^3.2.3: 514 | version "3.5.3" 515 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" 516 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 517 | dependencies: 518 | anymatch "~3.1.2" 519 | braces "~3.0.2" 520 | glob-parent "~5.1.2" 521 | is-binary-path "~2.1.0" 522 | is-glob "~4.0.1" 523 | normalize-path "~3.0.0" 524 | readdirp "~3.6.0" 525 | optionalDependencies: 526 | fsevents "~2.3.2" 527 | 528 | chrome-trace-event@^1.0.2: 529 | version "1.0.3" 530 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" 531 | integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== 532 | 533 | cliui@^5.0.0: 534 | version "5.0.0" 535 | resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz" 536 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== 537 | dependencies: 538 | string-width "^3.1.0" 539 | strip-ansi "^5.2.0" 540 | wrap-ansi "^5.1.0" 541 | 542 | clone-deep@^4.0.1: 543 | version "4.0.1" 544 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" 545 | integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== 546 | dependencies: 547 | is-plain-object "^2.0.4" 548 | kind-of "^6.0.2" 549 | shallow-clone "^3.0.0" 550 | 551 | color-convert@^1.9.0, color-convert@^1.9.3: 552 | version "1.9.3" 553 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 554 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 555 | dependencies: 556 | color-name "1.1.3" 557 | 558 | color-name@1.1.3, color-name@^1.0.0: 559 | version "1.1.3" 560 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 561 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 562 | 563 | color-string@^1.6.0: 564 | version "1.9.1" 565 | resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" 566 | integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== 567 | dependencies: 568 | color-name "^1.0.0" 569 | simple-swizzle "^0.2.2" 570 | 571 | color@^3.1.3: 572 | version "3.2.1" 573 | resolved "https://registry.npmjs.org/color/-/color-3.2.1.tgz" 574 | integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== 575 | dependencies: 576 | color-convert "^1.9.3" 577 | color-string "^1.6.0" 578 | 579 | colorette@^2.0.14: 580 | version "2.0.20" 581 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" 582 | integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== 583 | 584 | colorspace@1.1.x: 585 | version "1.1.4" 586 | resolved "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz" 587 | integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w== 588 | dependencies: 589 | color "^3.1.3" 590 | text-hex "1.0.x" 591 | 592 | commander@^2.20.0: 593 | version "2.20.3" 594 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 595 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 596 | 597 | commander@^7.0.0: 598 | version "7.2.0" 599 | resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" 600 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 601 | 602 | concat-map@0.0.1: 603 | version "0.0.1" 604 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 605 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 606 | 607 | concat-stream@^1.6.2: 608 | version "1.6.2" 609 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" 610 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 611 | dependencies: 612 | buffer-from "^1.0.0" 613 | inherits "^2.0.3" 614 | readable-stream "^2.2.2" 615 | typedarray "^0.0.6" 616 | 617 | core-util-is@~1.0.0: 618 | version "1.0.3" 619 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" 620 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 621 | 622 | cross-spawn@^7.0.3: 623 | version "7.0.3" 624 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 625 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 626 | dependencies: 627 | path-key "^3.1.0" 628 | shebang-command "^2.0.0" 629 | which "^2.0.1" 630 | 631 | debug@3.2.6, debug@^3.1.0: 632 | version "3.2.6" 633 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz" 634 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 635 | dependencies: 636 | ms "^2.1.1" 637 | 638 | debug@^2.6.9: 639 | version "2.6.9" 640 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" 641 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 642 | dependencies: 643 | ms "2.0.0" 644 | 645 | debug@^4.1.0: 646 | version "4.3.4" 647 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 648 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 649 | dependencies: 650 | ms "2.1.2" 651 | 652 | decamelize@^1.2.0: 653 | version "1.2.0" 654 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" 655 | integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 656 | 657 | deep-eql@^3.0.1: 658 | version "3.0.1" 659 | resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz" 660 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== 661 | dependencies: 662 | type-detect "^4.0.0" 663 | 664 | define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4: 665 | version "1.1.4" 666 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz" 667 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 668 | dependencies: 669 | has-property-descriptors "^1.0.0" 670 | object-keys "^1.1.1" 671 | 672 | diff@3.5.0: 673 | version "3.5.0" 674 | resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz" 675 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 676 | 677 | electron-to-chromium@^1.4.535: 678 | version "1.4.573" 679 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.573.tgz#aa6e5edf86448bb9398f529357abcc6a17b6341d" 680 | integrity sha512-tzxxvKDTO3V5vzN2F+3v9jrK9gEbCdf1YYJUx/zVq1cyzyh+x1ddeYNNWh0ZS2ETNCVK3+Pns1LHIBq4w20X2Q== 681 | 682 | emoji-regex@^7.0.1: 683 | version "7.0.3" 684 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" 685 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 686 | 687 | enabled@2.0.x: 688 | version "2.0.0" 689 | resolved "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz" 690 | integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== 691 | 692 | enhanced-resolve@^5.15.0: 693 | version "5.15.0" 694 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" 695 | integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== 696 | dependencies: 697 | graceful-fs "^4.2.4" 698 | tapable "^2.2.0" 699 | 700 | entities@~2.1.0: 701 | version "2.1.0" 702 | resolved "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz" 703 | integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== 704 | 705 | envinfo@^7.7.3: 706 | version "7.11.0" 707 | resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.0.tgz#c3793f44284a55ff8c82faf1ffd91bc6478ea01f" 708 | integrity sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg== 709 | 710 | es-abstract@^1.19.0, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.1: 711 | version "1.20.1" 712 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz" 713 | integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== 714 | dependencies: 715 | call-bind "^1.0.2" 716 | es-to-primitive "^1.2.1" 717 | function-bind "^1.1.1" 718 | function.prototype.name "^1.1.5" 719 | get-intrinsic "^1.1.1" 720 | get-symbol-description "^1.0.0" 721 | has "^1.0.3" 722 | has-property-descriptors "^1.0.0" 723 | has-symbols "^1.0.3" 724 | internal-slot "^1.0.3" 725 | is-callable "^1.2.4" 726 | is-negative-zero "^2.0.2" 727 | is-regex "^1.1.4" 728 | is-shared-array-buffer "^1.0.2" 729 | is-string "^1.0.7" 730 | is-weakref "^1.0.2" 731 | object-inspect "^1.12.0" 732 | object-keys "^1.1.1" 733 | object.assign "^4.1.2" 734 | regexp.prototype.flags "^1.4.3" 735 | string.prototype.trimend "^1.0.5" 736 | string.prototype.trimstart "^1.0.5" 737 | unbox-primitive "^1.0.2" 738 | 739 | es-array-method-boxes-properly@^1.0.0: 740 | version "1.0.0" 741 | resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz" 742 | integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== 743 | 744 | es-module-lexer@^1.2.1: 745 | version "1.3.1" 746 | resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1" 747 | integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== 748 | 749 | es-to-primitive@^1.2.1: 750 | version "1.2.1" 751 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" 752 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 753 | dependencies: 754 | is-callable "^1.1.4" 755 | is-date-object "^1.0.1" 756 | is-symbol "^1.0.2" 757 | 758 | es6-promise@^4.0.3: 759 | version "4.2.8" 760 | resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz" 761 | integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== 762 | 763 | es6-promisify@^5.0.0: 764 | version "5.0.0" 765 | resolved "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz" 766 | integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ== 767 | dependencies: 768 | es6-promise "^4.0.3" 769 | 770 | escalade@^3.1.1: 771 | version "3.1.1" 772 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 773 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 774 | 775 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5: 776 | version "1.0.5" 777 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 778 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 779 | 780 | escape-string-regexp@^2.0.0: 781 | version "2.0.0" 782 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" 783 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 784 | 785 | eslint-scope@5.1.1: 786 | version "5.1.1" 787 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 788 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 789 | dependencies: 790 | esrecurse "^4.3.0" 791 | estraverse "^4.1.1" 792 | 793 | esprima@^4.0.0: 794 | version "4.0.1" 795 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" 796 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 797 | 798 | esrecurse@^4.3.0: 799 | version "4.3.0" 800 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 801 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 802 | dependencies: 803 | estraverse "^5.2.0" 804 | 805 | estraverse@^4.1.1: 806 | version "4.3.0" 807 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 808 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 809 | 810 | estraverse@^5.2.0: 811 | version "5.3.0" 812 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 813 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 814 | 815 | events@^3.2.0: 816 | version "3.3.0" 817 | resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" 818 | integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== 819 | 820 | extract-zip@^1.6.6: 821 | version "1.7.0" 822 | resolved "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz" 823 | integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== 824 | dependencies: 825 | concat-stream "^1.6.2" 826 | debug "^2.6.9" 827 | mkdirp "^0.5.4" 828 | yauzl "^2.10.0" 829 | 830 | fast-deep-equal@^3.1.1: 831 | version "3.1.3" 832 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 833 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 834 | 835 | fast-json-stable-stringify@^2.0.0: 836 | version "2.1.0" 837 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 838 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 839 | 840 | fastest-levenshtein@^1.0.12: 841 | version "1.0.16" 842 | resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" 843 | integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== 844 | 845 | fd-slicer@~1.1.0: 846 | version "1.1.0" 847 | resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz" 848 | integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== 849 | dependencies: 850 | pend "~1.2.0" 851 | 852 | fecha@^4.2.0: 853 | version "4.2.3" 854 | resolved "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz" 855 | integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== 856 | 857 | fill-range@^7.0.1: 858 | version "7.0.1" 859 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 860 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 861 | dependencies: 862 | to-regex-range "^5.0.1" 863 | 864 | find-up@3.0.0, find-up@^3.0.0: 865 | version "3.0.0" 866 | resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" 867 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 868 | dependencies: 869 | locate-path "^3.0.0" 870 | 871 | find-up@^4.0.0: 872 | version "4.1.0" 873 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 874 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 875 | dependencies: 876 | locate-path "^5.0.0" 877 | path-exists "^4.0.0" 878 | 879 | flat@^4.1.0: 880 | version "4.1.1" 881 | resolved "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz" 882 | integrity sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA== 883 | dependencies: 884 | is-buffer "~2.0.3" 885 | 886 | flat@^5.0.2: 887 | version "5.0.2" 888 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" 889 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== 890 | 891 | fn.name@1.x.x: 892 | version "1.1.0" 893 | resolved "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz" 894 | integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== 895 | 896 | fs.realpath@^1.0.0: 897 | version "1.0.0" 898 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 899 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 900 | 901 | fsevents@~2.3.2: 902 | version "2.3.2" 903 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 904 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 905 | 906 | function-bind@^1.1.1: 907 | version "1.1.1" 908 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 909 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 910 | 911 | function-bind@^1.1.2: 912 | version "1.1.2" 913 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 914 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 915 | 916 | function.prototype.name@^1.1.5: 917 | version "1.1.5" 918 | resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" 919 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 920 | dependencies: 921 | call-bind "^1.0.2" 922 | define-properties "^1.1.3" 923 | es-abstract "^1.19.0" 924 | functions-have-names "^1.2.2" 925 | 926 | functions-have-names@^1.2.2: 927 | version "1.2.3" 928 | resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" 929 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 930 | 931 | get-caller-file@^2.0.1: 932 | version "2.0.5" 933 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" 934 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 935 | 936 | get-func-name@^2.0.0: 937 | version "2.0.0" 938 | resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz" 939 | integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== 940 | 941 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 942 | version "1.1.2" 943 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz" 944 | integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== 945 | dependencies: 946 | function-bind "^1.1.1" 947 | has "^1.0.3" 948 | has-symbols "^1.0.3" 949 | 950 | get-symbol-description@^1.0.0: 951 | version "1.0.0" 952 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" 953 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 954 | dependencies: 955 | call-bind "^1.0.2" 956 | get-intrinsic "^1.1.1" 957 | 958 | glob-parent@~5.1.2: 959 | version "5.1.2" 960 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 961 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 962 | dependencies: 963 | is-glob "^4.0.1" 964 | 965 | glob-to-regexp@^0.4.1: 966 | version "0.4.1" 967 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" 968 | integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== 969 | 970 | glob@7.1.3, glob@^7.1.3: 971 | version "7.1.3" 972 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz" 973 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 974 | dependencies: 975 | fs.realpath "^1.0.0" 976 | inflight "^1.0.4" 977 | inherits "2" 978 | minimatch "^3.0.4" 979 | once "^1.3.0" 980 | path-is-absolute "^1.0.0" 981 | 982 | graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.9: 983 | version "4.2.11" 984 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" 985 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== 986 | 987 | growl@1.10.5: 988 | version "1.10.5" 989 | resolved "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz" 990 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 991 | 992 | has-bigints@^1.0.1, has-bigints@^1.0.2: 993 | version "1.0.2" 994 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" 995 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 996 | 997 | has-flag@^3.0.0: 998 | version "3.0.0" 999 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1000 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1001 | 1002 | has-flag@^4.0.0: 1003 | version "4.0.0" 1004 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1005 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1006 | 1007 | has-property-descriptors@^1.0.0: 1008 | version "1.0.0" 1009 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz" 1010 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1011 | dependencies: 1012 | get-intrinsic "^1.1.1" 1013 | 1014 | has-symbols@^1.0.0, has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 1015 | version "1.0.3" 1016 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 1017 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1018 | 1019 | has-tostringtag@^1.0.0: 1020 | version "1.0.0" 1021 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" 1022 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1023 | dependencies: 1024 | has-symbols "^1.0.2" 1025 | 1026 | has@^1.0.3: 1027 | version "1.0.3" 1028 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1029 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1030 | dependencies: 1031 | function-bind "^1.1.1" 1032 | 1033 | hasown@^2.0.0: 1034 | version "2.0.0" 1035 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" 1036 | integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== 1037 | dependencies: 1038 | function-bind "^1.1.2" 1039 | 1040 | he@1.2.0: 1041 | version "1.2.0" 1042 | resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz" 1043 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 1044 | 1045 | https-proxy-agent@^2.2.1: 1046 | version "2.2.4" 1047 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz" 1048 | integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== 1049 | dependencies: 1050 | agent-base "^4.3.0" 1051 | debug "^3.1.0" 1052 | 1053 | import-local@^3.0.2: 1054 | version "3.1.0" 1055 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" 1056 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 1057 | dependencies: 1058 | pkg-dir "^4.2.0" 1059 | resolve-cwd "^3.0.0" 1060 | 1061 | inflight@^1.0.4: 1062 | version "1.0.6" 1063 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1064 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1065 | dependencies: 1066 | once "^1.3.0" 1067 | wrappy "1" 1068 | 1069 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1070 | version "2.0.4" 1071 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1072 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1073 | 1074 | internal-slot@^1.0.3: 1075 | version "1.0.3" 1076 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" 1077 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1078 | dependencies: 1079 | get-intrinsic "^1.1.0" 1080 | has "^1.0.3" 1081 | side-channel "^1.0.4" 1082 | 1083 | interpret@^2.2.0: 1084 | version "2.2.0" 1085 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" 1086 | integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== 1087 | 1088 | is-arrayish@^0.3.1: 1089 | version "0.3.2" 1090 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" 1091 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1092 | 1093 | is-bigint@^1.0.1: 1094 | version "1.0.4" 1095 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" 1096 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1097 | dependencies: 1098 | has-bigints "^1.0.1" 1099 | 1100 | is-binary-path@~2.1.0: 1101 | version "2.1.0" 1102 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" 1103 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1104 | dependencies: 1105 | binary-extensions "^2.0.0" 1106 | 1107 | is-boolean-object@^1.1.0: 1108 | version "1.1.2" 1109 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" 1110 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1111 | dependencies: 1112 | call-bind "^1.0.2" 1113 | has-tostringtag "^1.0.0" 1114 | 1115 | is-buffer@~2.0.3: 1116 | version "2.0.5" 1117 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" 1118 | integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== 1119 | 1120 | is-callable@^1.1.4, is-callable@^1.2.4: 1121 | version "1.2.4" 1122 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz" 1123 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1124 | 1125 | is-core-module@^2.13.0: 1126 | version "2.13.1" 1127 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" 1128 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== 1129 | dependencies: 1130 | hasown "^2.0.0" 1131 | 1132 | is-date-object@^1.0.1: 1133 | version "1.0.5" 1134 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" 1135 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1136 | dependencies: 1137 | has-tostringtag "^1.0.0" 1138 | 1139 | is-extglob@^2.1.1: 1140 | version "2.1.1" 1141 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1142 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1143 | 1144 | is-fullwidth-code-point@^2.0.0: 1145 | version "2.0.0" 1146 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" 1147 | integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== 1148 | 1149 | is-glob@^4.0.1, is-glob@~4.0.1: 1150 | version "4.0.3" 1151 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1152 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1153 | dependencies: 1154 | is-extglob "^2.1.1" 1155 | 1156 | is-negative-zero@^2.0.2: 1157 | version "2.0.2" 1158 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" 1159 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1160 | 1161 | is-number-object@^1.0.4: 1162 | version "1.0.7" 1163 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" 1164 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1165 | dependencies: 1166 | has-tostringtag "^1.0.0" 1167 | 1168 | is-number@^7.0.0: 1169 | version "7.0.0" 1170 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1171 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1172 | 1173 | is-plain-object@^2.0.4: 1174 | version "2.0.4" 1175 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1176 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1177 | dependencies: 1178 | isobject "^3.0.1" 1179 | 1180 | is-regex@^1.1.4: 1181 | version "1.1.4" 1182 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" 1183 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1184 | dependencies: 1185 | call-bind "^1.0.2" 1186 | has-tostringtag "^1.0.0" 1187 | 1188 | is-shared-array-buffer@^1.0.2: 1189 | version "1.0.2" 1190 | resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" 1191 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1192 | dependencies: 1193 | call-bind "^1.0.2" 1194 | 1195 | is-stream@^2.0.0: 1196 | version "2.0.1" 1197 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 1198 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1199 | 1200 | is-string@^1.0.5, is-string@^1.0.7: 1201 | version "1.0.7" 1202 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" 1203 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1204 | dependencies: 1205 | has-tostringtag "^1.0.0" 1206 | 1207 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1208 | version "1.0.4" 1209 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" 1210 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1211 | dependencies: 1212 | has-symbols "^1.0.2" 1213 | 1214 | is-weakref@^1.0.2: 1215 | version "1.0.2" 1216 | resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" 1217 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1218 | dependencies: 1219 | call-bind "^1.0.2" 1220 | 1221 | isarray@~1.0.0: 1222 | version "1.0.0" 1223 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" 1224 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 1225 | 1226 | isexe@^2.0.0: 1227 | version "2.0.0" 1228 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1229 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1230 | 1231 | isobject@^3.0.1: 1232 | version "3.0.1" 1233 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1234 | integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== 1235 | 1236 | jest-worker@^27.4.5: 1237 | version "27.5.1" 1238 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" 1239 | integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== 1240 | dependencies: 1241 | "@types/node" "*" 1242 | merge-stream "^2.0.0" 1243 | supports-color "^8.0.0" 1244 | 1245 | js-yaml@3.13.1: 1246 | version "3.13.1" 1247 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz" 1248 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1249 | dependencies: 1250 | argparse "^1.0.7" 1251 | esprima "^4.0.0" 1252 | 1253 | js2xmlparser@^4.0.2: 1254 | version "4.0.2" 1255 | resolved "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz" 1256 | integrity sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA== 1257 | dependencies: 1258 | xmlcreate "^2.0.4" 1259 | 1260 | jsdoc@^3.6.3: 1261 | version "3.6.10" 1262 | resolved "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.10.tgz" 1263 | integrity sha512-IdQ8ppSo5LKZ9o3M+LKIIK8i00DIe5msDvG3G81Km+1dhy0XrOWD0Ji8H61ElgyEj/O9KRLokgKbAM9XX9CJAg== 1264 | dependencies: 1265 | "@babel/parser" "^7.9.4" 1266 | "@types/markdown-it" "^12.2.3" 1267 | bluebird "^3.7.2" 1268 | catharsis "^0.9.0" 1269 | escape-string-regexp "^2.0.0" 1270 | js2xmlparser "^4.0.2" 1271 | klaw "^4.0.1" 1272 | markdown-it "^12.3.2" 1273 | markdown-it-anchor "^8.4.1" 1274 | marked "^4.0.10" 1275 | mkdirp "^1.0.4" 1276 | requizzle "^0.2.3" 1277 | strip-json-comments "^3.1.0" 1278 | taffydb "2.6.2" 1279 | underscore "~1.13.2" 1280 | 1281 | json-parse-even-better-errors@^2.3.1: 1282 | version "2.3.1" 1283 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1284 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1285 | 1286 | json-schema-traverse@^0.4.1: 1287 | version "0.4.1" 1288 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1289 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1290 | 1291 | kind-of@^6.0.2: 1292 | version "6.0.3" 1293 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1294 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1295 | 1296 | klaw@^4.0.1: 1297 | version "4.0.1" 1298 | resolved "https://registry.npmjs.org/klaw/-/klaw-4.0.1.tgz" 1299 | integrity sha512-pgsE40/SvC7st04AHiISNewaIMUbY5V/K8b21ekiPiFoYs/EYSdsGa+FJArB1d441uq4Q8zZyIxvAzkGNlBdRw== 1300 | 1301 | kuler@^2.0.0: 1302 | version "2.0.0" 1303 | resolved "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz" 1304 | integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== 1305 | 1306 | linkify-it@^3.0.1: 1307 | version "3.0.3" 1308 | resolved "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz" 1309 | integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== 1310 | dependencies: 1311 | uc.micro "^1.0.1" 1312 | 1313 | loader-runner@^4.2.0: 1314 | version "4.3.0" 1315 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" 1316 | integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== 1317 | 1318 | locate-path@^3.0.0: 1319 | version "3.0.0" 1320 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" 1321 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1322 | dependencies: 1323 | p-locate "^3.0.0" 1324 | path-exists "^3.0.0" 1325 | 1326 | locate-path@^5.0.0: 1327 | version "5.0.0" 1328 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1329 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1330 | dependencies: 1331 | p-locate "^4.1.0" 1332 | 1333 | lodash.debounce@^4.0.8: 1334 | version "4.0.8" 1335 | resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" 1336 | integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== 1337 | 1338 | lodash.throttle@^4.1.1: 1339 | version "4.1.1" 1340 | resolved "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz" 1341 | integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== 1342 | 1343 | lodash@^4.17.14, lodash@^4.17.15: 1344 | version "4.17.21" 1345 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 1346 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1347 | 1348 | log-symbols@2.2.0: 1349 | version "2.2.0" 1350 | resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz" 1351 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 1352 | dependencies: 1353 | chalk "^2.0.1" 1354 | 1355 | logform@^2.3.2, logform@^2.4.0: 1356 | version "2.4.0" 1357 | resolved "https://registry.npmjs.org/logform/-/logform-2.4.0.tgz" 1358 | integrity sha512-CPSJw4ftjf517EhXZGGvTHHkYobo7ZCc0kvwUoOYcjfR2UVrI66RHj8MCrfAdEitdmFqbu2BYdYs8FHHZSb6iw== 1359 | dependencies: 1360 | "@colors/colors" "1.5.0" 1361 | fecha "^4.2.0" 1362 | ms "^2.1.1" 1363 | safe-stable-stringify "^2.3.1" 1364 | triple-beam "^1.3.0" 1365 | 1366 | loupe@^2.3.1: 1367 | version "2.3.4" 1368 | resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz" 1369 | integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== 1370 | dependencies: 1371 | get-func-name "^2.0.0" 1372 | 1373 | markdown-it-anchor@^8.4.1: 1374 | version "8.6.4" 1375 | resolved "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.4.tgz" 1376 | integrity sha512-Ul4YVYZNxMJYALpKtu+ZRdrryYt/GlQ5CK+4l1bp/gWXOG2QWElt6AqF3Mih/wfUKdZbNAZVXGR73/n6U/8img== 1377 | 1378 | markdown-it@^12.3.2: 1379 | version "12.3.2" 1380 | resolved "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz" 1381 | integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== 1382 | dependencies: 1383 | argparse "^2.0.1" 1384 | entities "~2.1.0" 1385 | linkify-it "^3.0.1" 1386 | mdurl "^1.0.1" 1387 | uc.micro "^1.0.5" 1388 | 1389 | marked@^4.0.10: 1390 | version "4.0.17" 1391 | resolved "https://registry.npmjs.org/marked/-/marked-4.0.17.tgz" 1392 | integrity sha512-Wfk0ATOK5iPxM4ptrORkFemqroz0ZDxp5MWfYA7H/F+wO17NRWV5Ypxi6p3g2Xmw2bKeiYOl6oVnLHKxBA0VhA== 1393 | 1394 | mdurl@^1.0.1: 1395 | version "1.0.1" 1396 | resolved "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz" 1397 | integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== 1398 | 1399 | merge-stream@^2.0.0: 1400 | version "2.0.0" 1401 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1402 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1403 | 1404 | mime-db@1.52.0: 1405 | version "1.52.0" 1406 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 1407 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1408 | 1409 | mime-types@^2.1.27: 1410 | version "2.1.35" 1411 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 1412 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1413 | dependencies: 1414 | mime-db "1.52.0" 1415 | 1416 | mime@^2.0.3: 1417 | version "2.6.0" 1418 | resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz" 1419 | integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== 1420 | 1421 | minimatch@3.0.4, minimatch@^3.0.4: 1422 | version "3.0.4" 1423 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" 1424 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1425 | dependencies: 1426 | brace-expansion "^1.1.7" 1427 | 1428 | minimist@^1.2.5, minimist@^1.2.6: 1429 | version "1.2.6" 1430 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz" 1431 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1432 | 1433 | mkdirp@0.5.4: 1434 | version "0.5.4" 1435 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz" 1436 | integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw== 1437 | dependencies: 1438 | minimist "^1.2.5" 1439 | 1440 | mkdirp@^0.5.4: 1441 | version "0.5.6" 1442 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" 1443 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 1444 | dependencies: 1445 | minimist "^1.2.6" 1446 | 1447 | mkdirp@^1.0.4: 1448 | version "1.0.4" 1449 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" 1450 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1451 | 1452 | mocha@^6.2.1: 1453 | version "6.2.3" 1454 | resolved "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz" 1455 | integrity sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg== 1456 | dependencies: 1457 | ansi-colors "3.2.3" 1458 | browser-stdout "1.3.1" 1459 | debug "3.2.6" 1460 | diff "3.5.0" 1461 | escape-string-regexp "1.0.5" 1462 | find-up "3.0.0" 1463 | glob "7.1.3" 1464 | growl "1.10.5" 1465 | he "1.2.0" 1466 | js-yaml "3.13.1" 1467 | log-symbols "2.2.0" 1468 | minimatch "3.0.4" 1469 | mkdirp "0.5.4" 1470 | ms "2.1.1" 1471 | node-environment-flags "1.0.5" 1472 | object.assign "4.1.0" 1473 | strip-json-comments "2.0.1" 1474 | supports-color "6.0.0" 1475 | which "1.3.1" 1476 | wide-align "1.1.3" 1477 | yargs "13.3.2" 1478 | yargs-parser "13.1.2" 1479 | yargs-unparser "1.6.0" 1480 | 1481 | ms@2.0.0: 1482 | version "2.0.0" 1483 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" 1484 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1485 | 1486 | ms@2.1.1, ms@^2.1.1: 1487 | version "2.1.1" 1488 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" 1489 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1490 | 1491 | ms@2.1.2: 1492 | version "2.1.2" 1493 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 1494 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1495 | 1496 | neo-async@^2.6.2: 1497 | version "2.6.2" 1498 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 1499 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1500 | 1501 | node-environment-flags@1.0.5: 1502 | version "1.0.5" 1503 | resolved "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz" 1504 | integrity sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== 1505 | dependencies: 1506 | object.getownpropertydescriptors "^2.0.3" 1507 | semver "^5.7.0" 1508 | 1509 | node-fetch@^2.6.0: 1510 | version "2.6.7" 1511 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz" 1512 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1513 | dependencies: 1514 | whatwg-url "^5.0.0" 1515 | 1516 | node-releases@^2.0.13: 1517 | version "2.0.13" 1518 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" 1519 | integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== 1520 | 1521 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1522 | version "3.0.0" 1523 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 1524 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1525 | 1526 | object-inspect@^1.12.0, object-inspect@^1.9.0: 1527 | version "1.12.2" 1528 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz" 1529 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1530 | 1531 | object-keys@^1.0.11, object-keys@^1.1.1: 1532 | version "1.1.1" 1533 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 1534 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1535 | 1536 | object.assign@4.1.0: 1537 | version "4.1.0" 1538 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz" 1539 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1540 | dependencies: 1541 | define-properties "^1.1.2" 1542 | function-bind "^1.1.1" 1543 | has-symbols "^1.0.0" 1544 | object-keys "^1.0.11" 1545 | 1546 | object.assign@^4.1.2: 1547 | version "4.1.2" 1548 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" 1549 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1550 | dependencies: 1551 | call-bind "^1.0.0" 1552 | define-properties "^1.1.3" 1553 | has-symbols "^1.0.1" 1554 | object-keys "^1.1.1" 1555 | 1556 | object.getownpropertydescriptors@^2.0.3: 1557 | version "2.1.4" 1558 | resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz" 1559 | integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ== 1560 | dependencies: 1561 | array.prototype.reduce "^1.0.4" 1562 | call-bind "^1.0.2" 1563 | define-properties "^1.1.4" 1564 | es-abstract "^1.20.1" 1565 | 1566 | once@^1.3.0: 1567 | version "1.4.0" 1568 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 1569 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1570 | dependencies: 1571 | wrappy "1" 1572 | 1573 | one-time@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz" 1576 | integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== 1577 | dependencies: 1578 | fn.name "1.x.x" 1579 | 1580 | p-limit@^2.0.0, p-limit@^2.2.0: 1581 | version "2.3.0" 1582 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 1583 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1584 | dependencies: 1585 | p-try "^2.0.0" 1586 | 1587 | p-locate@^3.0.0: 1588 | version "3.0.0" 1589 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" 1590 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1591 | dependencies: 1592 | p-limit "^2.0.0" 1593 | 1594 | p-locate@^4.1.0: 1595 | version "4.1.0" 1596 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1597 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1598 | dependencies: 1599 | p-limit "^2.2.0" 1600 | 1601 | p-try@^2.0.0: 1602 | version "2.2.0" 1603 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 1604 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1605 | 1606 | path-exists@^3.0.0: 1607 | version "3.0.0" 1608 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" 1609 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 1610 | 1611 | path-exists@^4.0.0: 1612 | version "4.0.0" 1613 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1614 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1615 | 1616 | path-is-absolute@^1.0.0: 1617 | version "1.0.1" 1618 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 1619 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1620 | 1621 | path-key@^3.1.0: 1622 | version "3.1.1" 1623 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1624 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1625 | 1626 | path-parse@^1.0.7: 1627 | version "1.0.7" 1628 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1629 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1630 | 1631 | pathval@^1.1.1: 1632 | version "1.1.1" 1633 | resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz" 1634 | integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== 1635 | 1636 | pend@~1.2.0: 1637 | version "1.2.0" 1638 | resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz" 1639 | integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== 1640 | 1641 | picocolors@^1.0.0: 1642 | version "1.0.0" 1643 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1644 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1645 | 1646 | picomatch@^2.0.4, picomatch@^2.2.1: 1647 | version "2.3.1" 1648 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 1649 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1650 | 1651 | pkg-dir@^4.2.0: 1652 | version "4.2.0" 1653 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 1654 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 1655 | dependencies: 1656 | find-up "^4.0.0" 1657 | 1658 | postmate@^1.5.1: 1659 | version "1.5.2" 1660 | resolved "https://registry.npmjs.org/postmate/-/postmate-1.5.2.tgz" 1661 | integrity sha512-EHLlEmrUA/hALls49oBrtE7BzDXXjB9EiO4MZpsoO3R/jRuBmD+2WKQuYAbeuVEpTzrPpUTT79z2cz4qaFgPRg== 1662 | 1663 | process-nextick-args@~2.0.0: 1664 | version "2.0.1" 1665 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" 1666 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1667 | 1668 | progress@^2.0.1: 1669 | version "2.0.3" 1670 | resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" 1671 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1672 | 1673 | proxy-from-env@^1.0.0: 1674 | version "1.1.0" 1675 | resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" 1676 | integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== 1677 | 1678 | punycode@^2.1.0: 1679 | version "2.3.1" 1680 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 1681 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 1682 | 1683 | puppeteer@^1.20.0: 1684 | version "1.20.0" 1685 | resolved "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz" 1686 | integrity sha512-bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ== 1687 | dependencies: 1688 | debug "^4.1.0" 1689 | extract-zip "^1.6.6" 1690 | https-proxy-agent "^2.2.1" 1691 | mime "^2.0.3" 1692 | progress "^2.0.1" 1693 | proxy-from-env "^1.0.0" 1694 | rimraf "^2.6.1" 1695 | ws "^6.1.0" 1696 | 1697 | randombytes@^2.1.0: 1698 | version "2.1.0" 1699 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1700 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 1701 | dependencies: 1702 | safe-buffer "^5.1.0" 1703 | 1704 | readable-stream@^2.2.2: 1705 | version "2.3.7" 1706 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" 1707 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1708 | dependencies: 1709 | core-util-is "~1.0.0" 1710 | inherits "~2.0.3" 1711 | isarray "~1.0.0" 1712 | process-nextick-args "~2.0.0" 1713 | safe-buffer "~5.1.1" 1714 | string_decoder "~1.1.1" 1715 | util-deprecate "~1.0.1" 1716 | 1717 | readable-stream@^3.4.0, readable-stream@^3.6.0: 1718 | version "3.6.0" 1719 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" 1720 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1721 | dependencies: 1722 | inherits "^2.0.3" 1723 | string_decoder "^1.1.1" 1724 | util-deprecate "^1.0.1" 1725 | 1726 | readdirp@~3.6.0: 1727 | version "3.6.0" 1728 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" 1729 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1730 | dependencies: 1731 | picomatch "^2.2.1" 1732 | 1733 | rechoir@^0.7.0: 1734 | version "0.7.1" 1735 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686" 1736 | integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg== 1737 | dependencies: 1738 | resolve "^1.9.0" 1739 | 1740 | regexp.prototype.flags@^1.4.3: 1741 | version "1.4.3" 1742 | resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz" 1743 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1744 | dependencies: 1745 | call-bind "^1.0.2" 1746 | define-properties "^1.1.3" 1747 | functions-have-names "^1.2.2" 1748 | 1749 | require-directory@^2.1.1: 1750 | version "2.1.1" 1751 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" 1752 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 1753 | 1754 | require-main-filename@^2.0.0: 1755 | version "2.0.0" 1756 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" 1757 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 1758 | 1759 | requizzle@^0.2.3: 1760 | version "0.2.3" 1761 | resolved "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz" 1762 | integrity sha512-YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ== 1763 | dependencies: 1764 | lodash "^4.17.14" 1765 | 1766 | resolve-cwd@^3.0.0: 1767 | version "3.0.0" 1768 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 1769 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 1770 | dependencies: 1771 | resolve-from "^5.0.0" 1772 | 1773 | resolve-from@^5.0.0: 1774 | version "5.0.0" 1775 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 1776 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 1777 | 1778 | resolve@^1.9.0: 1779 | version "1.22.8" 1780 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" 1781 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 1782 | dependencies: 1783 | is-core-module "^2.13.0" 1784 | path-parse "^1.0.7" 1785 | supports-preserve-symlinks-flag "^1.0.0" 1786 | 1787 | rimraf@^2.6.1: 1788 | version "2.7.1" 1789 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" 1790 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 1791 | dependencies: 1792 | glob "^7.1.3" 1793 | 1794 | safe-buffer@^5.1.0: 1795 | version "5.2.1" 1796 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1797 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1798 | 1799 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1800 | version "5.1.2" 1801 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" 1802 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1803 | 1804 | safe-stable-stringify@^2.3.1: 1805 | version "2.3.1" 1806 | resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz" 1807 | integrity sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg== 1808 | 1809 | schema-utils@^3.1.1, schema-utils@^3.2.0: 1810 | version "3.3.0" 1811 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" 1812 | integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== 1813 | dependencies: 1814 | "@types/json-schema" "^7.0.8" 1815 | ajv "^6.12.5" 1816 | ajv-keywords "^3.5.2" 1817 | 1818 | semver@^5.7.0: 1819 | version "5.7.1" 1820 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" 1821 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1822 | 1823 | serialize-javascript@^6.0.1: 1824 | version "6.0.1" 1825 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" 1826 | integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== 1827 | dependencies: 1828 | randombytes "^2.1.0" 1829 | 1830 | set-blocking@^2.0.0: 1831 | version "2.0.0" 1832 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" 1833 | integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== 1834 | 1835 | shallow-clone@^3.0.0: 1836 | version "3.0.1" 1837 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" 1838 | integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== 1839 | dependencies: 1840 | kind-of "^6.0.2" 1841 | 1842 | shebang-command@^2.0.0: 1843 | version "2.0.0" 1844 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1845 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1846 | dependencies: 1847 | shebang-regex "^3.0.0" 1848 | 1849 | shebang-regex@^3.0.0: 1850 | version "3.0.0" 1851 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1852 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1853 | 1854 | side-channel@^1.0.4: 1855 | version "1.0.4" 1856 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" 1857 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1858 | dependencies: 1859 | call-bind "^1.0.0" 1860 | get-intrinsic "^1.0.2" 1861 | object-inspect "^1.9.0" 1862 | 1863 | simple-swizzle@^0.2.2: 1864 | version "0.2.2" 1865 | resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" 1866 | integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== 1867 | dependencies: 1868 | is-arrayish "^0.3.1" 1869 | 1870 | source-map-support@~0.5.20: 1871 | version "0.5.21" 1872 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 1873 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 1874 | dependencies: 1875 | buffer-from "^1.0.0" 1876 | source-map "^0.6.0" 1877 | 1878 | source-map@^0.6.0: 1879 | version "0.6.1" 1880 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1881 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1882 | 1883 | sprintf-js@^1.1.2: 1884 | version "1.1.2" 1885 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz" 1886 | integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== 1887 | 1888 | sprintf-js@~1.0.2: 1889 | version "1.0.3" 1890 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 1891 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 1892 | 1893 | stack-trace@0.0.x: 1894 | version "0.0.10" 1895 | resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz" 1896 | integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== 1897 | 1898 | "string-width@^1.0.2 || 2": 1899 | version "2.1.1" 1900 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz" 1901 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1902 | dependencies: 1903 | is-fullwidth-code-point "^2.0.0" 1904 | strip-ansi "^4.0.0" 1905 | 1906 | string-width@^3.0.0, string-width@^3.1.0: 1907 | version "3.1.0" 1908 | resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" 1909 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1910 | dependencies: 1911 | emoji-regex "^7.0.1" 1912 | is-fullwidth-code-point "^2.0.0" 1913 | strip-ansi "^5.1.0" 1914 | 1915 | string.prototype.trimend@^1.0.5: 1916 | version "1.0.5" 1917 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz" 1918 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 1919 | dependencies: 1920 | call-bind "^1.0.2" 1921 | define-properties "^1.1.4" 1922 | es-abstract "^1.19.5" 1923 | 1924 | string.prototype.trimstart@^1.0.5: 1925 | version "1.0.5" 1926 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz" 1927 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 1928 | dependencies: 1929 | call-bind "^1.0.2" 1930 | define-properties "^1.1.4" 1931 | es-abstract "^1.19.5" 1932 | 1933 | string_decoder@^1.1.1, string_decoder@~1.1.1: 1934 | version "1.1.1" 1935 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" 1936 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1937 | dependencies: 1938 | safe-buffer "~5.1.0" 1939 | 1940 | strip-ansi@^4.0.0: 1941 | version "4.0.0" 1942 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" 1943 | integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== 1944 | dependencies: 1945 | ansi-regex "^3.0.0" 1946 | 1947 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 1948 | version "5.2.0" 1949 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" 1950 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1951 | dependencies: 1952 | ansi-regex "^4.1.0" 1953 | 1954 | strip-json-comments@2.0.1: 1955 | version "2.0.1" 1956 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" 1957 | integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== 1958 | 1959 | strip-json-comments@^3.1.0: 1960 | version "3.1.1" 1961 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 1962 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1963 | 1964 | supports-color@6.0.0: 1965 | version "6.0.0" 1966 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz" 1967 | integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== 1968 | dependencies: 1969 | has-flag "^3.0.0" 1970 | 1971 | supports-color@^5.3.0: 1972 | version "5.5.0" 1973 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 1974 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1975 | dependencies: 1976 | has-flag "^3.0.0" 1977 | 1978 | supports-color@^8.0.0: 1979 | version "8.1.1" 1980 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 1981 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 1982 | dependencies: 1983 | has-flag "^4.0.0" 1984 | 1985 | supports-preserve-symlinks-flag@^1.0.0: 1986 | version "1.0.0" 1987 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1988 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1989 | 1990 | taffydb@2.6.2: 1991 | version "2.6.2" 1992 | resolved "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz" 1993 | integrity sha512-y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA== 1994 | 1995 | tapable@^2.1.1, tapable@^2.2.0: 1996 | version "2.2.1" 1997 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" 1998 | integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 1999 | 2000 | terser-webpack-plugin@^5.3.7: 2001 | version "5.3.9" 2002 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" 2003 | integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== 2004 | dependencies: 2005 | "@jridgewell/trace-mapping" "^0.3.17" 2006 | jest-worker "^27.4.5" 2007 | schema-utils "^3.1.1" 2008 | serialize-javascript "^6.0.1" 2009 | terser "^5.16.8" 2010 | 2011 | terser@^5.16.8: 2012 | version "5.24.0" 2013 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.24.0.tgz#4ae50302977bca4831ccc7b4fef63a3c04228364" 2014 | integrity sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw== 2015 | dependencies: 2016 | "@jridgewell/source-map" "^0.3.3" 2017 | acorn "^8.8.2" 2018 | commander "^2.20.0" 2019 | source-map-support "~0.5.20" 2020 | 2021 | text-hex@1.0.x: 2022 | version "1.0.0" 2023 | resolved "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz" 2024 | integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== 2025 | 2026 | to-regex-range@^5.0.1: 2027 | version "5.0.1" 2028 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2029 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2030 | dependencies: 2031 | is-number "^7.0.0" 2032 | 2033 | tr46@~0.0.3: 2034 | version "0.0.3" 2035 | resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" 2036 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== 2037 | 2038 | triple-beam@^1.3.0: 2039 | version "1.3.0" 2040 | resolved "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz" 2041 | integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== 2042 | 2043 | type-detect@^4.0.0, type-detect@^4.0.5: 2044 | version "4.0.8" 2045 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" 2046 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2047 | 2048 | typedarray@^0.0.6: 2049 | version "0.0.6" 2050 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" 2051 | integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== 2052 | 2053 | typescript@^3.6.4: 2054 | version "3.9.10" 2055 | resolved "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz" 2056 | integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== 2057 | 2058 | uc.micro@^1.0.1, uc.micro@^1.0.5: 2059 | version "1.0.6" 2060 | resolved "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz" 2061 | integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== 2062 | 2063 | unbox-primitive@^1.0.2: 2064 | version "1.0.2" 2065 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" 2066 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2067 | dependencies: 2068 | call-bind "^1.0.2" 2069 | has-bigints "^1.0.2" 2070 | has-symbols "^1.0.3" 2071 | which-boxed-primitive "^1.0.2" 2072 | 2073 | underscore@~1.13.2: 2074 | version "1.13.4" 2075 | resolved "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz" 2076 | integrity sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ== 2077 | 2078 | undici-types@~5.26.4: 2079 | version "5.26.5" 2080 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" 2081 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== 2082 | 2083 | update-browserslist-db@^1.0.13: 2084 | version "1.0.13" 2085 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" 2086 | integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== 2087 | dependencies: 2088 | escalade "^3.1.1" 2089 | picocolors "^1.0.0" 2090 | 2091 | uri-js@^4.2.2: 2092 | version "4.4.1" 2093 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2094 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2095 | dependencies: 2096 | punycode "^2.1.0" 2097 | 2098 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2099 | version "1.0.2" 2100 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 2101 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2102 | 2103 | watchpack@^2.4.0: 2104 | version "2.4.0" 2105 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" 2106 | integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== 2107 | dependencies: 2108 | glob-to-regexp "^0.4.1" 2109 | graceful-fs "^4.1.2" 2110 | 2111 | webidl-conversions@^3.0.0: 2112 | version "3.0.1" 2113 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" 2114 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== 2115 | 2116 | webpack-cli@4.10.0: 2117 | version "4.10.0" 2118 | resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.10.0.tgz#37c1d69c8d85214c5a65e589378f53aec64dab31" 2119 | integrity sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w== 2120 | dependencies: 2121 | "@discoveryjs/json-ext" "^0.5.0" 2122 | "@webpack-cli/configtest" "^1.2.0" 2123 | "@webpack-cli/info" "^1.5.0" 2124 | "@webpack-cli/serve" "^1.7.0" 2125 | colorette "^2.0.14" 2126 | commander "^7.0.0" 2127 | cross-spawn "^7.0.3" 2128 | fastest-levenshtein "^1.0.12" 2129 | import-local "^3.0.2" 2130 | interpret "^2.2.0" 2131 | rechoir "^0.7.0" 2132 | webpack-merge "^5.7.3" 2133 | 2134 | webpack-merge@^5.7.3: 2135 | version "5.10.0" 2136 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.10.0.tgz#a3ad5d773241e9c682803abf628d4cd62b8a4177" 2137 | integrity sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== 2138 | dependencies: 2139 | clone-deep "^4.0.1" 2140 | flat "^5.0.2" 2141 | wildcard "^2.0.0" 2142 | 2143 | webpack-sources@^3.2.3: 2144 | version "3.2.3" 2145 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" 2146 | integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== 2147 | 2148 | webpack@^5.89.0: 2149 | version "5.89.0" 2150 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc" 2151 | integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw== 2152 | dependencies: 2153 | "@types/eslint-scope" "^3.7.3" 2154 | "@types/estree" "^1.0.0" 2155 | "@webassemblyjs/ast" "^1.11.5" 2156 | "@webassemblyjs/wasm-edit" "^1.11.5" 2157 | "@webassemblyjs/wasm-parser" "^1.11.5" 2158 | acorn "^8.7.1" 2159 | acorn-import-assertions "^1.9.0" 2160 | browserslist "^4.14.5" 2161 | chrome-trace-event "^1.0.2" 2162 | enhanced-resolve "^5.15.0" 2163 | es-module-lexer "^1.2.1" 2164 | eslint-scope "5.1.1" 2165 | events "^3.2.0" 2166 | glob-to-regexp "^0.4.1" 2167 | graceful-fs "^4.2.9" 2168 | json-parse-even-better-errors "^2.3.1" 2169 | loader-runner "^4.2.0" 2170 | mime-types "^2.1.27" 2171 | neo-async "^2.6.2" 2172 | schema-utils "^3.2.0" 2173 | tapable "^2.1.1" 2174 | terser-webpack-plugin "^5.3.7" 2175 | watchpack "^2.4.0" 2176 | webpack-sources "^3.2.3" 2177 | 2178 | whatwg-url@^5.0.0: 2179 | version "5.0.0" 2180 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" 2181 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== 2182 | dependencies: 2183 | tr46 "~0.0.3" 2184 | webidl-conversions "^3.0.0" 2185 | 2186 | which-boxed-primitive@^1.0.2: 2187 | version "1.0.2" 2188 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" 2189 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2190 | dependencies: 2191 | is-bigint "^1.0.1" 2192 | is-boolean-object "^1.1.0" 2193 | is-number-object "^1.0.4" 2194 | is-string "^1.0.5" 2195 | is-symbol "^1.0.3" 2196 | 2197 | which-module@^2.0.0: 2198 | version "2.0.0" 2199 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" 2200 | integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== 2201 | 2202 | which@1.3.1: 2203 | version "1.3.1" 2204 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" 2205 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2206 | dependencies: 2207 | isexe "^2.0.0" 2208 | 2209 | which@^2.0.1: 2210 | version "2.0.2" 2211 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2212 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2213 | dependencies: 2214 | isexe "^2.0.0" 2215 | 2216 | wide-align@1.1.3: 2217 | version "1.1.3" 2218 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz" 2219 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 2220 | dependencies: 2221 | string-width "^1.0.2 || 2" 2222 | 2223 | wildcard@^2.0.0: 2224 | version "2.0.1" 2225 | resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" 2226 | integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== 2227 | 2228 | winston-transport@^4.5.0: 2229 | version "4.5.0" 2230 | resolved "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz" 2231 | integrity sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q== 2232 | dependencies: 2233 | logform "^2.3.2" 2234 | readable-stream "^3.6.0" 2235 | triple-beam "^1.3.0" 2236 | 2237 | winston@^3.3.3: 2238 | version "3.7.2" 2239 | resolved "https://registry.npmjs.org/winston/-/winston-3.7.2.tgz" 2240 | integrity sha512-QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng== 2241 | dependencies: 2242 | "@dabh/diagnostics" "^2.0.2" 2243 | async "^3.2.3" 2244 | is-stream "^2.0.0" 2245 | logform "^2.4.0" 2246 | one-time "^1.0.0" 2247 | readable-stream "^3.4.0" 2248 | safe-stable-stringify "^2.3.1" 2249 | stack-trace "0.0.x" 2250 | triple-beam "^1.3.0" 2251 | winston-transport "^4.5.0" 2252 | 2253 | wrap-ansi@^5.1.0: 2254 | version "5.1.0" 2255 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz" 2256 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== 2257 | dependencies: 2258 | ansi-styles "^3.2.0" 2259 | string-width "^3.0.0" 2260 | strip-ansi "^5.0.0" 2261 | 2262 | wrappy@1: 2263 | version "1.0.2" 2264 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 2265 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2266 | 2267 | ws@^6.1.0: 2268 | version "6.2.2" 2269 | resolved "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz" 2270 | integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== 2271 | dependencies: 2272 | async-limiter "~1.0.0" 2273 | 2274 | xmlcreate@^2.0.4: 2275 | version "2.0.4" 2276 | resolved "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz" 2277 | integrity sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg== 2278 | 2279 | y18n@^4.0.0: 2280 | version "4.0.3" 2281 | resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" 2282 | integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 2283 | 2284 | yargs-parser@13.1.2, yargs-parser@^13.1.2: 2285 | version "13.1.2" 2286 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz" 2287 | integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== 2288 | dependencies: 2289 | camelcase "^5.0.0" 2290 | decamelize "^1.2.0" 2291 | 2292 | yargs-unparser@1.6.0: 2293 | version "1.6.0" 2294 | resolved "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz" 2295 | integrity sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== 2296 | dependencies: 2297 | flat "^4.1.0" 2298 | lodash "^4.17.15" 2299 | yargs "^13.3.0" 2300 | 2301 | yargs@13.3.2, yargs@^13.3.0: 2302 | version "13.3.2" 2303 | resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz" 2304 | integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== 2305 | dependencies: 2306 | cliui "^5.0.0" 2307 | find-up "^3.0.0" 2308 | get-caller-file "^2.0.1" 2309 | require-directory "^2.1.1" 2310 | require-main-filename "^2.0.0" 2311 | set-blocking "^2.0.0" 2312 | string-width "^3.0.0" 2313 | which-module "^2.0.0" 2314 | y18n "^4.0.0" 2315 | yargs-parser "^13.1.2" 2316 | 2317 | yauzl@^2.10.0: 2318 | version "2.10.0" 2319 | resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz" 2320 | integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== 2321 | dependencies: 2322 | buffer-crc32 "~0.2.3" 2323 | fd-slicer "~1.1.0" 2324 | --------------------------------------------------------------------------------