├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dependencies.yml ├── downstream_projects.json ├── getRawComment.ts ├── index.js ├── package.json ├── publish.js ├── test ├── .gitignore ├── banner.js ├── cypress.json ├── cypress │ └── integration │ │ └── example_spec.js ├── package.json ├── src │ ├── dir1 │ │ └── nest1.ts │ ├── external_module.ts │ ├── index.ts │ ├── internal_module.ts │ ├── notspecified.ts │ ├── privateapi.ts │ └── publicapi.ts ├── tsconfig.json └── useTypedocVersion.js ├── tsconfig.json ├── typedoc-plugin-internal-external.ts ├── typedocVersion.ts ├── typedocVersionCompatibility.ts └── yarn.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: 'CI: typedoc-plugin-external-module-name' 2 | 3 | on: [push] 4 | 5 | jobs: 6 | test: 7 | name: Integration Tests 8 | runs-on: ubuntu-latest 9 | strategy: 10 | fail-fast: false 11 | matrix: 12 | typedoc_version: [0.7.2, 0.8.0, 0.9.0, 0.10.0, 0.11.1, 0.12.0, 0.13.0, 0.14.2, 0.15.8, 0.16.7, 0.17.7] 13 | steps: 14 | - uses: actions/checkout@v2 15 | - name: Prepare to Test Downstream Projects 16 | run: | 17 | npm config set scripts-prepend-node-path auto 18 | git config --global user.email gha@github.actions 19 | git config --global user.name gha_github_actions 20 | - name: Install Dependencies 21 | run: yarn install --pure-lockfile 22 | - name: Run Tests 23 | run: yarn test 24 | env: 25 | TYPEDOC_VERSION: ${{ matrix.typedoc_version }} 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.* 2 | *.ipr 3 | *.iws 4 | *.iml 5 | 6 | # Built using tsc 7 | typedoc-plugin-internal-external.js 8 | typedocVersion.js 9 | getRawComment.js 10 | typedocVersionCompatibility.js 11 | 12 | # Logs 13 | logs 14 | *.log 15 | npm-debug.log* 16 | 17 | # Runtime data 18 | pids 19 | *.pid 20 | *.seed 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | lib-cov 24 | 25 | # Coverage directory used by tools like istanbul 26 | coverage 27 | 28 | # nyc test coverage 29 | .nyc_output 30 | 31 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 32 | .grunt 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (http://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules 42 | jspm_packages 43 | 44 | # Optional npm cache directory 45 | .npm 46 | 47 | # Optional REPL history 48 | .node_repl_history 49 | 50 | # Don't ignore .github 51 | !.github 52 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.ipr 2 | *.iws 3 | *.iml 4 | node_modules 5 | typings 6 | typings.json 7 | tsconfig.json 8 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all", 4 | "printWidth": 120 5 | } 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 2.2.0 (2020-06-30) 2 | 3 | [Compare `typedoc-plugin-internal-external` versions 2.1.1 and 2.2.0](https://github.com/christopherthielen/typedoc-plugin-internal-external/compare/2.1.1...2.2.0) 4 | 5 | ### Features 6 | 7 | - Bring in backwards compatibility code from typedoc-plugin-external-module-name ([4452535](https://github.com/christopherthielen/typedoc-plugin-internal-external/commit/4452535)) 8 | 9 | ## 2.1.1 (2020-01-19) 10 | 11 | [Compare `typedoc-plugin-internal-external` versions 2.1.0 and 2.1.1](https://github.com/christopherthielen/typedoc-plugin-internal-external/compare/2.1.0...2.1.1) 12 | 13 | ### Bug Fixes 14 | 15 | - typedoc 0.16 -- read options on EVENT_BEGIN, not initialize() ([0dd4c60](https://github.com/christopherthielen/typedoc-plugin-internal-external/commit/0dd4c60)) 16 | 17 | # 2.1.0 (2020-01-18) 18 | 19 | [Compare `typedoc-plugin-internal-external` versions 2.0.1 and 2.1.0](https://github.com/christopherthielen/typedoc-plugin-internal-external/compare/2.0.1...2.1.0) 20 | 21 | ### Bug Fixes 22 | 23 | - change test suite to start at 0.7.2. ([76053e5](https://github.com/christopherthielen/typedoc-plugin-internal-external/commit/76053e5)) 24 | - compatibility with typedoc 0.16.4 and higher ([0af0dd8](https://github.com/christopherthielen/typedoc-plugin-internal-external/commit/0af0dd8)) 25 | - fix for typedoc 0.16.x Options api ([f05d966](https://github.com/christopherthielen/typedoc-plugin-internal-external/commit/f05d966)) 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Chris Thielen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## typedoc-plugin-internal-external 2 | 3 | ### What 4 | 5 | A plugin for [Typedoc](http://typedoc.org) 6 | 7 | Use an annotation (in a comment) to set code to "Internal" or "External". 8 | 9 | ### Examples 10 | 11 | ``` 12 | /** make this function @internal */ 13 | function internalFunction() { 14 | 15 | } 16 | ``` 17 | 18 | ``` 19 | /** make this class @external */ 20 | class ExternalClass { 21 | 22 | } 23 | ``` 24 | 25 | ``` 26 | /** @external Make all the code in this file (Dynamic Module) external */ 27 | /** A function in the dynamic module */ 28 | function func1() { 29 | } 30 | /** Another function in the dynamic module */ 31 | function func2() { 32 | } 33 | ``` 34 | 35 | 36 | # Why 37 | 38 | Typedoc categorizes your code into "Internal" and "External". 39 | Essentially: 40 | 41 | - Internal: Your own code 42 | - External: Everything else 43 | 44 | When using the default theme, typedoc provides a checkbox to show/hide the generated "External" documentation. 45 | 46 | Typedoc uses the `files: []` array (in `tsconfig.json`) to determine if code is "Internal". 47 | If a file being parsed is in the `files: []` array, then the code in that file is "Internal". 48 | 49 | These annotations allow you to force code to be internal or external. 50 | 51 | ### Installing 52 | 53 | Typedoc 0.4 has the ability to discover and load typedoc plugins found in node_modules. 54 | Simply install the plugin and run typedoc. 55 | 56 | ``` 57 | npm install --save typedoc-plugin-internal-external 58 | typedoc 59 | ``` 60 | 61 | ### Using 62 | 63 | Add `@internal` or `@external` to a comment. 64 | That code's typedoc `Reflection` will have the `isExternal` boolean set accordingly. 65 | 66 | 67 | ```js 68 | /** 69 | * @internal 70 | * This should always appear in the generated documentation 71 | */ 72 | class MyInternalClass { 73 | 74 | } 75 | 76 | /** 77 | * @external 78 | * This should only appear in the generated documentation when "Externals" is checked 79 | */ 80 | class MyExternalClass { 81 | 82 | } 83 | ``` 84 | 85 | 86 | #### Annotation Aliases 87 | 88 | Although the original purpose behind `Externals` was to hide documentation generated for external code, 89 | you can use the show/hide feature of the default theme to hide whatever code you choose, by marking it as `@external`. 90 | For example, you may have an internal API that you don't want shown in your docs by default. 91 | 92 | Because marking "internal API" with "External" is counter-intuitive, you can choose an alias for the `@external` annotation. 93 | 94 | On the typedoc command line, define the aliases: 95 | 96 | ``` 97 | typedoc ....... --internal-aliases internal,publicapi --external-aliases external,internalapi 98 | ``` 99 | 100 | Then you can use those aliases in your comments: 101 | 102 | ``` 103 | /** 104 | * This should always appear in the generated documentation 105 | */ 106 | class PublicClass { 107 | 108 | } 109 | 110 | /** 111 | * @internalapi 112 | * This internal api's `Refletion` has `isExternal === true`, and should 113 | * only appear in the generated documentation when "Externals" is checked 114 | */ 115 | class InternalClass { 116 | 117 | } 118 | ``` 119 | -------------------------------------------------------------------------------- /dependencies.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | dependencies: 3 | - type: js 4 | settings: 5 | commit_message_prefix: "chore(package): " 6 | related_pr_behavior: close 7 | github_labels: 8 | - dependencies 9 | -------------------------------------------------------------------------------- /downstream_projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "test": "./test" 4 | }, 5 | "nohoist": ["**/typedoc-plugin-external-module-name"] 6 | } 7 | -------------------------------------------------------------------------------- /getRawComment.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Monkey patches getJSDocCommentRanges to make `getRawComment` return a 3 | * comment for a module even if there is only one comment 4 | * 5 | * @see https://github.com/christopherthielen/typedoc-plugin-external-module-name/issues/6 6 | * @see https://github.com/TypeStrong/typedoc/blob/master/src/lib/converter/factories/comment.ts 7 | */ 8 | 9 | import * as ts from 'typescript'; 10 | import * as _ts from 'typedoc/dist/lib/ts-internal'; 11 | import { getRawComment as realGetRawComment } from 'typedoc/dist/lib/converter/factories/comment'; 12 | import { isTypedocVersion } from './typedocVersionCompatibility'; 13 | 14 | const useMonkeyPatchedGetRawComment = isTypedocVersion('< 0.16.0'); 15 | 16 | function monkeyPatch() { 17 | const realGetJSDocCommentRanges = (_ts as any).getJSDocCommentRanges; 18 | 19 | function patchedGetJSDocCommentRanges() { 20 | const result = realGetJSDocCommentRanges.apply(this, arguments); 21 | if (result && result.length === 1) { 22 | result.push(null); 23 | } 24 | return result; 25 | } 26 | 27 | const tsinternal = _ts as any; 28 | tsinternal.getJSDocCommentRanges = patchedGetJSDocCommentRanges; 29 | 30 | return function unMonkeyPatch() { 31 | tsinternal.getJSDocCommentRanges = realGetJSDocCommentRanges; 32 | }; 33 | } 34 | const getRawComment = useMonkeyPatchedGetRawComment ? monkeyPatchedGetRawComment : realGetRawComment; 35 | 36 | function monkeyPatchedGetRawComment(node: ts.Node): string { 37 | let unpatch = monkeyPatch(); 38 | try { 39 | return realGetRawComment(node); 40 | } finally { 41 | unpatch(); 42 | } 43 | } 44 | 45 | export { getRawComment }; 46 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var plugin = require('./typedoc-plugin-internal-external'); 2 | module.exports = function (PluginHost) { 3 | var app = PluginHost.owner; 4 | /** 5 | * used like so: 6 | * --external-aliases privateapi,privateAPI,hiddenAPI 7 | * or 8 | * -ea privateapi,privateAPI 9 | */ 10 | app.options.addDeclaration({ name: 'external-aliases', short: 'ea' }); 11 | /** 12 | * used like so: 13 | * --internal-aliases publicapi 14 | * or 15 | * -ia publicapi 16 | */ 17 | app.options.addDeclaration({ name: 'internal-aliases', short: 'ia' }); 18 | app.converter.addComponent('internal-external', plugin.InternalExternalPlugin); 19 | }; 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "typedoc-plugin-internal-external", 3 | "version": "2.2.0", 4 | "description": "Force a File or Reflection (symbol) to be @internal or @external", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "tsc", 8 | "test": "./test/useTypedocVersion.js && ./test/banner.js && test_downstream_projects", 9 | "release": "release", 10 | "prepublishOnly": "npm run build" 11 | }, 12 | "keywords": [ 13 | "typedocplugin", 14 | "typedoc" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/christopherthielen/typedoc-plugin-internal-external" 19 | }, 20 | "author": "Chris Thielen", 21 | "license": "MIT", 22 | "peerDependencies": { 23 | "typedoc": ">=0.7.2 <1.0.0" 24 | }, 25 | "devDependencies": { 26 | "@types/node": "^14.0.5", 27 | "@uirouter/publish-scripts": "^2.3.44", 28 | "husky": "^4.2.5", 29 | "lodash": "^4.17.15", 30 | "prettier": "^2.0.5", 31 | "pretty-quick": "^2.0.1", 32 | "semver": "^7.1.1", 33 | "typedoc": "^0.17.7", 34 | "typescript": ">=3.8.3" 35 | }, 36 | "husky": { 37 | "hooks": { 38 | "pre-commit": "pretty-quick --staged" 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /publish.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var pkg = require('./package.json'); 4 | var ver = pkg.version; 5 | 6 | console.log('Run these commands to publish:\n\n'); 7 | console.log('npm run build && git status\n\n'); 8 | console.log("git commit -m 'publishing " + ver + "' . && git push\n\n"); 9 | console.log('git tag ' + ver + ' && git push origin ' + ver + ' && npm publish\n\n'); 10 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | dist 3 | node_modules 4 | **/.* 5 | cypress/fixtures 6 | cypress/plugins 7 | cypress/screenshots 8 | cypress/support 9 | cypress/videos 10 | -------------------------------------------------------------------------------- /test/banner.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // Updates package.json to use a different version of typedoc 3 | 4 | const fs = require('fs'); 5 | 6 | // find the version(s) of typedoc we're testing against 7 | // check environment variable, script argument, or use latest 8 | process.chdir(__dirname); 9 | const package = JSON.parse(fs.readFileSync('./package.json').toString()); 10 | const version = package.dependencies.typedoc; 11 | console.log('***************************************************************************************************'); 12 | console.log('* *'); 13 | console.log(`*${versionMessage()}*`); 14 | console.log('* *'); 15 | console.log('***************************************************************************************************'); 16 | 17 | function versionMessage() { 18 | let message = `Testing against "typedoc": "${version}"`; 19 | let before = (97 - message.length) / 2; 20 | while (--before >= 0) message = ' ' + message; 21 | while (message.length < 97) message = message + ' '; 22 | return message; 23 | } 24 | -------------------------------------------------------------------------------- /test/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:4000", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /test/cypress/integration/example_spec.js: -------------------------------------------------------------------------------- 1 | const semver = require('semver'); 2 | const typedocVersion = require('typedoc/package.json').version; 3 | const isVersion = (semverRange) => semver.satisfies(typedocVersion, semverRange); 4 | const tsdKindModuleSelector = isVersion('> 0.17.0') ? 'li.tsd-kind-module' : 'li.tsd-kind-external-module'; 5 | 6 | describe('docs', () => { 7 | it('loads', () => { 8 | cy.visit(''); 9 | }); 10 | 11 | it('marks internal_module module as internal', () => { 12 | cy.visit('/'); 13 | cy.get(`nav.tsd-navigation.primary ${tsdKindModuleSelector}:not(.tsd-is-external)`).should((lis) => { 14 | const liText = Array.from(lis).map((li) => li.textContent.trim()); 15 | expect(liText).to.include('"internal_module"'); 16 | }); 17 | }); 18 | 19 | it('marks external_module module as external', () => { 20 | cy.visit('/'); 21 | cy.get(`nav.tsd-navigation.primary ${tsdKindModuleSelector}.tsd-is-external`).should((lis) => { 22 | const liText = Array.from(lis).map((li) => li.textContent.trim()); 23 | expect(liText).to.include('"external_module"'); 24 | }); 25 | }); 26 | 27 | it('marks External class as external', () => { 28 | cy.visit('/'); 29 | cy.get('a').contains('dir1/nest1').click(); 30 | cy.get('.tsd-navigation.secondary a').should((_links) => { 31 | let links = Array.from(_links); 32 | const texts = links.map((x) => x.textContent.trim()); 33 | expect(texts).to.eql(['External', 'Internal']); 34 | }); 35 | cy.get('label').contains('Externals').click(); 36 | cy.get('.tsd-navigation.secondary a:visible').should((_links) => { 37 | let links = Array.from(_links); 38 | const texts = links.map((x) => x.textContent.trim()); 39 | expect(texts).to.eql(['Internal']); 40 | }); 41 | }); 42 | 43 | it('respects command line options for custom internal tags', () => { 44 | cy.visit('/'); 45 | cy.get(`nav.tsd-navigation.primary ${tsdKindModuleSelector}:not(.tsd-is-external)`).should((lis) => { 46 | const liText = Array.from(lis).map((li) => li.textContent.trim()); 47 | expect(liText).to.include('"publicapi"'); 48 | }); 49 | }); 50 | 51 | it('respects command line options for custom external tags', () => { 52 | cy.visit('/'); 53 | cy.get(`nav.tsd-navigation.primary ${tsdKindModuleSelector}.tsd-is-external`).should((lis) => { 54 | const liText = Array.from(lis).map((li) => li.textContent.trim()); 55 | expect(liText).to.include('"privateapi"'); 56 | }); 57 | }); 58 | }); 59 | -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "internal-external-typedoc-latest", 3 | "version": "1.0.0", 4 | "description": "Test against typedoc latest", 5 | "main": "index.js", 6 | "scripts": { 7 | "clean": "npx rimraf dist node_modules cypress/fixtures cypress/plugins cypress/screenshots cypress/support .DS_Store yarn.lock", 8 | "build": "typedoc --internal-aliases internal,publicapi --external-aliases external,privateapi --out dist src/index.ts", 9 | "test": " npm run build && npm run e2e", 10 | "e2e": "cypress-runner run --nospa --path dist", 11 | "open": "cypress-runner open --nospa --path dist" 12 | }, 13 | "author": "Chris Thielen", 14 | "license": "MIT", 15 | "dependencies": { 16 | "@uirouter/cypress-runner": "latest", 17 | "semver": "^7.3.2", 18 | "typedoc": "latest", 19 | "typedoc-plugin-internal-external": "latest" 20 | }, 21 | "resolutions": { 22 | "handlebars": "4.5.0" 23 | } 24 | } -------------------------------------------------------------------------------- /test/src/dir1/nest1.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * a class 3 | * @internal 4 | */ 5 | export class Internal {} 6 | 7 | /** 8 | * a class 9 | * @external 10 | */ 11 | export class External {} 12 | -------------------------------------------------------------------------------- /test/src/external_module.ts: -------------------------------------------------------------------------------- 1 | /** @external */ 2 | 3 | /** class in external module */ 4 | export class External { 5 | public one = 1; 6 | } 7 | -------------------------------------------------------------------------------- /test/src/index.ts: -------------------------------------------------------------------------------- 1 | /** @internal */ 2 | import './dir1/nest1'; 3 | import './external_module'; 4 | import './internal_module'; 5 | import './publicapi'; 6 | import './privateapi'; 7 | import './notspecified'; 8 | 9 | // export anything so typedoc >=0.16 will generate a module doc 10 | export const str = 'string literal'; 11 | -------------------------------------------------------------------------------- /test/src/internal_module.ts: -------------------------------------------------------------------------------- 1 | /** @internal */ 2 | 3 | /** class in internal module */ 4 | export class Internal { 5 | public two = 2; 6 | } 7 | -------------------------------------------------------------------------------- /test/src/notspecified.ts: -------------------------------------------------------------------------------- 1 | /** not specified */ 2 | export class Notspecified {} 3 | -------------------------------------------------------------------------------- /test/src/privateapi.ts: -------------------------------------------------------------------------------- 1 | /** @privateapi a private module */ 2 | /** a private class */ 3 | export class PrivateClass {} 4 | -------------------------------------------------------------------------------- /test/src/publicapi.ts: -------------------------------------------------------------------------------- 1 | /** @publicapi a public module */ 2 | /** a public class */ 3 | export class PublicClass {} 4 | -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "moduleResolution": "node", 4 | "module": "commonjs", 5 | "lib": ["es6", "dom"], 6 | "noImplicitAny": true, 7 | "skipLibCheck": true, 8 | "noEmit": true, 9 | "target": "es5", 10 | "typeRoots": ["typings"] 11 | }, 12 | "files": ["src/index.ts"] 13 | } 14 | -------------------------------------------------------------------------------- /test/useTypedocVersion.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // Updates package.json to use a different version of typedoc 3 | 4 | const fs = require('fs'); 5 | 6 | // find the version(s) of typedoc we're testing against 7 | // check environment variable, script argument, or use latest 8 | process.chdir(__dirname); 9 | const version = process.env.TYPEDOC_VERSION || process.argv[2] || 'latest'; 10 | const testPackageJson = JSON.parse(fs.readFileSync('./package.json').toString()); 11 | testPackageJson.dependencies.typedoc = version; 12 | fs.writeFileSync('./package.json', JSON.stringify(testPackageJson, null, 2)); 13 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "moduleResolution": "node", 4 | "allowJs": true, 5 | "module": "umd", 6 | "target": "es2015", 7 | "outDir": "./", 8 | "experimentalDecorators": true 9 | }, 10 | "files": ["typedoc-plugin-internal-external.ts"], 11 | "exclude": ["node_module"] 12 | } 13 | -------------------------------------------------------------------------------- /typedoc-plugin-internal-external.ts: -------------------------------------------------------------------------------- 1 | import { Component, ConverterComponent } from 'typedoc/dist/lib/converter/components'; 2 | import { Context } from 'typedoc/dist/lib/converter/context'; 3 | import { Converter } from 'typedoc/dist/lib/converter/converter'; 4 | import { ReflectionKind } from 'typedoc/dist/lib/models/reflections'; 5 | import { Reflection, ReflectionFlag, ReflectionFlags } from 'typedoc/dist/lib/models/reflections/abstract'; 6 | import { getRawComment } from './getRawComment'; 7 | import { removeTags } from './typedocVersionCompatibility'; 8 | 9 | function setExternal(flags: ReflectionFlags, isExternal: boolean) { 10 | if (typeof flags.setFlag === 'function') { 11 | flags.setFlag(ReflectionFlag.External, isExternal); 12 | } else { 13 | // probably not needed, but won't hurt 14 | (flags as any).isExternal = isExternal; 15 | } 16 | } 17 | 18 | /** 19 | * This plugin allows you to specify if a symbol is internal or external. 20 | * 21 | * Add @internal or @external to the docs for a symbol. 22 | * 23 | * #### Example: 24 | * ``` 25 | * /** 26 | * * @internal 27 | * */ 28 | * let foo = "123 29 | * 30 | * /** 31 | * * @external 32 | * */ 33 | * let bar = "123 34 | * ``` 35 | */ 36 | @Component({ name: 'internal-external' }) 37 | export class InternalExternalPlugin extends ConverterComponent { 38 | externals: string[]; 39 | internals: string[]; 40 | 41 | externalRegex: RegExp; 42 | internalRegex: RegExp; 43 | 44 | initialize() { 45 | this.listenTo(this.owner, { 46 | [Converter.EVENT_BEGIN]: this.readOptions, 47 | [Converter.EVENT_CREATE_SIGNATURE]: this.onSignature, 48 | [Converter.EVENT_CREATE_DECLARATION]: this.onDeclaration, 49 | [Converter.EVENT_FILE_BEGIN]: this.onFileBegin, 50 | }); 51 | } 52 | 53 | private static markSignatureAndMethod(reflection: Reflection, external: boolean) { 54 | setExternal(reflection.flags, external); 55 | // if (reflection.parent && (reflection.parent.kind === ReflectionKind.Method || reflection.parent.kind === ReflectionKind.Function) { 56 | if (reflection.parent && reflection.parent.kind & ReflectionKind.FunctionOrMethod) { 57 | setExternal(reflection.parent.flags, external); 58 | } 59 | } 60 | 61 | private readOptions() { 62 | const { options } = this.application; 63 | 64 | this.externals = ((options.getValue('external-aliases') as string) || 'external').split(','); 65 | this.internals = ((options.getValue('internal-aliases') as string) || 'internal').split(','); 66 | 67 | this.externalRegex = new RegExp(`@(${this.externals.join('|')})\\b`); 68 | this.internalRegex = new RegExp(`@(${this.internals.join('|')})\\b`); 69 | } 70 | 71 | /** 72 | * Triggered when the converter has created a declaration reflection. 73 | * 74 | * @param context The context object describing the current state the converter is in. 75 | * @param reflection The reflection that is currently processed. 76 | * @param node The node that is currently processed if available. 77 | */ 78 | private onSignature(context: Context, reflection: Reflection, node?) { 79 | if (!reflection.comment) return; 80 | 81 | // Look for @internal or @external 82 | let comment = reflection.comment; 83 | 84 | if (this.internals.some((tag) => comment.hasTag(tag))) { 85 | InternalExternalPlugin.markSignatureAndMethod(reflection, false); 86 | } else if (this.externals.some((tag) => comment.hasTag(tag))) { 87 | InternalExternalPlugin.markSignatureAndMethod(reflection, true); 88 | } 89 | 90 | this.internals.forEach((tag) => removeTags(comment, tag)); 91 | this.externals.forEach((tag) => removeTags(comment, tag)); 92 | } 93 | 94 | /** 95 | * Triggered when the converter has created a declaration reflection. 96 | * 97 | * @param context The context object describing the current state the converter is in. 98 | * @param reflection The reflection that is currently processed. 99 | * @param node The node that is currently processed if available. 100 | */ 101 | private onDeclaration(context: Context, reflection: Reflection, node?) { 102 | if (!reflection.comment) return; 103 | 104 | // Look for @internal or @external 105 | let comment = reflection.comment; 106 | 107 | if (this.internals.some((tag) => comment.hasTag(tag))) { 108 | setExternal(reflection.flags, false); 109 | } else if (this.externals.some((tag) => comment.hasTag(tag))) { 110 | setExternal(reflection.flags, true); 111 | } 112 | 113 | this.internals.forEach((tag) => removeTags(comment, tag)); 114 | this.externals.forEach((tag) => removeTags(comment, tag)); 115 | } 116 | 117 | /** 118 | * Triggered when the converter has started loading a file. 119 | * 120 | * This sets the file's context `isExternal` value if an annotation is found. 121 | * All symbols inside the file default to the file's `isExternal` value. 122 | * 123 | * The onFileBegin event is used because once the Declaration (which represents 124 | * the file) has been created, it's too late to update the context. 125 | * The declaration will also be processed during `onDeclaration` where the tags 126 | * will be removed from the comment. 127 | * 128 | * @param context The context object describing the current state the converter is in. 129 | * @param reflection The reflection that is currently processed. 130 | * @param node The node that is currently processed if available. 131 | */ 132 | private onFileBegin(context: Context, reflection: Reflection, node?) { 133 | if (!node) return; 134 | 135 | // Look for @internal or @external 136 | let comment = getRawComment(node); 137 | let internalMatch = this.internalRegex.exec(comment); 138 | let externalMatch = this.externalRegex.exec(comment); 139 | 140 | if (internalMatch) { 141 | context.isExternal = false; 142 | } else if (externalMatch) { 143 | context.isExternal = true; 144 | } 145 | } 146 | } 147 | -------------------------------------------------------------------------------- /typedocVersion.ts: -------------------------------------------------------------------------------- 1 | import { memoize } from 'lodash'; 2 | import { satisfies } from 'semver'; 3 | 4 | const typedocVersion = require('typedoc/package.json').version; 5 | 6 | function checkTypedocVersion(semverString: string) { 7 | return satisfies(typedocVersion, semverString); 8 | } 9 | 10 | export const isTypedocVersion = memoize(checkTypedocVersion); 11 | -------------------------------------------------------------------------------- /typedocVersionCompatibility.ts: -------------------------------------------------------------------------------- 1 | import * as ts from 'typescript'; 2 | import { Context } from 'typedoc/dist/lib/converter/context'; 3 | import { CommentPlugin } from 'typedoc/dist/lib/converter/plugins'; 4 | import { Comment, ProjectReflection } from 'typedoc/dist/lib/models'; 5 | import { memoize } from 'lodash'; 6 | import { satisfies } from 'semver'; 7 | import { Reflection } from 'typedoc/dist/lib/models/reflections'; 8 | import { ReflectionKind } from 'typedoc/dist/lib/models/reflections/abstract'; 9 | import { DeclarationReflection } from 'typedoc/dist/lib/models/reflections/declaration'; 10 | 11 | declare var require; 12 | const typedocVersion = require('typedoc/package.json').version; 13 | 14 | function checkTypedocVersion(semverString: string) { 15 | return satisfies(typedocVersion, semverString); 16 | } 17 | 18 | export const isTypedocVersion = memoize(checkTypedocVersion); 19 | 20 | export function removeTags(comment: Comment, tag: string) { 21 | if (isTypedocVersion('< 0.17.0')) { 22 | return CommentPlugin.removeTags(comment, tag); 23 | } else { 24 | comment.removeTags(tag); 25 | } 26 | } 27 | 28 | export function removeReflection(project: ProjectReflection, reflection: Reflection) { 29 | if (isTypedocVersion('< 0.17.0')) { 30 | CommentPlugin.removeReflection(project, reflection); 31 | } else { 32 | project.removeReflection(reflection, true); 33 | } 34 | 35 | if (isTypedocVersion('>=0.16.0')) { 36 | delete project.reflections[reflection.id]; 37 | } 38 | } 39 | 40 | export function createChildReflection(parent: Reflection, name: string) { 41 | if (isTypedocVersion('< 0.14.0')) { 42 | return new (DeclarationReflection as any)(parent, name, ReflectionKind.Module); 43 | } else { 44 | return new DeclarationReflection(name, ReflectionKind.Module, parent); 45 | } 46 | } 47 | 48 | /** 49 | * When we delete reflections, update the symbol mapping in order to fix: 50 | * https://github.com/christopherthielen/typedoc-plugin-external-module-name/issues/313 51 | * https://github.com/christopherthielen/typedoc-plugin-external-module-name/issues/193 52 | */ 53 | export function updateSymbolMapping(context: Context, symbol: ts.Symbol, reflection: Reflection) { 54 | if (!symbol) { 55 | return; 56 | } 57 | 58 | if (isTypedocVersion('< 0.16.0')) { 59 | // (context as any).registerReflection(reflection, null, symbol); 60 | (context.project as any).symbolMapping[(symbol as any).id] = reflection.id; 61 | } else { 62 | // context.registerReflection(reflection, symbol); 63 | const fqn = context.checker.getFullyQualifiedName(symbol); 64 | (context.project as any).fqnToReflectionIdMap.set(fqn, reflection.id); 65 | } 66 | } 67 | 68 | export function isModuleOrNamespace(reflection: Reflection) { 69 | if (isTypedocVersion('< 0.17.0')) { 70 | return reflection.kindOf((ReflectionKind as any).ExternalModule) || reflection.kindOf(ReflectionKind.Module); 71 | } else { 72 | return reflection.kindOf(ReflectionKind.Module) || reflection.kindOf(ReflectionKind.Namespace); 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.8.3" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 8 | integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 9 | dependencies: 10 | "@babel/highlight" "^7.8.3" 11 | 12 | "@babel/helper-validator-identifier@^7.9.0": 13 | version "7.9.5" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" 15 | integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== 16 | 17 | "@babel/highlight@^7.8.3": 18 | version "7.9.0" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" 20 | integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.9.0" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@types/color-name@^1.1.1": 27 | version "1.1.1" 28 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 29 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 30 | 31 | "@types/minimatch@^3.0.3": 32 | version "3.0.3" 33 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 34 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 35 | 36 | "@types/minimist@^1.2.0": 37 | version "1.2.0" 38 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6" 39 | integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY= 40 | 41 | "@types/node@^14.0.5": 42 | version "14.14.41" 43 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.41.tgz#d0b939d94c1d7bd53d04824af45f1139b8c45615" 44 | integrity sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g== 45 | 46 | "@types/normalize-package-data@^2.4.0": 47 | version "2.4.0" 48 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 49 | integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 50 | 51 | "@types/parse-json@^4.0.0": 52 | version "4.0.0" 53 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 54 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 55 | 56 | "@uirouter/publish-scripts@^2.3.44": 57 | version "2.5.5" 58 | resolved "https://registry.yarnpkg.com/@uirouter/publish-scripts/-/publish-scripts-2.5.5.tgz#1b0d074db08a8ec5e72e4ab54a004ad2e4b4932a" 59 | integrity sha512-oaWhj7NAHJxuHxRs3JLZe3a88VhppxpIjl/lPexaDwAm/OSQjTBj81cUYXwBOXeow/Ucqc9lrFKTocVvoooCQA== 60 | dependencies: 61 | check-peer-dependencies "^4.0.0" 62 | conventional-changelog "^3.1.24" 63 | conventional-changelog-ui-router-core "^1.4.2" 64 | find-parent-dir "^0.3.0" 65 | git-semver-tags "^4.1.1" 66 | lodash "^4.17.20" 67 | node-cleanup "^2.1.2" 68 | npm-run-all "^4.1.5" 69 | open "^7.3.0" 70 | readline-sync "^1.4.10" 71 | shelljs "^0.8.4" 72 | shx "^0.3.3" 73 | tmp "^0.2.1" 74 | tweak-sourcemap-paths "0.0.4" 75 | yalc "^1.0.0-pre.49" 76 | yargs "^16.2.0" 77 | 78 | JSONStream@^1.0.4: 79 | version "1.3.5" 80 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 81 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 82 | dependencies: 83 | jsonparse "^1.2.0" 84 | through ">=2.2.7 <3" 85 | 86 | add-stream@^1.0.0: 87 | version "1.0.0" 88 | resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 89 | integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= 90 | 91 | ansi-regex@^5.0.0: 92 | version "5.0.0" 93 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 94 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 95 | 96 | ansi-styles@^3.2.1: 97 | version "3.2.1" 98 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 99 | dependencies: 100 | color-convert "^1.9.0" 101 | 102 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 103 | version "4.2.1" 104 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 105 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 106 | dependencies: 107 | "@types/color-name" "^1.1.1" 108 | color-convert "^2.0.1" 109 | 110 | array-differ@^3.0.0: 111 | version "3.0.0" 112 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" 113 | integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== 114 | 115 | array-find-index@^1.0.1: 116 | version "1.0.2" 117 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 118 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 119 | 120 | array-ify@^1.0.0: 121 | version "1.0.0" 122 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 123 | integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= 124 | 125 | array-union@^2.1.0: 126 | version "2.1.0" 127 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 128 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 129 | 130 | arrify@^1.0.1: 131 | version "1.0.1" 132 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 133 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 134 | 135 | arrify@^2.0.1: 136 | version "2.0.1" 137 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" 138 | integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== 139 | 140 | balanced-match@^1.0.0: 141 | version "1.0.0" 142 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 143 | 144 | brace-expansion@^1.1.7: 145 | version "1.1.11" 146 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 147 | dependencies: 148 | balanced-match "^1.0.0" 149 | concat-map "0.0.1" 150 | 151 | builtin-modules@^1.0.0: 152 | version "1.1.1" 153 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 154 | integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= 155 | 156 | callsites@^3.0.0: 157 | version "3.1.0" 158 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 159 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 160 | 161 | camelcase-keys@^2.0.0: 162 | version "2.1.0" 163 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 164 | integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= 165 | dependencies: 166 | camelcase "^2.0.0" 167 | map-obj "^1.0.0" 168 | 169 | camelcase-keys@^4.0.0: 170 | version "4.2.0" 171 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 172 | integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= 173 | dependencies: 174 | camelcase "^4.1.0" 175 | map-obj "^2.0.0" 176 | quick-lru "^1.0.0" 177 | 178 | camelcase-keys@^6.2.2: 179 | version "6.2.2" 180 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" 181 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 182 | dependencies: 183 | camelcase "^5.3.1" 184 | map-obj "^4.0.0" 185 | quick-lru "^4.0.1" 186 | 187 | camelcase@^2.0.0: 188 | version "2.1.1" 189 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 190 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= 191 | 192 | camelcase@^4.1.0: 193 | version "4.1.0" 194 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 195 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 196 | 197 | camelcase@^5.0.0, camelcase@^5.3.1: 198 | version "5.3.1" 199 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 200 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 201 | 202 | chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 203 | version "2.4.2" 204 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 205 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 206 | dependencies: 207 | ansi-styles "^3.2.1" 208 | escape-string-regexp "^1.0.5" 209 | supports-color "^5.3.0" 210 | 211 | chalk@^4.0.0, chalk@^4.1.0: 212 | version "4.1.0" 213 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 214 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 215 | dependencies: 216 | ansi-styles "^4.1.0" 217 | supports-color "^7.1.0" 218 | 219 | check-peer-dependencies@^4.0.0: 220 | version "4.0.0" 221 | resolved "https://registry.yarnpkg.com/check-peer-dependencies/-/check-peer-dependencies-4.0.0.tgz#075253764a850b1af3a14beec67dd1f653dcae62" 222 | integrity sha512-AVYu8OKy54mp+KCvyzP0ag4erPH8w78TUXiWu++4i8vqM8Iunqn+j0IfLtyQIjEW5OoNErxuvsoa13kW8FjtxA== 223 | dependencies: 224 | resolve "^1.19.0" 225 | semver "^7.3.4" 226 | shelljs "^0.8.4" 227 | yargs "^16.2.0" 228 | 229 | ci-info@^2.0.0: 230 | version "2.0.0" 231 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 232 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 233 | 234 | cliui@^6.0.0: 235 | version "6.0.0" 236 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 237 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 238 | dependencies: 239 | string-width "^4.2.0" 240 | strip-ansi "^6.0.0" 241 | wrap-ansi "^6.2.0" 242 | 243 | cliui@^7.0.2: 244 | version "7.0.4" 245 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 246 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 247 | dependencies: 248 | string-width "^4.2.0" 249 | strip-ansi "^6.0.0" 250 | wrap-ansi "^7.0.0" 251 | 252 | color-convert@^1.9.0: 253 | version "1.9.1" 254 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 255 | dependencies: 256 | color-name "^1.1.1" 257 | 258 | color-convert@^2.0.1: 259 | version "2.0.1" 260 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 261 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 262 | dependencies: 263 | color-name "~1.1.4" 264 | 265 | color-name@^1.1.1: 266 | version "1.1.3" 267 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 268 | 269 | color-name@~1.1.4: 270 | version "1.1.4" 271 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 272 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 273 | 274 | compare-func@^1.3.1: 275 | version "1.3.2" 276 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 277 | integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg= 278 | dependencies: 279 | array-ify "^1.0.0" 280 | dot-prop "^3.0.0" 281 | 282 | compare-func@^2.0.0: 283 | version "2.0.0" 284 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" 285 | integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== 286 | dependencies: 287 | array-ify "^1.0.0" 288 | dot-prop "^5.1.0" 289 | 290 | compare-versions@^3.6.0: 291 | version "3.6.0" 292 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" 293 | integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== 294 | 295 | concat-map@0.0.1: 296 | version "0.0.1" 297 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 298 | 299 | conventional-changelog-angular@^5.0.12: 300 | version "5.0.12" 301 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9" 302 | integrity sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw== 303 | dependencies: 304 | compare-func "^2.0.0" 305 | q "^1.5.1" 306 | 307 | conventional-changelog-atom@^2.0.8: 308 | version "2.0.8" 309 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" 310 | integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== 311 | dependencies: 312 | q "^1.5.1" 313 | 314 | conventional-changelog-codemirror@^2.0.8: 315 | version "2.0.8" 316 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" 317 | integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== 318 | dependencies: 319 | q "^1.5.1" 320 | 321 | conventional-changelog-conventionalcommits@^4.5.0: 322 | version "4.5.0" 323 | resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.5.0.tgz#a02e0b06d11d342fdc0f00c91d78265ed0bc0a62" 324 | integrity sha512-buge9xDvjjOxJlyxUnar/+6i/aVEVGA7EEh4OafBCXPlLUQPGbRUBhBUveWRxzvR8TEjhKEP4BdepnpG2FSZXw== 325 | dependencies: 326 | compare-func "^2.0.0" 327 | lodash "^4.17.15" 328 | q "^1.5.1" 329 | 330 | conventional-changelog-core@^4.2.1: 331 | version "4.2.1" 332 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.1.tgz#f811ad98ab2ff080becafc61407509420c9b447d" 333 | integrity sha512-8cH8/DEoD3e5Q6aeogdR5oaaKs0+mG6+f+Om0ZYt3PNv7Zo0sQhu4bMDRsqAF+UTekTAtP1W/C41jH/fkm8Jtw== 334 | dependencies: 335 | add-stream "^1.0.0" 336 | conventional-changelog-writer "^4.0.18" 337 | conventional-commits-parser "^3.2.0" 338 | dateformat "^3.0.0" 339 | get-pkg-repo "^1.0.0" 340 | git-raw-commits "2.0.0" 341 | git-remote-origin-url "^2.0.0" 342 | git-semver-tags "^4.1.1" 343 | lodash "^4.17.15" 344 | normalize-package-data "^3.0.0" 345 | q "^1.5.1" 346 | read-pkg "^3.0.0" 347 | read-pkg-up "^3.0.0" 348 | shelljs "^0.8.3" 349 | through2 "^4.0.0" 350 | 351 | conventional-changelog-ember@^2.0.9: 352 | version "2.0.9" 353 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" 354 | integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== 355 | dependencies: 356 | q "^1.5.1" 357 | 358 | conventional-changelog-eslint@^3.0.9: 359 | version "3.0.9" 360 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" 361 | integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== 362 | dependencies: 363 | q "^1.5.1" 364 | 365 | conventional-changelog-express@^2.0.6: 366 | version "2.0.6" 367 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" 368 | integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== 369 | dependencies: 370 | q "^1.5.1" 371 | 372 | conventional-changelog-jquery@^3.0.11: 373 | version "3.0.11" 374 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" 375 | integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== 376 | dependencies: 377 | q "^1.5.1" 378 | 379 | conventional-changelog-jshint@^2.0.9: 380 | version "2.0.9" 381 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" 382 | integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== 383 | dependencies: 384 | compare-func "^2.0.0" 385 | q "^1.5.1" 386 | 387 | conventional-changelog-preset-loader@^2.3.4: 388 | version "2.3.4" 389 | resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" 390 | integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== 391 | 392 | conventional-changelog-ui-router-core@^1.4.2: 393 | version "1.4.2" 394 | resolved "https://registry.yarnpkg.com/conventional-changelog-ui-router-core/-/conventional-changelog-ui-router-core-1.4.2.tgz#56d5787163f883e25d3e1f573aef563f85411df7" 395 | integrity sha512-PPgNa8r+FBvC8kCnD4fhHJtJSUZozZstnIgeyrZbe9F4aZuDheR6q3rUUoZwpFdYuCctH4yiDaX62JmNSo1RdA== 396 | dependencies: 397 | compare-func "^1.3.1" 398 | github-url-from-git "^1.4.0" 399 | q "^1.4.1" 400 | 401 | conventional-changelog-writer@^4.0.18: 402 | version "4.0.18" 403 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.18.tgz#10b73baa59c7befc69b360562f8b9cd19e63daf8" 404 | integrity sha512-mAQDCKyB9HsE8Ko5cCM1Jn1AWxXPYV0v8dFPabZRkvsiWUul2YyAqbIaoMKF88Zf2ffnOPSvKhboLf3fnjo5/A== 405 | dependencies: 406 | compare-func "^2.0.0" 407 | conventional-commits-filter "^2.0.7" 408 | dateformat "^3.0.0" 409 | handlebars "^4.7.6" 410 | json-stringify-safe "^5.0.1" 411 | lodash "^4.17.15" 412 | meow "^8.0.0" 413 | semver "^6.0.0" 414 | split "^1.0.0" 415 | through2 "^4.0.0" 416 | 417 | conventional-changelog@^3.1.24: 418 | version "3.1.24" 419 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.24.tgz#ebd180b0fd1b2e1f0095c4b04fd088698348a464" 420 | integrity sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg== 421 | dependencies: 422 | conventional-changelog-angular "^5.0.12" 423 | conventional-changelog-atom "^2.0.8" 424 | conventional-changelog-codemirror "^2.0.8" 425 | conventional-changelog-conventionalcommits "^4.5.0" 426 | conventional-changelog-core "^4.2.1" 427 | conventional-changelog-ember "^2.0.9" 428 | conventional-changelog-eslint "^3.0.9" 429 | conventional-changelog-express "^2.0.6" 430 | conventional-changelog-jquery "^3.0.11" 431 | conventional-changelog-jshint "^2.0.9" 432 | conventional-changelog-preset-loader "^2.3.4" 433 | 434 | conventional-commits-filter@^2.0.7: 435 | version "2.0.7" 436 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" 437 | integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== 438 | dependencies: 439 | lodash.ismatch "^4.4.0" 440 | modify-values "^1.0.0" 441 | 442 | conventional-commits-parser@^3.2.0: 443 | version "3.2.0" 444 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz#9e261b139ca4b7b29bcebbc54460da36894004ca" 445 | integrity sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ== 446 | dependencies: 447 | JSONStream "^1.0.4" 448 | is-text-path "^1.0.1" 449 | lodash "^4.17.15" 450 | meow "^8.0.0" 451 | split2 "^2.0.0" 452 | through2 "^4.0.0" 453 | trim-off-newlines "^1.0.0" 454 | 455 | core-util-is@~1.0.0: 456 | version "1.0.2" 457 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 458 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 459 | 460 | cosmiconfig@^7.0.0: 461 | version "7.0.0" 462 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" 463 | integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== 464 | dependencies: 465 | "@types/parse-json" "^4.0.0" 466 | import-fresh "^3.2.1" 467 | parse-json "^5.0.0" 468 | path-type "^4.0.0" 469 | yaml "^1.10.0" 470 | 471 | cross-spawn@^6.0.5: 472 | version "6.0.5" 473 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 474 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 475 | dependencies: 476 | nice-try "^1.0.4" 477 | path-key "^2.0.1" 478 | semver "^5.5.0" 479 | shebang-command "^1.2.0" 480 | which "^1.2.9" 481 | 482 | cross-spawn@^7.0.0: 483 | version "7.0.3" 484 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 485 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 486 | dependencies: 487 | path-key "^3.1.0" 488 | shebang-command "^2.0.0" 489 | which "^2.0.1" 490 | 491 | currently-unhandled@^0.4.1: 492 | version "0.4.1" 493 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 494 | integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= 495 | dependencies: 496 | array-find-index "^1.0.1" 497 | 498 | dargs@^4.0.1: 499 | version "4.1.0" 500 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 501 | integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc= 502 | dependencies: 503 | number-is-nan "^1.0.0" 504 | 505 | dateformat@^3.0.0: 506 | version "3.0.3" 507 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 508 | integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== 509 | 510 | decamelize-keys@^1.0.0, decamelize-keys@^1.1.0: 511 | version "1.1.0" 512 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 513 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 514 | dependencies: 515 | decamelize "^1.1.0" 516 | map-obj "^1.0.0" 517 | 518 | decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: 519 | version "1.2.0" 520 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 521 | 522 | define-properties@^1.1.2, define-properties@^1.1.3: 523 | version "1.1.3" 524 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 525 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 526 | dependencies: 527 | object-keys "^1.0.12" 528 | 529 | detect-indent@^6.0.0: 530 | version "6.0.0" 531 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" 532 | integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== 533 | 534 | dot-prop@^3.0.0: 535 | version "3.0.0" 536 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 537 | integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc= 538 | dependencies: 539 | is-obj "^1.0.0" 540 | 541 | dot-prop@^5.1.0: 542 | version "5.3.0" 543 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 544 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 545 | dependencies: 546 | is-obj "^2.0.0" 547 | 548 | emoji-regex@^8.0.0: 549 | version "8.0.0" 550 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 551 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 552 | 553 | end-of-stream@^1.1.0: 554 | version "1.4.1" 555 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 556 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 557 | dependencies: 558 | once "^1.4.0" 559 | 560 | error-ex@^1.2.0, error-ex@^1.3.1: 561 | version "1.3.2" 562 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 563 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 564 | dependencies: 565 | is-arrayish "^0.2.1" 566 | 567 | es-abstract@^1.17.0-next.1: 568 | version "1.17.2" 569 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.2.tgz#965b10af56597b631da15872c17a405e86c1fd46" 570 | integrity sha512-YoKuru3Lyoy7yVTBSH2j7UxTqe/je3dWAruC0sHvZX1GNd5zX8SSLvQqEgO9b3Ex8IW+goFI9arEEsFIbulhOw== 571 | dependencies: 572 | es-to-primitive "^1.2.1" 573 | function-bind "^1.1.1" 574 | has "^1.0.3" 575 | has-symbols "^1.0.1" 576 | is-callable "^1.1.5" 577 | is-regex "^1.0.5" 578 | object-inspect "^1.7.0" 579 | object-keys "^1.1.1" 580 | object.assign "^4.1.0" 581 | string.prototype.trimleft "^2.1.1" 582 | string.prototype.trimright "^2.1.1" 583 | 584 | es-to-primitive@^1.2.1: 585 | version "1.2.1" 586 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 587 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 588 | dependencies: 589 | is-callable "^1.1.4" 590 | is-date-object "^1.0.1" 591 | is-symbol "^1.0.2" 592 | 593 | escalade@^3.1.1: 594 | version "3.1.1" 595 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 596 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 597 | 598 | escape-string-regexp@^1.0.5: 599 | version "1.0.5" 600 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 601 | 602 | execa@^2.1.0: 603 | version "2.1.0" 604 | resolved "https://registry.yarnpkg.com/execa/-/execa-2.1.0.tgz#e5d3ecd837d2a60ec50f3da78fd39767747bbe99" 605 | integrity sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== 606 | dependencies: 607 | cross-spawn "^7.0.0" 608 | get-stream "^5.0.0" 609 | is-stream "^2.0.0" 610 | merge-stream "^2.0.0" 611 | npm-run-path "^3.0.0" 612 | onetime "^5.1.0" 613 | p-finally "^2.0.0" 614 | signal-exit "^3.0.2" 615 | strip-final-newline "^2.0.0" 616 | 617 | find-parent-dir@^0.3.0: 618 | version "0.3.0" 619 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 620 | integrity sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ= 621 | 622 | find-up@^1.0.0: 623 | version "1.1.2" 624 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 625 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 626 | dependencies: 627 | path-exists "^2.0.0" 628 | pinkie-promise "^2.0.0" 629 | 630 | find-up@^2.0.0: 631 | version "2.1.0" 632 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 633 | dependencies: 634 | locate-path "^2.0.0" 635 | 636 | find-up@^4.1.0: 637 | version "4.1.0" 638 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 639 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 640 | dependencies: 641 | locate-path "^5.0.0" 642 | path-exists "^4.0.0" 643 | 644 | find-up@^5.0.0: 645 | version "5.0.0" 646 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 647 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 648 | dependencies: 649 | locate-path "^6.0.0" 650 | path-exists "^4.0.0" 651 | 652 | find-versions@^4.0.0: 653 | version "4.0.0" 654 | resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-4.0.0.tgz#3c57e573bf97769b8cb8df16934b627915da4965" 655 | integrity sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ== 656 | dependencies: 657 | semver-regex "^3.1.2" 658 | 659 | fs-extra@^8.0.1, fs-extra@^8.1.0: 660 | version "8.1.0" 661 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 662 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 663 | dependencies: 664 | graceful-fs "^4.2.0" 665 | jsonfile "^4.0.0" 666 | universalify "^0.1.0" 667 | 668 | fs.realpath@^1.0.0: 669 | version "1.0.0" 670 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 671 | 672 | function-bind@^1.1.1: 673 | version "1.1.1" 674 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 675 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 676 | 677 | get-caller-file@^2.0.1, get-caller-file@^2.0.5: 678 | version "2.0.5" 679 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 680 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 681 | 682 | get-pkg-repo@^1.0.0: 683 | version "1.4.0" 684 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 685 | integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0= 686 | dependencies: 687 | hosted-git-info "^2.1.4" 688 | meow "^3.3.0" 689 | normalize-package-data "^2.3.0" 690 | parse-github-repo-url "^1.3.0" 691 | through2 "^2.0.0" 692 | 693 | get-stdin@^4.0.1: 694 | version "4.0.1" 695 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 696 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= 697 | 698 | get-stream@^5.0.0: 699 | version "5.1.0" 700 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" 701 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== 702 | dependencies: 703 | pump "^3.0.0" 704 | 705 | git-raw-commits@2.0.0: 706 | version "2.0.0" 707 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.0.tgz#d92addf74440c14bcc5c83ecce3fb7f8a79118b5" 708 | integrity sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg== 709 | dependencies: 710 | dargs "^4.0.1" 711 | lodash.template "^4.0.2" 712 | meow "^4.0.0" 713 | split2 "^2.0.0" 714 | through2 "^2.0.0" 715 | 716 | git-remote-origin-url@^2.0.0: 717 | version "2.0.0" 718 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 719 | integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8= 720 | dependencies: 721 | gitconfiglocal "^1.0.0" 722 | pify "^2.3.0" 723 | 724 | git-semver-tags@^4.1.1: 725 | version "4.1.1" 726 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" 727 | integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== 728 | dependencies: 729 | meow "^8.0.0" 730 | semver "^6.0.0" 731 | 732 | gitconfiglocal@^1.0.0: 733 | version "1.0.0" 734 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 735 | integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s= 736 | dependencies: 737 | ini "^1.3.2" 738 | 739 | github-url-from-git@^1.4.0: 740 | version "1.5.0" 741 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 742 | integrity sha1-+YX+3MCpqledyI16/waNVcxiUaA= 743 | 744 | glob@^7.0.0: 745 | version "7.1.2" 746 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 747 | dependencies: 748 | fs.realpath "^1.0.0" 749 | inflight "^1.0.4" 750 | inherits "2" 751 | minimatch "^3.0.4" 752 | once "^1.3.0" 753 | path-is-absolute "^1.0.0" 754 | 755 | glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: 756 | version "7.1.6" 757 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 758 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 759 | dependencies: 760 | fs.realpath "^1.0.0" 761 | inflight "^1.0.4" 762 | inherits "2" 763 | minimatch "^3.0.4" 764 | once "^1.3.0" 765 | path-is-absolute "^1.0.0" 766 | 767 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 768 | version "4.1.11" 769 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 770 | 771 | graceful-fs@^4.2.0: 772 | version "4.2.3" 773 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 774 | integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== 775 | 776 | handlebars@^4.7.6: 777 | version "4.7.7" 778 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 779 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 780 | dependencies: 781 | minimist "^1.2.5" 782 | neo-async "^2.6.0" 783 | source-map "^0.6.1" 784 | wordwrap "^1.0.0" 785 | optionalDependencies: 786 | uglify-js "^3.1.4" 787 | 788 | hard-rejection@^2.1.0: 789 | version "2.1.0" 790 | resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 791 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 792 | 793 | has-flag@^3.0.0: 794 | version "3.0.0" 795 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 796 | 797 | has-flag@^4.0.0: 798 | version "4.0.0" 799 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 800 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 801 | 802 | has-symbols@^1.0.0, has-symbols@^1.0.1: 803 | version "1.0.1" 804 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 805 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 806 | 807 | has@^1.0.3: 808 | version "1.0.3" 809 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 810 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 811 | dependencies: 812 | function-bind "^1.1.1" 813 | 814 | highlight.js@^10.0.0: 815 | version "10.4.1" 816 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.4.1.tgz#d48fbcf4a9971c4361b3f95f302747afe19dbad0" 817 | integrity sha512-yR5lWvNz7c85OhVAEAeFhVCc/GV4C30Fjzc/rCP0aCWzc1UUOPUk55dK/qdwTZHBvMZo+eZ2jpk62ndX/xMFlg== 818 | 819 | hosted-git-info@^2.1.4: 820 | version "2.8.9" 821 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 822 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 823 | 824 | hosted-git-info@^3.0.6: 825 | version "3.0.7" 826 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.7.tgz#a30727385ea85acfcee94e0aad9e368c792e036c" 827 | integrity sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ== 828 | dependencies: 829 | lru-cache "^6.0.0" 830 | 831 | husky@^4.2.5: 832 | version "4.3.8" 833 | resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.8.tgz#31144060be963fd6850e5cc8f019a1dfe194296d" 834 | integrity sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow== 835 | dependencies: 836 | chalk "^4.0.0" 837 | ci-info "^2.0.0" 838 | compare-versions "^3.6.0" 839 | cosmiconfig "^7.0.0" 840 | find-versions "^4.0.0" 841 | opencollective-postinstall "^2.0.2" 842 | pkg-dir "^5.0.0" 843 | please-upgrade-node "^3.2.0" 844 | slash "^3.0.0" 845 | which-pm-runs "^1.0.0" 846 | 847 | ignore-walk@^3.0.1: 848 | version "3.0.3" 849 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" 850 | integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== 851 | dependencies: 852 | minimatch "^3.0.4" 853 | 854 | ignore@^5.0.4: 855 | version "5.1.4" 856 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf" 857 | integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== 858 | 859 | ignore@^5.1.4: 860 | version "5.1.6" 861 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.6.tgz#643194ad4bf2712f37852e386b6998eff0db2106" 862 | integrity sha512-cgXgkypZBcCnOgSihyeqbo6gjIaIyDqPQB7Ra4vhE9m6kigdGoQDMHjviFhRZo3IMlRy6yElosoviMs5YxZXUA== 863 | 864 | import-fresh@^3.2.1: 865 | version "3.2.1" 866 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 867 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 868 | dependencies: 869 | parent-module "^1.0.0" 870 | resolve-from "^4.0.0" 871 | 872 | indent-string@^2.1.0: 873 | version "2.1.0" 874 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 875 | integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= 876 | dependencies: 877 | repeating "^2.0.0" 878 | 879 | indent-string@^3.0.0: 880 | version "3.2.0" 881 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 882 | integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= 883 | 884 | indent-string@^4.0.0: 885 | version "4.0.0" 886 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 887 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 888 | 889 | inflight@^1.0.4: 890 | version "1.0.6" 891 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 892 | dependencies: 893 | once "^1.3.0" 894 | wrappy "1" 895 | 896 | inherits@2: 897 | version "2.0.3" 898 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 899 | 900 | inherits@^2.0.3, inherits@~2.0.3: 901 | version "2.0.4" 902 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 903 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 904 | 905 | ini@^1.3.2: 906 | version "1.3.7" 907 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 908 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 909 | 910 | interpret@^1.0.0: 911 | version "1.1.0" 912 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 913 | 914 | is-arrayish@^0.2.1: 915 | version "0.2.1" 916 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 917 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 918 | 919 | is-builtin-module@^1.0.0: 920 | version "1.0.0" 921 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 922 | integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= 923 | dependencies: 924 | builtin-modules "^1.0.0" 925 | 926 | is-callable@^1.1.4, is-callable@^1.1.5: 927 | version "1.1.5" 928 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" 929 | integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== 930 | 931 | is-core-module@^2.1.0: 932 | version "2.2.0" 933 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 934 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 935 | dependencies: 936 | has "^1.0.3" 937 | 938 | is-date-object@^1.0.1: 939 | version "1.0.2" 940 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 941 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 942 | 943 | is-docker@^2.0.0: 944 | version "2.0.0" 945 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" 946 | integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== 947 | 948 | is-finite@^1.0.0: 949 | version "1.0.2" 950 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 951 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= 952 | dependencies: 953 | number-is-nan "^1.0.0" 954 | 955 | is-fullwidth-code-point@^3.0.0: 956 | version "3.0.0" 957 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 958 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 959 | 960 | is-obj@^1.0.0: 961 | version "1.0.1" 962 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 963 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 964 | 965 | is-obj@^2.0.0: 966 | version "2.0.0" 967 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 968 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 969 | 970 | is-plain-obj@^1.1.0: 971 | version "1.1.0" 972 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 973 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 974 | 975 | is-regex@^1.0.5: 976 | version "1.0.5" 977 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" 978 | integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== 979 | dependencies: 980 | has "^1.0.3" 981 | 982 | is-stream@^2.0.0: 983 | version "2.0.0" 984 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 985 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 986 | 987 | is-symbol@^1.0.2: 988 | version "1.0.3" 989 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 990 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 991 | dependencies: 992 | has-symbols "^1.0.1" 993 | 994 | is-text-path@^1.0.1: 995 | version "1.0.1" 996 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 997 | integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4= 998 | dependencies: 999 | text-extensions "^1.0.0" 1000 | 1001 | is-utf8@^0.2.0: 1002 | version "0.2.1" 1003 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1004 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 1005 | 1006 | is-wsl@^2.1.1: 1007 | version "2.1.1" 1008 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d" 1009 | integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog== 1010 | 1011 | isarray@~1.0.0: 1012 | version "1.0.0" 1013 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1014 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1015 | 1016 | isexe@^2.0.0: 1017 | version "2.0.0" 1018 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1019 | 1020 | js-tokens@^4.0.0: 1021 | version "4.0.0" 1022 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1023 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1024 | 1025 | json-parse-better-errors@^1.0.1: 1026 | version "1.0.2" 1027 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1028 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1029 | 1030 | json-stringify-safe@^5.0.1: 1031 | version "5.0.1" 1032 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1033 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1034 | 1035 | jsonfile@^4.0.0: 1036 | version "4.0.0" 1037 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1038 | optionalDependencies: 1039 | graceful-fs "^4.1.6" 1040 | 1041 | jsonparse@^1.2.0: 1042 | version "1.3.1" 1043 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1044 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 1045 | 1046 | kind-of@^6.0.3: 1047 | version "6.0.3" 1048 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1049 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1050 | 1051 | lines-and-columns@^1.1.6: 1052 | version "1.1.6" 1053 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1054 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1055 | 1056 | load-json-file@^1.0.0: 1057 | version "1.1.0" 1058 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1059 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 1060 | dependencies: 1061 | graceful-fs "^4.1.2" 1062 | parse-json "^2.2.0" 1063 | pify "^2.0.0" 1064 | pinkie-promise "^2.0.0" 1065 | strip-bom "^2.0.0" 1066 | 1067 | load-json-file@^4.0.0: 1068 | version "4.0.0" 1069 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1070 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 1071 | dependencies: 1072 | graceful-fs "^4.1.2" 1073 | parse-json "^4.0.0" 1074 | pify "^3.0.0" 1075 | strip-bom "^3.0.0" 1076 | 1077 | locate-path@^2.0.0: 1078 | version "2.0.0" 1079 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1080 | dependencies: 1081 | p-locate "^2.0.0" 1082 | path-exists "^3.0.0" 1083 | 1084 | locate-path@^5.0.0: 1085 | version "5.0.0" 1086 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1087 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1088 | dependencies: 1089 | p-locate "^4.1.0" 1090 | 1091 | locate-path@^6.0.0: 1092 | version "6.0.0" 1093 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1094 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1095 | dependencies: 1096 | p-locate "^5.0.0" 1097 | 1098 | lodash._reinterpolate@^3.0.0: 1099 | version "3.0.0" 1100 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1101 | integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= 1102 | 1103 | lodash.ismatch@^4.4.0: 1104 | version "4.4.0" 1105 | resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" 1106 | integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= 1107 | 1108 | lodash.template@^4.0.2: 1109 | version "4.5.0" 1110 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" 1111 | integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== 1112 | dependencies: 1113 | lodash._reinterpolate "^3.0.0" 1114 | lodash.templatesettings "^4.0.0" 1115 | 1116 | lodash.templatesettings@^4.0.0: 1117 | version "4.2.0" 1118 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" 1119 | integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== 1120 | dependencies: 1121 | lodash._reinterpolate "^3.0.0" 1122 | 1123 | lodash@^4.17.15, lodash@^4.17.20: 1124 | version "4.17.21" 1125 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1126 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1127 | 1128 | loud-rejection@^1.0.0: 1129 | version "1.6.0" 1130 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1131 | integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= 1132 | dependencies: 1133 | currently-unhandled "^0.4.1" 1134 | signal-exit "^3.0.0" 1135 | 1136 | lru-cache@^6.0.0: 1137 | version "6.0.0" 1138 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1139 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1140 | dependencies: 1141 | yallist "^4.0.0" 1142 | 1143 | lunr@^2.3.8: 1144 | version "2.3.8" 1145 | resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.8.tgz#a8b89c31f30b5a044b97d2d28e2da191b6ba2072" 1146 | integrity sha512-oxMeX/Y35PNFuZoHp+jUj5OSEmLCaIH4KTFJh7a93cHBoFmpw2IoPs22VIz7vyO2YUnx2Tn9dzIwO2P/4quIRg== 1147 | 1148 | map-obj@^1.0.0, map-obj@^1.0.1: 1149 | version "1.0.1" 1150 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1151 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 1152 | 1153 | map-obj@^2.0.0: 1154 | version "2.0.0" 1155 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 1156 | integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= 1157 | 1158 | map-obj@^4.0.0: 1159 | version "4.1.0" 1160 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5" 1161 | integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g== 1162 | 1163 | marked@1.0.0: 1164 | version "1.0.0" 1165 | resolved "https://registry.yarnpkg.com/marked/-/marked-1.0.0.tgz#d35784245a04871e5988a491e28867362e941693" 1166 | integrity sha512-Wo+L1pWTVibfrSr+TTtMuiMfNzmZWiOPeO7rZsQUY5bgsxpHesBEcIWJloWVTFnrMXnf/TL30eTFSGJddmQAng== 1167 | 1168 | memorystream@^0.3.1: 1169 | version "0.3.1" 1170 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 1171 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 1172 | 1173 | meow@^3.3.0: 1174 | version "3.7.0" 1175 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1176 | integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= 1177 | dependencies: 1178 | camelcase-keys "^2.0.0" 1179 | decamelize "^1.1.2" 1180 | loud-rejection "^1.0.0" 1181 | map-obj "^1.0.1" 1182 | minimist "^1.1.3" 1183 | normalize-package-data "^2.3.4" 1184 | object-assign "^4.0.1" 1185 | read-pkg-up "^1.0.1" 1186 | redent "^1.0.0" 1187 | trim-newlines "^1.0.0" 1188 | 1189 | meow@^4.0.0: 1190 | version "4.0.1" 1191 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975" 1192 | integrity sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A== 1193 | dependencies: 1194 | camelcase-keys "^4.0.0" 1195 | decamelize-keys "^1.0.0" 1196 | loud-rejection "^1.0.0" 1197 | minimist "^1.1.3" 1198 | minimist-options "^3.0.1" 1199 | normalize-package-data "^2.3.4" 1200 | read-pkg-up "^3.0.0" 1201 | redent "^2.0.0" 1202 | trim-newlines "^2.0.0" 1203 | 1204 | meow@^8.0.0: 1205 | version "8.1.0" 1206 | resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.0.tgz#0fcaa267e35e4d58584b8205923df6021ddcc7ba" 1207 | integrity sha512-fNWkgM1UVMey2kf24yLiccxLihc5W+6zVus3/N0b+VfnJgxV99E9u04X6NAiKdg6ED7DAQBX5sy36NM0QJZkWA== 1208 | dependencies: 1209 | "@types/minimist" "^1.2.0" 1210 | camelcase-keys "^6.2.2" 1211 | decamelize-keys "^1.1.0" 1212 | hard-rejection "^2.1.0" 1213 | minimist-options "4.1.0" 1214 | normalize-package-data "^3.0.0" 1215 | read-pkg-up "^7.0.1" 1216 | redent "^3.0.0" 1217 | trim-newlines "^3.0.0" 1218 | type-fest "^0.18.0" 1219 | yargs-parser "^20.2.3" 1220 | 1221 | merge-stream@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1224 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1225 | 1226 | mimic-fn@^2.1.0: 1227 | version "2.1.0" 1228 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1229 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1230 | 1231 | min-indent@^1.0.0: 1232 | version "1.0.0" 1233 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.0.tgz#cfc45c37e9ec0d8f0a0ec3dd4ef7f7c3abe39256" 1234 | integrity sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY= 1235 | 1236 | minimatch@^3.0.0, minimatch@^3.0.4: 1237 | version "3.0.4" 1238 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1239 | dependencies: 1240 | brace-expansion "^1.1.7" 1241 | 1242 | minimist-options@4.1.0: 1243 | version "4.1.0" 1244 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1245 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1246 | dependencies: 1247 | arrify "^1.0.1" 1248 | is-plain-obj "^1.1.0" 1249 | kind-of "^6.0.3" 1250 | 1251 | minimist-options@^3.0.1: 1252 | version "3.0.2" 1253 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 1254 | integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== 1255 | dependencies: 1256 | arrify "^1.0.1" 1257 | is-plain-obj "^1.1.0" 1258 | 1259 | minimist@^1.1.3, minimist@^1.2.3, minimist@^1.2.5: 1260 | version "1.2.5" 1261 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1262 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1263 | 1264 | modify-values@^1.0.0: 1265 | version "1.0.1" 1266 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 1267 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== 1268 | 1269 | mri@^1.1.4: 1270 | version "1.1.5" 1271 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.5.tgz#ce21dba2c69f74a9b7cf8a1ec62307e089e223e0" 1272 | integrity sha512-d2RKzMD4JNyHMbnbWnznPaa8vbdlq/4pNZ3IgdaGrVbBhebBsGUUE/6qorTMYNS6TwuH3ilfOlD2bf4Igh8CKg== 1273 | 1274 | multimatch@^4.0.0: 1275 | version "4.0.0" 1276 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" 1277 | integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== 1278 | dependencies: 1279 | "@types/minimatch" "^3.0.3" 1280 | array-differ "^3.0.0" 1281 | array-union "^2.1.0" 1282 | arrify "^2.0.1" 1283 | minimatch "^3.0.4" 1284 | 1285 | neo-async@^2.6.0: 1286 | version "2.6.2" 1287 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 1288 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1289 | 1290 | nice-try@^1.0.4: 1291 | version "1.0.5" 1292 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1293 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1294 | 1295 | node-cleanup@^2.1.2: 1296 | version "2.1.2" 1297 | resolved "https://registry.yarnpkg.com/node-cleanup/-/node-cleanup-2.1.2.tgz#7ac19abd297e09a7f72a71545d951b517e4dde2c" 1298 | integrity sha1-esGavSl+Caf3KnFUXZUbUX5N3iw= 1299 | 1300 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: 1301 | version "2.5.0" 1302 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1303 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1304 | dependencies: 1305 | hosted-git-info "^2.1.4" 1306 | resolve "^1.10.0" 1307 | semver "2 || 3 || 4 || 5" 1308 | validate-npm-package-license "^3.0.1" 1309 | 1310 | normalize-package-data@^2.3.2: 1311 | version "2.4.0" 1312 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1313 | integrity sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw== 1314 | dependencies: 1315 | hosted-git-info "^2.1.4" 1316 | is-builtin-module "^1.0.0" 1317 | semver "2 || 3 || 4 || 5" 1318 | validate-npm-package-license "^3.0.1" 1319 | 1320 | normalize-package-data@^3.0.0: 1321 | version "3.0.0" 1322 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz#1f8a7c423b3d2e85eb36985eaf81de381d01301a" 1323 | integrity sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw== 1324 | dependencies: 1325 | hosted-git-info "^3.0.6" 1326 | resolve "^1.17.0" 1327 | semver "^7.3.2" 1328 | validate-npm-package-license "^3.0.1" 1329 | 1330 | npm-bundled@^1.0.1: 1331 | version "1.1.1" 1332 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" 1333 | integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== 1334 | dependencies: 1335 | npm-normalize-package-bin "^1.0.1" 1336 | 1337 | npm-normalize-package-bin@^1.0.1: 1338 | version "1.0.1" 1339 | resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" 1340 | integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== 1341 | 1342 | npm-packlist@^1.4.1: 1343 | version "1.4.7" 1344 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.7.tgz#9e954365a06b80b18111ea900945af4f88ed4848" 1345 | integrity sha512-vAj7dIkp5NhieaGZxBJB8fF4R0078rqsmhJcAfXZ6O7JJhjhPK96n5Ry1oZcfLXgfun0GWTZPOxaEyqv8GBykQ== 1346 | dependencies: 1347 | ignore-walk "^3.0.1" 1348 | npm-bundled "^1.0.1" 1349 | 1350 | npm-run-all@^4.1.5: 1351 | version "4.1.5" 1352 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 1353 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 1354 | dependencies: 1355 | ansi-styles "^3.2.1" 1356 | chalk "^2.4.1" 1357 | cross-spawn "^6.0.5" 1358 | memorystream "^0.3.1" 1359 | minimatch "^3.0.4" 1360 | pidtree "^0.3.0" 1361 | read-pkg "^3.0.0" 1362 | shell-quote "^1.6.1" 1363 | string.prototype.padend "^3.0.0" 1364 | 1365 | npm-run-path@^3.0.0: 1366 | version "3.1.0" 1367 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5" 1368 | integrity sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== 1369 | dependencies: 1370 | path-key "^3.0.0" 1371 | 1372 | number-is-nan@^1.0.0: 1373 | version "1.0.1" 1374 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1375 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1376 | 1377 | object-assign@^4.0.1: 1378 | version "4.1.1" 1379 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1380 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1381 | 1382 | object-inspect@^1.7.0: 1383 | version "1.7.0" 1384 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 1385 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 1386 | 1387 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1388 | version "1.1.1" 1389 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1390 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1391 | 1392 | object.assign@^4.1.0: 1393 | version "4.1.0" 1394 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1395 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1396 | dependencies: 1397 | define-properties "^1.1.2" 1398 | function-bind "^1.1.1" 1399 | has-symbols "^1.0.0" 1400 | object-keys "^1.0.11" 1401 | 1402 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1403 | version "1.4.0" 1404 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1405 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1406 | dependencies: 1407 | wrappy "1" 1408 | 1409 | onetime@^5.1.0: 1410 | version "5.1.0" 1411 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" 1412 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== 1413 | dependencies: 1414 | mimic-fn "^2.1.0" 1415 | 1416 | open@^7.3.0: 1417 | version "7.3.0" 1418 | resolved "https://registry.yarnpkg.com/open/-/open-7.3.0.tgz#45461fdee46444f3645b6e14eb3ca94b82e1be69" 1419 | integrity sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw== 1420 | dependencies: 1421 | is-docker "^2.0.0" 1422 | is-wsl "^2.1.1" 1423 | 1424 | opencollective-postinstall@^2.0.2: 1425 | version "2.0.2" 1426 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" 1427 | integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== 1428 | 1429 | p-finally@^2.0.0: 1430 | version "2.0.1" 1431 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" 1432 | integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== 1433 | 1434 | p-limit@^1.1.0: 1435 | version "1.2.0" 1436 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 1437 | dependencies: 1438 | p-try "^1.0.0" 1439 | 1440 | p-limit@^2.2.0: 1441 | version "2.2.2" 1442 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" 1443 | integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== 1444 | dependencies: 1445 | p-try "^2.0.0" 1446 | 1447 | p-limit@^3.0.2: 1448 | version "3.1.0" 1449 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1450 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1451 | dependencies: 1452 | yocto-queue "^0.1.0" 1453 | 1454 | p-locate@^2.0.0: 1455 | version "2.0.0" 1456 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1457 | dependencies: 1458 | p-limit "^1.1.0" 1459 | 1460 | p-locate@^4.1.0: 1461 | version "4.1.0" 1462 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1463 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1464 | dependencies: 1465 | p-limit "^2.2.0" 1466 | 1467 | p-locate@^5.0.0: 1468 | version "5.0.0" 1469 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1470 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1471 | dependencies: 1472 | p-limit "^3.0.2" 1473 | 1474 | p-try@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1477 | 1478 | p-try@^2.0.0: 1479 | version "2.0.0" 1480 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 1481 | integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ== 1482 | 1483 | parent-module@^1.0.0: 1484 | version "1.0.1" 1485 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1486 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1487 | dependencies: 1488 | callsites "^3.0.0" 1489 | 1490 | parse-github-repo-url@^1.3.0: 1491 | version "1.4.1" 1492 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 1493 | integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A= 1494 | 1495 | parse-json@^2.2.0: 1496 | version "2.2.0" 1497 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1498 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1499 | dependencies: 1500 | error-ex "^1.2.0" 1501 | 1502 | parse-json@^4.0.0: 1503 | version "4.0.0" 1504 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1505 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 1506 | dependencies: 1507 | error-ex "^1.3.1" 1508 | json-parse-better-errors "^1.0.1" 1509 | 1510 | parse-json@^5.0.0: 1511 | version "5.0.0" 1512 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" 1513 | integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== 1514 | dependencies: 1515 | "@babel/code-frame" "^7.0.0" 1516 | error-ex "^1.3.1" 1517 | json-parse-better-errors "^1.0.1" 1518 | lines-and-columns "^1.1.6" 1519 | 1520 | path-exists@^2.0.0: 1521 | version "2.1.0" 1522 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1523 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 1524 | dependencies: 1525 | pinkie-promise "^2.0.0" 1526 | 1527 | path-exists@^3.0.0: 1528 | version "3.0.0" 1529 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1530 | 1531 | path-exists@^4.0.0: 1532 | version "4.0.0" 1533 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1534 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1535 | 1536 | path-is-absolute@^1.0.0: 1537 | version "1.0.1" 1538 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1539 | 1540 | path-key@^2.0.1: 1541 | version "2.0.1" 1542 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1543 | 1544 | path-key@^3.0.0, path-key@^3.1.0: 1545 | version "3.1.1" 1546 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1547 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1548 | 1549 | path-parse@^1.0.5: 1550 | version "1.0.5" 1551 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1552 | 1553 | path-parse@^1.0.6: 1554 | version "1.0.6" 1555 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1556 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1557 | 1558 | path-type@^1.0.0: 1559 | version "1.1.0" 1560 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1561 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 1562 | dependencies: 1563 | graceful-fs "^4.1.2" 1564 | pify "^2.0.0" 1565 | pinkie-promise "^2.0.0" 1566 | 1567 | path-type@^3.0.0: 1568 | version "3.0.0" 1569 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1570 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 1571 | dependencies: 1572 | pify "^3.0.0" 1573 | 1574 | path-type@^4.0.0: 1575 | version "4.0.0" 1576 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1577 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1578 | 1579 | pidtree@^0.3.0: 1580 | version "0.3.0" 1581 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.0.tgz#f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b" 1582 | integrity sha512-9CT4NFlDcosssyg8KVFltgokyKZIFjoBxw8CTGy+5F38Y1eQWrt8tRayiUOXE+zVKQnYu5BR8JjCtvK3BcnBhg== 1583 | 1584 | pify@^2.0.0, pify@^2.3.0: 1585 | version "2.3.0" 1586 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1587 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1588 | 1589 | pify@^3.0.0: 1590 | version "3.0.0" 1591 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1592 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1593 | 1594 | pinkie-promise@^2.0.0: 1595 | version "2.0.1" 1596 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1597 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 1598 | dependencies: 1599 | pinkie "^2.0.0" 1600 | 1601 | pinkie@^2.0.0: 1602 | version "2.0.4" 1603 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1604 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 1605 | 1606 | pkg-dir@^5.0.0: 1607 | version "5.0.0" 1608 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" 1609 | integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== 1610 | dependencies: 1611 | find-up "^5.0.0" 1612 | 1613 | please-upgrade-node@^3.2.0: 1614 | version "3.2.0" 1615 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" 1616 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== 1617 | dependencies: 1618 | semver-compare "^1.0.0" 1619 | 1620 | prettier@^2.0.5: 1621 | version "2.3.2" 1622 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" 1623 | integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== 1624 | 1625 | pretty-quick@^2.0.1: 1626 | version "2.0.1" 1627 | resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-2.0.1.tgz#417ee605ade98ecc686e72f63b5d28a2c35b43e9" 1628 | integrity sha512-y7bJt77XadjUr+P1uKqZxFWLddvj3SKY6EU4BuQtMxmmEFSMpbN132pUWdSG1g1mtUfO0noBvn7wBf0BVeomHg== 1629 | dependencies: 1630 | chalk "^2.4.2" 1631 | execa "^2.1.0" 1632 | find-up "^4.1.0" 1633 | ignore "^5.1.4" 1634 | mri "^1.1.4" 1635 | multimatch "^4.0.0" 1636 | 1637 | process-nextick-args@~2.0.0: 1638 | version "2.0.1" 1639 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1640 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1641 | 1642 | progress@^2.0.3: 1643 | version "2.0.3" 1644 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1645 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1646 | 1647 | pump@^3.0.0: 1648 | version "3.0.0" 1649 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1650 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1651 | dependencies: 1652 | end-of-stream "^1.1.0" 1653 | once "^1.3.1" 1654 | 1655 | q@^1.4.1, q@^1.5.1: 1656 | version "1.5.1" 1657 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1658 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 1659 | 1660 | quick-lru@^1.0.0: 1661 | version "1.1.0" 1662 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 1663 | integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= 1664 | 1665 | quick-lru@^4.0.1: 1666 | version "4.0.1" 1667 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" 1668 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 1669 | 1670 | read-pkg-up@^1.0.1: 1671 | version "1.0.1" 1672 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1673 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 1674 | dependencies: 1675 | find-up "^1.0.0" 1676 | read-pkg "^1.0.0" 1677 | 1678 | read-pkg-up@^3.0.0: 1679 | version "3.0.0" 1680 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 1681 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= 1682 | dependencies: 1683 | find-up "^2.0.0" 1684 | read-pkg "^3.0.0" 1685 | 1686 | read-pkg-up@^7.0.1: 1687 | version "7.0.1" 1688 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 1689 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 1690 | dependencies: 1691 | find-up "^4.1.0" 1692 | read-pkg "^5.2.0" 1693 | type-fest "^0.8.1" 1694 | 1695 | read-pkg@^1.0.0: 1696 | version "1.1.0" 1697 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1698 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 1699 | dependencies: 1700 | load-json-file "^1.0.0" 1701 | normalize-package-data "^2.3.2" 1702 | path-type "^1.0.0" 1703 | 1704 | read-pkg@^3.0.0: 1705 | version "3.0.0" 1706 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1707 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 1708 | dependencies: 1709 | load-json-file "^4.0.0" 1710 | normalize-package-data "^2.3.2" 1711 | path-type "^3.0.0" 1712 | 1713 | read-pkg@^5.2.0: 1714 | version "5.2.0" 1715 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 1716 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 1717 | dependencies: 1718 | "@types/normalize-package-data" "^2.4.0" 1719 | normalize-package-data "^2.5.0" 1720 | parse-json "^5.0.0" 1721 | type-fest "^0.6.0" 1722 | 1723 | readable-stream@3: 1724 | version "3.6.0" 1725 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1726 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1727 | dependencies: 1728 | inherits "^2.0.3" 1729 | string_decoder "^1.1.1" 1730 | util-deprecate "^1.0.1" 1731 | 1732 | readable-stream@~2.3.6: 1733 | version "2.3.7" 1734 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1735 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1736 | dependencies: 1737 | core-util-is "~1.0.0" 1738 | inherits "~2.0.3" 1739 | isarray "~1.0.0" 1740 | process-nextick-args "~2.0.0" 1741 | safe-buffer "~5.1.1" 1742 | string_decoder "~1.1.1" 1743 | util-deprecate "~1.0.1" 1744 | 1745 | readline-sync@^1.4.10: 1746 | version "1.4.10" 1747 | resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b" 1748 | integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw== 1749 | 1750 | rechoir@^0.6.2: 1751 | version "0.6.2" 1752 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1753 | dependencies: 1754 | resolve "^1.1.6" 1755 | 1756 | redent@^1.0.0: 1757 | version "1.0.0" 1758 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1759 | integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= 1760 | dependencies: 1761 | indent-string "^2.1.0" 1762 | strip-indent "^1.0.1" 1763 | 1764 | redent@^2.0.0: 1765 | version "2.0.0" 1766 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 1767 | integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= 1768 | dependencies: 1769 | indent-string "^3.0.0" 1770 | strip-indent "^2.0.0" 1771 | 1772 | redent@^3.0.0: 1773 | version "3.0.0" 1774 | resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" 1775 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 1776 | dependencies: 1777 | indent-string "^4.0.0" 1778 | strip-indent "^3.0.0" 1779 | 1780 | repeating@^2.0.0: 1781 | version "2.0.1" 1782 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1783 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 1784 | dependencies: 1785 | is-finite "^1.0.0" 1786 | 1787 | require-directory@^2.1.1: 1788 | version "2.1.1" 1789 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1790 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1791 | 1792 | require-main-filename@^2.0.0: 1793 | version "2.0.0" 1794 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 1795 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 1796 | 1797 | resolve-from@^4.0.0: 1798 | version "4.0.0" 1799 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1800 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1801 | 1802 | resolve@^1.1.6: 1803 | version "1.7.0" 1804 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.0.tgz#2bdf5374811207285df0df652b78f118ab8f3c5e" 1805 | dependencies: 1806 | path-parse "^1.0.5" 1807 | 1808 | resolve@^1.10.0: 1809 | version "1.14.2" 1810 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.2.tgz#dbf31d0fa98b1f29aa5169783b9c290cb865fea2" 1811 | integrity sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ== 1812 | dependencies: 1813 | path-parse "^1.0.6" 1814 | 1815 | resolve@^1.17.0, resolve@^1.19.0: 1816 | version "1.19.0" 1817 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 1818 | integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 1819 | dependencies: 1820 | is-core-module "^2.1.0" 1821 | path-parse "^1.0.6" 1822 | 1823 | rimraf@^3.0.0: 1824 | version "3.0.2" 1825 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1826 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1827 | dependencies: 1828 | glob "^7.1.3" 1829 | 1830 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1831 | version "5.1.2" 1832 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1833 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1834 | 1835 | safe-buffer@~5.2.0: 1836 | version "5.2.0" 1837 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 1838 | integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 1839 | 1840 | semver-compare@^1.0.0: 1841 | version "1.0.0" 1842 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 1843 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 1844 | 1845 | semver-regex@^3.1.2: 1846 | version "3.1.2" 1847 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-3.1.2.tgz#34b4c0d361eef262e07199dbef316d0f2ab11807" 1848 | integrity sha512-bXWyL6EAKOJa81XG1OZ/Yyuq+oT0b2YLlxx7c+mrdYPaPbnj6WgVULXhinMIeZGufuUBu/eVRqXEhiv4imfwxA== 1849 | 1850 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 1851 | version "5.6.0" 1852 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 1853 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 1854 | 1855 | semver@^6.0.0: 1856 | version "6.3.0" 1857 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1858 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1859 | 1860 | semver@^7.1.1, semver@^7.3.2, semver@^7.3.4: 1861 | version "7.3.5" 1862 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 1863 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 1864 | dependencies: 1865 | lru-cache "^6.0.0" 1866 | 1867 | set-blocking@^2.0.0: 1868 | version "2.0.0" 1869 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1870 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1871 | 1872 | shebang-command@^1.2.0: 1873 | version "1.2.0" 1874 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1875 | dependencies: 1876 | shebang-regex "^1.0.0" 1877 | 1878 | shebang-command@^2.0.0: 1879 | version "2.0.0" 1880 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1881 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1882 | dependencies: 1883 | shebang-regex "^3.0.0" 1884 | 1885 | shebang-regex@^1.0.0: 1886 | version "1.0.0" 1887 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1888 | 1889 | shebang-regex@^3.0.0: 1890 | version "3.0.0" 1891 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1892 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1893 | 1894 | shell-quote@^1.6.1: 1895 | version "1.7.2" 1896 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 1897 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 1898 | 1899 | shelljs@^0.8.3, shelljs@^0.8.4: 1900 | version "0.8.4" 1901 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" 1902 | integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== 1903 | dependencies: 1904 | glob "^7.0.0" 1905 | interpret "^1.0.0" 1906 | rechoir "^0.6.2" 1907 | 1908 | shx@^0.3.3: 1909 | version "0.3.3" 1910 | resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.3.tgz#681a88c7c10db15abe18525349ed474f0f1e7b9f" 1911 | integrity sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA== 1912 | dependencies: 1913 | minimist "^1.2.3" 1914 | shelljs "^0.8.4" 1915 | 1916 | signal-exit@^3.0.0: 1917 | version "3.0.2" 1918 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1919 | 1920 | signal-exit@^3.0.2: 1921 | version "3.0.3" 1922 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1923 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1924 | 1925 | slash@^3.0.0: 1926 | version "3.0.0" 1927 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1928 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1929 | 1930 | source-map@^0.6.1: 1931 | version "0.6.1" 1932 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1933 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1934 | 1935 | spdx-correct@^3.0.0: 1936 | version "3.1.0" 1937 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 1938 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 1939 | dependencies: 1940 | spdx-expression-parse "^3.0.0" 1941 | spdx-license-ids "^3.0.0" 1942 | 1943 | spdx-exceptions@^2.1.0: 1944 | version "2.2.0" 1945 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 1946 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 1947 | 1948 | spdx-expression-parse@^3.0.0: 1949 | version "3.0.0" 1950 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1951 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 1952 | dependencies: 1953 | spdx-exceptions "^2.1.0" 1954 | spdx-license-ids "^3.0.0" 1955 | 1956 | spdx-license-ids@^3.0.0: 1957 | version "3.0.3" 1958 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" 1959 | integrity sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g== 1960 | 1961 | split2@^2.0.0: 1962 | version "2.2.0" 1963 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 1964 | integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== 1965 | dependencies: 1966 | through2 "^2.0.2" 1967 | 1968 | split@^1.0.0: 1969 | version "1.0.1" 1970 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1971 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 1972 | dependencies: 1973 | through "2" 1974 | 1975 | string-width@^4.1.0, string-width@^4.2.0: 1976 | version "4.2.0" 1977 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1978 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1979 | dependencies: 1980 | emoji-regex "^8.0.0" 1981 | is-fullwidth-code-point "^3.0.0" 1982 | strip-ansi "^6.0.0" 1983 | 1984 | string.prototype.padend@^3.0.0: 1985 | version "3.1.0" 1986 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" 1987 | integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== 1988 | dependencies: 1989 | define-properties "^1.1.3" 1990 | es-abstract "^1.17.0-next.1" 1991 | 1992 | string.prototype.trimleft@^2.1.1: 1993 | version "2.1.1" 1994 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" 1995 | integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== 1996 | dependencies: 1997 | define-properties "^1.1.3" 1998 | function-bind "^1.1.1" 1999 | 2000 | string.prototype.trimright@^2.1.1: 2001 | version "2.1.1" 2002 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" 2003 | integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== 2004 | dependencies: 2005 | define-properties "^1.1.3" 2006 | function-bind "^1.1.1" 2007 | 2008 | string_decoder@^1.1.1: 2009 | version "1.3.0" 2010 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2011 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2012 | dependencies: 2013 | safe-buffer "~5.2.0" 2014 | 2015 | string_decoder@~1.1.1: 2016 | version "1.1.1" 2017 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2018 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2019 | dependencies: 2020 | safe-buffer "~5.1.0" 2021 | 2022 | strip-ansi@^6.0.0: 2023 | version "6.0.0" 2024 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2025 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2026 | dependencies: 2027 | ansi-regex "^5.0.0" 2028 | 2029 | strip-bom@^2.0.0: 2030 | version "2.0.0" 2031 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2032 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 2033 | dependencies: 2034 | is-utf8 "^0.2.0" 2035 | 2036 | strip-bom@^3.0.0: 2037 | version "3.0.0" 2038 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2039 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 2040 | 2041 | strip-final-newline@^2.0.0: 2042 | version "2.0.0" 2043 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2044 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2045 | 2046 | strip-indent@^1.0.1: 2047 | version "1.0.1" 2048 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2049 | integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= 2050 | dependencies: 2051 | get-stdin "^4.0.1" 2052 | 2053 | strip-indent@^2.0.0: 2054 | version "2.0.0" 2055 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2056 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= 2057 | 2058 | strip-indent@^3.0.0: 2059 | version "3.0.0" 2060 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 2061 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 2062 | dependencies: 2063 | min-indent "^1.0.0" 2064 | 2065 | supports-color@^5.3.0: 2066 | version "5.3.0" 2067 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 2068 | dependencies: 2069 | has-flag "^3.0.0" 2070 | 2071 | supports-color@^7.1.0: 2072 | version "7.1.0" 2073 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 2074 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 2075 | dependencies: 2076 | has-flag "^4.0.0" 2077 | 2078 | text-extensions@^1.0.0: 2079 | version "1.9.0" 2080 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" 2081 | integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== 2082 | 2083 | through2@^2.0.0, through2@^2.0.2: 2084 | version "2.0.5" 2085 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2086 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 2087 | dependencies: 2088 | readable-stream "~2.3.6" 2089 | xtend "~4.0.1" 2090 | 2091 | through2@^4.0.0: 2092 | version "4.0.2" 2093 | resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" 2094 | integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== 2095 | dependencies: 2096 | readable-stream "3" 2097 | 2098 | through@2, "through@>=2.2.7 <3": 2099 | version "2.3.8" 2100 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2101 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2102 | 2103 | tmp@^0.2.1: 2104 | version "0.2.1" 2105 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 2106 | integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== 2107 | dependencies: 2108 | rimraf "^3.0.0" 2109 | 2110 | trim-newlines@^1.0.0: 2111 | version "1.0.0" 2112 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2113 | integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= 2114 | 2115 | trim-newlines@^2.0.0: 2116 | version "2.0.0" 2117 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 2118 | integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= 2119 | 2120 | trim-newlines@^3.0.0: 2121 | version "3.0.0" 2122 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30" 2123 | integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA== 2124 | 2125 | trim-off-newlines@^1.0.0: 2126 | version "1.0.1" 2127 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2128 | integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM= 2129 | 2130 | tweak-sourcemap-paths@0.0.4: 2131 | version "0.0.4" 2132 | resolved "https://registry.yarnpkg.com/tweak-sourcemap-paths/-/tweak-sourcemap-paths-0.0.4.tgz#110c6c323ae93c562e2ab83de36b8b1191f8fb72" 2133 | integrity sha512-8qVJTFQnadIOGojrpdfjnlqNba1TzfiRHiCdmErl5r3GgIQJeO69BbwM7DrnISncQxjfeBKhoSuKwVfitcSmJg== 2134 | dependencies: 2135 | glob "^7.1.6" 2136 | yargs "^15.0.2" 2137 | 2138 | type-fest@^0.18.0: 2139 | version "0.18.1" 2140 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" 2141 | integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== 2142 | 2143 | type-fest@^0.6.0: 2144 | version "0.6.0" 2145 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 2146 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 2147 | 2148 | type-fest@^0.8.1: 2149 | version "0.8.1" 2150 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2151 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2152 | 2153 | typedoc-default-themes@^0.10.2: 2154 | version "0.10.2" 2155 | resolved "https://registry.yarnpkg.com/typedoc-default-themes/-/typedoc-default-themes-0.10.2.tgz#743380a80afe62c5ef92ca1bd4abe2ac596be4d2" 2156 | integrity sha512-zo09yRj+xwLFE3hyhJeVHWRSPuKEIAsFK5r2u47KL/HBKqpwdUSanoaz5L34IKiSATFrjG5ywmIu98hPVMfxZg== 2157 | dependencies: 2158 | lunr "^2.3.8" 2159 | 2160 | typedoc@^0.17.7: 2161 | version "0.17.8" 2162 | resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.17.8.tgz#96b67e9454aa7853bfc4dc9a55c8a07adfd5478e" 2163 | integrity sha512-/OyrHCJ8jtzu+QZ+771YaxQ9s4g5Z3XsQE3Ma7q+BL392xxBn4UMvvCdVnqKC2T/dz03/VXSLVKOP3lHmDdc/w== 2164 | dependencies: 2165 | fs-extra "^8.1.0" 2166 | handlebars "^4.7.6" 2167 | highlight.js "^10.0.0" 2168 | lodash "^4.17.15" 2169 | lunr "^2.3.8" 2170 | marked "1.0.0" 2171 | minimatch "^3.0.0" 2172 | progress "^2.0.3" 2173 | shelljs "^0.8.4" 2174 | typedoc-default-themes "^0.10.2" 2175 | 2176 | typescript@>=3.8.3: 2177 | version "4.3.5" 2178 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" 2179 | integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== 2180 | 2181 | uglify-js@^3.1.4: 2182 | version "3.13.5" 2183 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.5.tgz#5d71d6dbba64cf441f32929b1efce7365bb4f113" 2184 | integrity sha512-xtB8yEqIkn7zmOyS2zUNBsYCBRhDkvlNxMMY2smuJ/qA8NCHeQvKCF3i9Z4k8FJH4+PJvZRtMrPynfZ75+CSZw== 2185 | 2186 | universalify@^0.1.0: 2187 | version "0.1.1" 2188 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 2189 | 2190 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2191 | version "1.0.2" 2192 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2193 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2194 | 2195 | validate-npm-package-license@^3.0.1: 2196 | version "3.0.4" 2197 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2198 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2199 | dependencies: 2200 | spdx-correct "^3.0.0" 2201 | spdx-expression-parse "^3.0.0" 2202 | 2203 | which-module@^2.0.0: 2204 | version "2.0.0" 2205 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2206 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 2207 | 2208 | which-pm-runs@^1.0.0: 2209 | version "1.0.0" 2210 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 2211 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 2212 | 2213 | which@^1.2.9: 2214 | version "1.3.0" 2215 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2216 | dependencies: 2217 | isexe "^2.0.0" 2218 | 2219 | which@^2.0.1: 2220 | version "2.0.2" 2221 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2222 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2223 | dependencies: 2224 | isexe "^2.0.0" 2225 | 2226 | wordwrap@^1.0.0: 2227 | version "1.0.0" 2228 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2229 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 2230 | 2231 | wrap-ansi@^6.2.0: 2232 | version "6.2.0" 2233 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2234 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2235 | dependencies: 2236 | ansi-styles "^4.0.0" 2237 | string-width "^4.1.0" 2238 | strip-ansi "^6.0.0" 2239 | 2240 | wrap-ansi@^7.0.0: 2241 | version "7.0.0" 2242 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2243 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2244 | dependencies: 2245 | ansi-styles "^4.0.0" 2246 | string-width "^4.1.0" 2247 | strip-ansi "^6.0.0" 2248 | 2249 | wrappy@1: 2250 | version "1.0.2" 2251 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2252 | 2253 | xtend@~4.0.1: 2254 | version "4.0.2" 2255 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2256 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2257 | 2258 | y18n@^4.0.0: 2259 | version "4.0.1" 2260 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" 2261 | integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== 2262 | 2263 | y18n@^5.0.5: 2264 | version "5.0.5" 2265 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" 2266 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 2267 | 2268 | yalc@^1.0.0-pre.49: 2269 | version "1.0.0-pre.49" 2270 | resolved "https://registry.yarnpkg.com/yalc/-/yalc-1.0.0-pre.49.tgz#ec576c4abeb80181402df6711f20785bd3b7fc0d" 2271 | integrity sha512-7fTnwsX4qKnr2h1LVTLQzc9gosFrGnJcBRPnNGsM+3YJSLAjB+i8XnqmNptdktjyc4hOzI+XzN1Wp2kXvKAPxA== 2272 | dependencies: 2273 | chalk "^4.1.0" 2274 | detect-indent "^6.0.0" 2275 | fs-extra "^8.0.1" 2276 | glob "^7.1.4" 2277 | ignore "^5.0.4" 2278 | npm-packlist "^1.4.1" 2279 | yargs "^16.1.1" 2280 | 2281 | yallist@^4.0.0: 2282 | version "4.0.0" 2283 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2284 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2285 | 2286 | yaml@^1.10.0: 2287 | version "1.10.0" 2288 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 2289 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 2290 | 2291 | yargs-parser@^18.1.1: 2292 | version "18.1.3" 2293 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 2294 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 2295 | dependencies: 2296 | camelcase "^5.0.0" 2297 | decamelize "^1.2.0" 2298 | 2299 | yargs-parser@^20.2.2, yargs-parser@^20.2.3: 2300 | version "20.2.4" 2301 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 2302 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 2303 | 2304 | yargs@^15.0.2: 2305 | version "15.3.1" 2306 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b" 2307 | integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA== 2308 | dependencies: 2309 | cliui "^6.0.0" 2310 | decamelize "^1.2.0" 2311 | find-up "^4.1.0" 2312 | get-caller-file "^2.0.1" 2313 | require-directory "^2.1.1" 2314 | require-main-filename "^2.0.0" 2315 | set-blocking "^2.0.0" 2316 | string-width "^4.2.0" 2317 | which-module "^2.0.0" 2318 | y18n "^4.0.0" 2319 | yargs-parser "^18.1.1" 2320 | 2321 | yargs@^16.1.1, yargs@^16.2.0: 2322 | version "16.2.0" 2323 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2324 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2325 | dependencies: 2326 | cliui "^7.0.2" 2327 | escalade "^3.1.1" 2328 | get-caller-file "^2.0.5" 2329 | require-directory "^2.1.1" 2330 | string-width "^4.2.0" 2331 | y18n "^5.0.5" 2332 | yargs-parser "^20.2.2" 2333 | 2334 | yocto-queue@^0.1.0: 2335 | version "0.1.0" 2336 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2337 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2338 | --------------------------------------------------------------------------------