├── .npmignore ├── src ├── readJson.ts ├── packageManager.ts ├── solution.ts ├── cli.ts ├── checkPeerDependencies.ts └── packageUtils.ts ├── tsconfig.json ├── .gitignore ├── .github └── workflows │ └── ci.yml ├── LICENSE ├── package.json ├── README.md ├── CHANGELOG.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | src 3 | tsconfig.json 4 | .gitignore 5 | -------------------------------------------------------------------------------- /src/readJson.ts: -------------------------------------------------------------------------------- 1 | import { readFileSync } from 'fs'; 2 | export function readJson(filename: string) { 3 | return JSON.parse(readFileSync(filename).toString('utf-8')); 4 | } 5 | 6 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "./src/cli.ts" 4 | ], 5 | "compilerOptions": { 6 | "lib": ["es7"], 7 | "outDir": "dist", 8 | "skipLibCheck": true 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Dependency directories 15 | node_modules/ 16 | 17 | # webstorm 18 | .idea 19 | 20 | dist 21 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: 'CI' 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | 9 | jobs: 10 | ci: 11 | needs: [test] 12 | runs-on: ubuntu-latest 13 | steps: 14 | - run: true 15 | test: 16 | name: yarn buildd 17 | runs-on: ubuntu-latest 18 | steps: 19 | - uses: actions/checkout@v2 20 | - name: Install Dependencies 21 | run: yarn install --pure-lockfile 22 | - name: Check Peer Dependencies 23 | run: npx check-peer-dependencies 24 | - name: Run Tests 25 | run: yarn build 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "check-peer-dependencies", 3 | "version": "4.3.0", 4 | "description": "Checks peer dependencies of the current package. Offers solutions for any that are unmet.", 5 | "main": "dist/checkPeerDependencies.js", 6 | "scripts": { 7 | "build": "tsc", 8 | "prepublishOnly": "npm run build", 9 | "release": "release", 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "bin": { 13 | "check-peer-dependencies": "dist/cli.js" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/christopherthielen/check-peer-dependencies.git" 18 | }, 19 | "keywords": [ 20 | "nodejs", 21 | "install", 22 | "peer", 23 | "dependencies" 24 | ], 25 | "author": "Chris Thielen", 26 | "license": "MIT", 27 | "bugs": { 28 | "url": "https://github.com/christopherthielen/check-peer-dependencies/issues" 29 | }, 30 | "homepage": "https://github.com/christopherthielen/check-peer-dependencies#readme", 31 | "dependencies": { 32 | "resolve": "^1.19.0", 33 | "semver": "^7.3.4", 34 | "shelljs": "^0.8.4", 35 | "yargs": "^16.2.0" 36 | }, 37 | "devDependencies": { 38 | "@types/node": "^14.14.16", 39 | "@types/semver": "^7.3.4", 40 | "@types/shelljs": "^0.8.8", 41 | "@types/yargs": "^15.0.12", 42 | "@uirouter/publish-scripts": "^2.5.4", 43 | "typescript": "^4.1.3" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/packageManager.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "fs"; 2 | import { Resolution } from './solution'; 3 | 4 | export function getPackageManager(forceYarn: boolean, forceNpm: boolean) { 5 | if (forceYarn) return 'yarn'; 6 | if (forceNpm) return 'npm'; 7 | if (fs.existsSync('yarn.lock')) return 'yarn'; 8 | if (fs.existsSync('package-lock.json')) return 'npm'; 9 | } 10 | 11 | export function getCommandLines(packageManager: string, resolutions: Resolution[]) { 12 | const installs = resolutions.filter(r => r.resolution && r.resolutionType === 'install').map(r => r.resolution); 13 | const devInstalls = resolutions.filter(r => r.resolution && r.resolutionType === 'devInstall').map(r => r.resolution); 14 | const upgrades = resolutions.filter(r => r.resolution && r.resolutionType === 'upgrade').map(r => r.resolution); 15 | 16 | const commands = []; 17 | if (packageManager === 'yarn') { 18 | if (installs.length) { 19 | commands.push(`yarn add ${installs.join(' ')}`); 20 | } 21 | if (devInstalls.length) { 22 | commands.push(`yarn add -D ${devInstalls.join(' ')}`); 23 | } 24 | if (upgrades.length) { 25 | commands.push(`yarn upgrade ${upgrades.join(' ')}`); 26 | } 27 | } else if (packageManager === 'npm' && (installs.length || upgrades.length || devInstalls.length)) { 28 | if (installs.length || upgrades.length) { 29 | commands.push(`npm install ${installs.concat(upgrades).join(' ')}`); 30 | } 31 | if (devInstalls.length) { 32 | commands.push(`npm install -D ${devInstalls}`); 33 | } 34 | } 35 | return commands; 36 | } 37 | -------------------------------------------------------------------------------- /src/solution.ts: -------------------------------------------------------------------------------- 1 | import * as semver from 'semver'; 2 | import { exec } from 'shelljs'; 3 | import { Dependency } from './packageUtils'; 4 | 5 | function semverReverseSort(a, b) { 6 | const lt = semver.lt(a, b); 7 | const gt = semver.gt(a, b); 8 | if (!lt && !gt) { 9 | return 0; 10 | } else if (lt) { 11 | return 1; 12 | } 13 | return -1; 14 | } 15 | 16 | export interface Resolution { 17 | problem: Dependency; 18 | resolution: string; 19 | resolutionType: 'upgrade' | 'install' | 'devInstall'; 20 | } 21 | 22 | export function findPossibleResolutions(problems: Dependency[], allPeerDependencies: Dependency[], ): Resolution[] { 23 | const uniq: Dependency[] = problems.reduce((acc, problem) => acc.some(dep => dep.name === problem.name) ? acc : acc.concat(problem), []); 24 | return uniq.map(problem => { 25 | const shouldUpgrade = !!problem.installedVersion; 26 | const resolutionType = shouldUpgrade ? 'upgrade' : problem.isPeerDevDependency ? 'devInstall' : 'install'; 27 | const resolutionVersion = findPossibleResolution(problem.name, allPeerDependencies); 28 | const resolution = resolutionVersion ? `${problem.name}@${resolutionVersion}` : null; 29 | 30 | return { problem, resolution, resolutionType } as Resolution; 31 | }) 32 | } 33 | 34 | function findPossibleResolution(packageName, allPeerDeps) { 35 | const requiredPeerVersions = allPeerDeps.filter(dep => dep.name === packageName); 36 | // todo: skip this step if only one required peer version and it's an exact version 37 | const command = `npm view ${packageName} versions`; 38 | let rawVersionsInfo; 39 | try { 40 | rawVersionsInfo = exec(command, { silent: true }).stdout; 41 | const availableVersions = JSON.parse(rawVersionsInfo.replace(/'/g, '"')).sort(semverReverseSort); 42 | return availableVersions.find(ver => requiredPeerVersions.every(peerVer => { 43 | return semver.satisfies(ver, peerVer.version, { includePrerelease: true }); 44 | })); 45 | } catch (err) { 46 | console.error(`Error while running command: '${command}'`); 47 | console.error(err); 48 | console.error(); 49 | console.error('npm output:'); 50 | console.error(rawVersionsInfo); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import * as yarrrrgs from 'yargs'; 4 | import { checkPeerDependencies } from './checkPeerDependencies'; 5 | import { getPackageManager } from './packageManager'; 6 | 7 | const options = yarrrrgs 8 | .pkgConf('checkPeerDependencies') 9 | .usage('Options may also be stored in package.json under the "checkPeerDependencies" key') 10 | .option('help', { 11 | alias: 'h', 12 | boolean: true, 13 | description: `Print usage information`, 14 | }) 15 | .option('yarn', { 16 | boolean: true, 17 | description: `Force yarn package manager`, 18 | }) 19 | .option('npm', { 20 | boolean: true, 21 | description: `Force npm package manager`, 22 | }) 23 | .option('orderBy', { 24 | choices: ['depender', 'dependee'], 25 | default: 'dependee', 26 | description: 'Order the output by depender or dependee', 27 | }) 28 | .option('debug', { 29 | boolean: true, 30 | default: false, 31 | description: 'Print debugging information', 32 | }) 33 | .option('verbose', { 34 | boolean: true, 35 | default: false, 36 | description: 'Prints every peer dependency, even those that are met', 37 | }) 38 | .option('ignore', { 39 | string: true, 40 | array: true, 41 | default: [], 42 | description: 'package name to ignore (may specify multiple)', 43 | }) 44 | .option('runOnlyOnRootDependencies', { 45 | boolean: true, 46 | default: false, 47 | description: 'Run tool only on package root dependencies', 48 | }) 49 | .option('findSolutions', { 50 | boolean: true, 51 | default: false, 52 | description: 'Search for solutions and print package installation commands', 53 | }) 54 | .option('install', { 55 | boolean: true, 56 | default: false, 57 | description: 'Install missing or incorrect peerDependencies', 58 | }) 59 | .check(argv => { 60 | if (argv.yarn && argv.npm) { 61 | throw new Error('Specify either --yarn or --npm but not both'); 62 | } 63 | return true; 64 | }).argv as CliOptions; 65 | 66 | export interface CliOptions { 67 | help: boolean; 68 | yarn: boolean; 69 | verbose: boolean; 70 | debug: boolean; 71 | npm: boolean; 72 | ignore: string[]; 73 | runOnlyOnRootDependencies: boolean; 74 | orderBy: 'depender' | 'dependee'; 75 | findSolutions: boolean; 76 | install: boolean; 77 | } 78 | 79 | if (options.help) { 80 | process.exit(-2); 81 | } 82 | 83 | const packageManager = getPackageManager(options.yarn, options.npm); 84 | checkPeerDependencies(packageManager, options); 85 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## check-peer-dependencies 2 | 3 | **Checks peer dependencies of the current NodeJS package. Offers solutions for any that are unmet.** 4 | 5 | This utility will recursively find all `peerDependencies` in your project's `dependencies` list. 6 | It checks if you have installed a package that meets the required peer dependency versions. 7 | If any peer dependencies are *unmet*, it will search for a compatible version to install. 8 | 9 | Note: you must run `npm install` or `yarn` first in order to install all normal dependencies. 10 | 11 | usage: 12 | 13 | ```bash 14 | npx check-peer-dependencies [--yarn|--npm] [--install] [--help] 15 | ``` 16 | 17 | 18 | Options: 19 | ``` 20 | -h, --help Print usage information [boolean] 21 | --version Show version number [boolean] 22 | --yarn Force yarn package manager [boolean] 23 | --npm Force npm package manager [boolean] 24 | --orderBy Order the output by depender or dependee 25 | [choices: "depender", "dependee"] [default: "dependee"] 26 | --debug Print debugging information 27 | [boolean] [default: false] 28 | --verbose Prints every peer dependency, even those that 29 | are met [boolean] [default: false] 30 | --ignore package name to ignore (may specify multiple) 31 | [array] [default: []] 32 | --runOnlyOnRootDependencies Run tool only on package root dependencies 33 | [boolean] [default: false] 34 | --findSolutions Search for solutions and print package 35 | installation commands 36 | [boolean] [default: false] 37 | --install Install missing or incorrect peerDependencies 38 | [boolean] [default: false] 39 | ``` 40 | 41 | --- 42 | 43 | ## Installing peerDependencies as devDependencies 44 | 45 | If a package has a peerDependency that should be installed as a devDependency by, 46 | it can list the package name in "peerDevDependencies". 47 | This is not a standard and is only understood by this `check-peer-dependencies`. 48 | 49 | ```json 50 | { 51 | "name": "somepackage", 52 | "peerDependencies": { 53 | "react": "16.x", 54 | "react-dom": "16.x", 55 | "typescript": "~3.8.0", 56 | "eslint": "*" 57 | }, 58 | "peerDevDependencies": ["typescript", "eslint"] 59 | } 60 | ``` 61 | 62 | ## Example outputs: 63 | 64 | ### No problems 65 | 66 | ```bash 67 | ~/projects/uirouter/sample-app-react master 68 | ❯ npx check-peer-dependencies 69 | ✅ All peer dependencies are met 70 | ``` 71 | 72 | ### Missing peer dependency, solution found 73 | 74 | ```bash 75 | ~/projects/uirouter/angular-hybrid master ⇣ 76 | ❯ npx check-peer-dependencies 77 | ❌ @uirouter/angular@5.0.0 requires @angular/router ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 (@angular/router is not installed) 78 | 79 | Searching for solutions: 80 | yarn add @angular/router@8.2.10 81 | ``` 82 | 83 | ### Incorrect peer dependencies, some solutions found 84 | 85 | ```bash 86 | ❯ npx check-peer-dependencies 87 | ❌ @uirouter/angular@5.0.0 requires @angular/common ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 (9.0.0-next.9 is installed) 88 | ❌ @uirouter/angular@5.0.0 requires @angular/core ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 (9.0.0-next.9 is installed) 89 | ❌ @uirouter/angular@5.0.0 requires @angular/router ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 (9.0.0-next.9 is installed) 90 | 91 | Searching for solutions: 92 | ❌ Unable to find a version of @angular/common that satisfies the following peerDependencies: 9.0.0-next.9 and ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 93 | ❌ Unable to find a version of @angular/core that satisfies the following peerDependencies: 9.0.0-next.9 and ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 94 | 95 | yarn upgrade @angular/router@8.2.10 96 | ``` 97 | 98 | -------------------------------------------------------------------------------- /src/checkPeerDependencies.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import * as semver from 'semver'; 3 | 4 | import { exec } from 'shelljs'; 5 | import { CliOptions } from './cli'; 6 | import { getCommandLines } from './packageManager'; 7 | import { Dependency, gatherPeerDependencies, getInstalledVersion, isSameDep } from './packageUtils'; 8 | import { findPossibleResolutions, Resolution } from './solution'; 9 | 10 | function getAllNestedPeerDependencies(options: CliOptions): Dependency[] { 11 | const gatheredDependencies = gatherPeerDependencies(".", options); 12 | 13 | function applySemverInformation(dep: Dependency): Dependency { 14 | const installedVersion = getInstalledVersion(dep); 15 | const semverSatisfies = installedVersion ? semver.satisfies(installedVersion, dep.version, { includePrerelease: true }) : false; 16 | const isYalc = !!/-[a-f0-9]+-yalc$/.exec(installedVersion); 17 | 18 | return { ...dep, installedVersion, semverSatisfies, isYalc }; 19 | } 20 | 21 | function applyIgnoreInformation (dep: Dependency): Dependency { 22 | const isIgnored = options.ignore.includes(dep.name) 23 | return {...dep, isIgnored} 24 | } 25 | 26 | return gatheredDependencies.map(applySemverInformation).map(applyIgnoreInformation); 27 | } 28 | 29 | let recursiveCount = 0; 30 | 31 | const isProblem = (dep: Dependency) => !dep.semverSatisfies && !dep.isIgnored && !dep.isYalc && 32 | (!dep.isPeerOptionalDependency || !!dep.installedVersion); 33 | 34 | const reportPeerDependencyStatus = (dep: Dependency, byDepender: boolean, showSatisfiedDep: boolean, verbose: boolean) => { 35 | const message = byDepender ? 36 | `${dep.depender.name}@${dep.depender.version} requires ${dep.name} ${dep.version}` : 37 | `${dep.name} ${dep.version} is required by ${dep.depender.name}@${dep.depender.version}`; 38 | 39 | if (dep.semverSatisfies) { 40 | if (showSatisfiedDep) { 41 | console.log(` ✅ ${message} (${dep.installedVersion} is installed)`); 42 | } 43 | } else if (dep.isYalc) { 44 | console.log(` ☑️ ${message} (${dep.installedVersion} is installed via yalc)`); 45 | } else if (dep.isIgnored) { 46 | if (verbose) { 47 | console.log(` ☑️ ${message} IGNORED (${dep.name} is not installed)`); 48 | } 49 | } else if (dep.installedVersion) { 50 | if (dep.isPeerOptionalDependency) { 51 | console.log(` ❌ ${message}) OPTIONAL (${dep.installedVersion} is installed)`); 52 | } else { 53 | console.log(` ❌ ${message}) (${dep.installedVersion} is installed)`); 54 | } 55 | } else if (dep.isPeerOptionalDependency) { 56 | if (verbose) { 57 | console.log(` ☑️ ${message} OPTIONAL (${dep.name} is not installed)`); 58 | } 59 | } else { 60 | console.log(` ❌ ${message} (${dep.name} is not installed)`); 61 | } 62 | }; 63 | 64 | function findSolutions(problems: Dependency[], allNestedPeerDependencies: Dependency[]) { 65 | console.log(); 66 | console.log(`Searching for solutions for ${problems.length} missing dependencies...`); 67 | console.log(); 68 | const resolutions: Resolution[] = findPossibleResolutions(problems, allNestedPeerDependencies); 69 | const resolutionsWithSolutions = resolutions.filter(r => r.resolution); 70 | const nosolution = resolutions.filter(r => !r.resolution); 71 | 72 | nosolution.forEach(solution => { 73 | const name = solution.problem.name; 74 | const errorPrefix = `Unable to find a version of ${name} that satisfies the following peerDependencies:`; 75 | const peerDepRanges = allNestedPeerDependencies.filter(dep => dep.name === name) 76 | .reduce((acc, dep) => acc.includes(dep.version) ? acc : acc.concat(dep.version), []); 77 | console.error(` ❌ ${errorPrefix} ${peerDepRanges.join(" and ")}`) 78 | }); 79 | 80 | 81 | if (nosolution.length > 0) { 82 | console.error(); 83 | } 84 | 85 | return { resolutionsWithSolutions, nosolution }; 86 | } 87 | 88 | function installPeerDependencies(commandLines: any[], options: CliOptions, nosolution: Resolution[], packageManager: string) { 89 | console.log('Installing peerDependencies...'); 90 | console.log(); 91 | commandLines.forEach(command => { 92 | console.log(`$ ${command}`); 93 | exec(command); 94 | console.log(); 95 | }); 96 | 97 | const newProblems = getAllNestedPeerDependencies(options) 98 | .filter(dep => isProblem(dep)) 99 | .filter(dep => !nosolution.some(x => isSameDep(x.problem, dep))); 100 | 101 | if (nosolution.length === 0 && newProblems.length === 0) { 102 | console.log('All peer dependencies are met'); 103 | } 104 | 105 | if (newProblems.length > 0) { 106 | console.log(`Found ${newProblems.length} new unmet peerDependencies...`); 107 | if (++recursiveCount < 5) { 108 | return checkPeerDependencies(packageManager, options); 109 | } else { 110 | console.error('Recursion limit reached (5)'); 111 | process.exit(5) 112 | } 113 | } 114 | return; 115 | } 116 | 117 | function report(options: CliOptions, allNestedPeerDependencies: Dependency[]) { 118 | if (options.orderBy === 'depender') { 119 | allNestedPeerDependencies.sort((a, b) => `${a.depender}${a.name}`.localeCompare(`${b.depender}${b.name}`)); 120 | } else if (options.orderBy == 'dependee') { 121 | allNestedPeerDependencies.sort((a, b) => `${a.name}${a.depender}`.localeCompare(`${b.name}${b.depender}`)); 122 | } 123 | 124 | allNestedPeerDependencies.forEach(dep => { 125 | const relatedPeerDeps = allNestedPeerDependencies.filter(other => other.name === dep.name && other !== dep); 126 | const showIfSatisfied = options.verbose || relatedPeerDeps.some(dep => isProblem(dep)); 127 | reportPeerDependencyStatus(dep, options.orderBy === 'depender', showIfSatisfied, options.verbose); 128 | }); 129 | } 130 | 131 | export function checkPeerDependencies(packageManager: string, options: CliOptions) { 132 | const allNestedPeerDependencies = getAllNestedPeerDependencies(options); 133 | report(options, allNestedPeerDependencies); 134 | 135 | const problems = allNestedPeerDependencies.filter(dep => isProblem(dep)); 136 | 137 | if (!problems.length) { 138 | console.log(' ✅ All peer dependencies are met'); 139 | return; 140 | } 141 | 142 | if (options.install) { 143 | const { nosolution, resolutionsWithSolutions } = findSolutions(problems, allNestedPeerDependencies); 144 | const commandLines = getCommandLines(packageManager, resolutionsWithSolutions); 145 | 146 | if (commandLines.length) { 147 | return installPeerDependencies(commandLines, options, nosolution, packageManager); 148 | } 149 | } else if (options.findSolutions) { 150 | const { resolutionsWithSolutions } = findSolutions(problems, allNestedPeerDependencies); 151 | const commandLines = getCommandLines(packageManager, resolutionsWithSolutions); 152 | 153 | if (commandLines.length) { 154 | console.log(); 155 | console.log(`Install peerDependencies using ${commandLines.length > 1 ? 'these commands:' : 'this command'}:`); 156 | console.log(); 157 | commandLines.forEach(command => console.log(command)); 158 | console.log(); 159 | } 160 | } else { 161 | console.log(); 162 | console.log(`Search for solutions using this command:`); 163 | console.log(); 164 | console.log(`npx check-peer-dependencies --findSolutions`); 165 | console.log(); 166 | console.log(`Install peerDependencies using this command:`); 167 | console.log(); 168 | console.log(`npx check-peer-dependencies --install`); 169 | console.log(); 170 | } 171 | 172 | process.exit(1); 173 | } 174 | -------------------------------------------------------------------------------- /src/packageUtils.ts: -------------------------------------------------------------------------------- 1 | import * as fs from 'fs'; 2 | import * as path from "path"; 3 | import * as resolve from 'resolve'; 4 | import { CliOptions } from './cli'; 5 | import { readJson } from './readJson'; 6 | 7 | interface PackageJson { 8 | name: string; 9 | version: string; 10 | dependencies: { 11 | [key: string]: string; 12 | }; 13 | devDependencies: { 14 | [key: string]: string; 15 | }; 16 | peerDependencies: { 17 | [key: string]: string; 18 | }; 19 | // deprecated: use peerDependenciesMeta.foo.dev 20 | peerDevDependencies: string[]; 21 | // See: https://github.com/yarnpkg/rfcs/blob/master/accepted/0000-optional-peer-dependencies.md 22 | peerDependenciesMeta: { 23 | [key: string]: { 24 | optional?: boolean; 25 | // non-standard 26 | dev?: boolean; 27 | }; 28 | }; 29 | optionalDependencies: { 30 | [key: string]: string; 31 | }; 32 | } 33 | 34 | export type DependencyType = 'dependencies' | 'devDependencies' | 'peerDependencies' | 'optionalDependencies'; 35 | 36 | export interface Dependency { 37 | name: string; 38 | version: string; 39 | depender: PackageMeta; 40 | type: DependencyType 41 | isPeerOptionalDependency: boolean; 42 | isPeerDevDependency: boolean; 43 | installedVersion?: string | undefined; 44 | semverSatisfies?: boolean; 45 | isYalc?: boolean; 46 | isIgnored?: boolean; 47 | } 48 | 49 | interface PackageMeta { 50 | name: string; 51 | version: string; 52 | packagePath: string; 53 | dependencies: Dependency[]; 54 | devDependencies: Dependency[]; 55 | optionalDependencies: Dependency[]; 56 | peerDependencies: Dependency[]; 57 | } 58 | 59 | type DependencyWalkVisitor = (packagePath: string, packageJson: PackageJson, packageMeta: PackageMeta) => void; 60 | 61 | export function gatherPeerDependencies(packagePath, options: CliOptions): Dependency[] { 62 | let peerDeps: Dependency[] = []; 63 | const visitor: DependencyWalkVisitor = (path, json, deps) => { 64 | peerDeps = peerDeps.concat(deps.peerDependencies); 65 | }; 66 | walkPackageDependencyTree(packagePath, false, visitor, [], options); 67 | 68 | // Eliminate duplicates 69 | return peerDeps.reduce((acc: Dependency[], dep: Dependency) => { 70 | return acc.some(dep2 => isSameDep(dep, dep2)) ? acc : acc.concat(dep); 71 | }, [] as Dependency[]); 72 | } 73 | 74 | export function walkPackageDependencyTree(packagePath: string, isAncestorDevDependency: boolean, visitor: DependencyWalkVisitor, visitedPaths: string[], options: CliOptions) { 75 | const isRootPackage = visitedPaths.length === 0; 76 | 77 | if (visitedPaths.includes(packagePath)) { 78 | return; 79 | } 80 | visitedPaths.push(packagePath); 81 | 82 | const packageJsonPath = path.join(packagePath, 'package.json'); 83 | 84 | if (!fs.existsSync(packageJsonPath)) { 85 | throw new Error(`package.json missing at ${packageJsonPath}.`); 86 | } 87 | 88 | const packageJson = readJson(packageJsonPath) as PackageJson; 89 | const packageDependencies = getPackageMeta(packagePath, packageJson, isAncestorDevDependency); 90 | 91 | if (options.debug) { 92 | console.log(packageJsonPath); 93 | packageDependencies.peerDependencies.forEach(dep => console.log(dep)) 94 | } 95 | 96 | visitor(packagePath, packageJson, packageDependencies); 97 | 98 | function walkDependency(dependency: Dependency, isAncestorDevDependency: boolean) { 99 | if (resolve.isCore(dependency.name)) { 100 | return; 101 | } 102 | 103 | const dependencyPath = resolvePackageDir(packagePath, dependency.name); 104 | 105 | if (!dependencyPath) { 106 | if (packageDependencies.optionalDependencies.some(x => x.name === dependency.name)) { 107 | // don't fail if the missing dependency is in optionalDependencies 108 | if (options.debug) { 109 | console.log(`Ignoring missing optional dependency ${dependency.name} from ${packagePath}`); 110 | } 111 | return; 112 | } else { 113 | throw new Error(`WARN: Unable to resolve package ${dependency.name} from ${packagePath}`) 114 | } 115 | } 116 | 117 | walkPackageDependencyTree(dependencyPath, isAncestorDevDependency, visitor, visitedPaths, options); 118 | } 119 | 120 | if (isRootPackage) packageDependencies.devDependencies.forEach(dep => walkDependency(dep, true)); 121 | if (isRootPackage || !options.runOnlyOnRootDependencies) packageDependencies.dependencies.forEach(dep => walkDependency (dep, false)); 122 | } 123 | 124 | function buildDependencyArray(type: Dependency["type"], pkgJson: PackageJson, depender: PackageMeta, isAncestorDevDependency: boolean): Dependency[] { 125 | const dependenciesObject = pkgJson[type] || {}; 126 | const peerDependenciesMeta = pkgJson.peerDependenciesMeta || {}; 127 | // backwards compat 128 | const peerDevDependencies = pkgJson.peerDevDependencies || []; 129 | 130 | const packageNames = Object.keys(dependenciesObject); 131 | 132 | return packageNames.map(name => { 133 | const isPeerOptionalDependency= !!peerDependenciesMeta[name]?.optional; 134 | const isPeerDevDependency = isAncestorDevDependency || !!peerDependenciesMeta[name]?.dev || !!peerDevDependencies.includes(name); 135 | 136 | return { 137 | name, 138 | type, 139 | version: dependenciesObject[name], 140 | isPeerDevDependency, 141 | isPeerOptionalDependency, 142 | depender, 143 | }; 144 | }); 145 | } 146 | 147 | export function getPackageMeta(packagePath: string, packageJson: PackageJson, isAncestorDevDependency: boolean): PackageMeta { 148 | const { name, version} = packageJson; 149 | const packageMeta = { name, version, packagePath } as PackageMeta; 150 | 151 | packageMeta.dependencies = buildDependencyArray("dependencies", packageJson, packageMeta, isAncestorDevDependency); 152 | packageMeta.devDependencies = buildDependencyArray("devDependencies", packageJson, packageMeta, isAncestorDevDependency); 153 | packageMeta.optionalDependencies = buildDependencyArray("optionalDependencies", packageJson, packageMeta, isAncestorDevDependency); 154 | packageMeta.peerDependencies = buildDependencyArray("peerDependencies", packageJson, packageMeta, isAncestorDevDependency); 155 | 156 | return packageMeta; 157 | } 158 | 159 | export function resolvePackageDir(basedir: string, packageName: string) { 160 | let packagePath; 161 | 162 | // In resolve() v2.x this callback has a different signature 163 | // function packageFilter(pkg, pkgfile, pkgdir) { 164 | function packageFilter(pkg, pkgdir) { 165 | if (!packagePath || pkg.version) { 166 | packagePath = pkgdir; 167 | } 168 | return pkg; 169 | } 170 | 171 | try { 172 | resolve.sync(packageName, { basedir, packageFilter }); 173 | } catch (ignored) { 174 | // resolve.sync throws if no main: is present 175 | // Some packages (such as @types/*) do not have a main 176 | // As long as we have a packagePath, it's fine 177 | } 178 | 179 | // noinspection JSUnusedAssignment 180 | return packagePath; 181 | } 182 | 183 | export function getInstalledVersion(dep: Dependency): string | undefined { 184 | const peerDependencyDir = resolvePackageDir(".", dep.name); 185 | if (!peerDependencyDir) { 186 | return undefined; 187 | } 188 | const packageJson = readJson(path.resolve(peerDependencyDir, 'package.json')); 189 | const isYalc = fs.existsSync(path.resolve(peerDependencyDir, 'yalc.sig')); 190 | return isYalc ? `${packageJson.version}-yalc` : packageJson.version; 191 | } 192 | 193 | export function isSameDep(a: Dependency, b: Dependency) { 194 | const keys: Array = [ "name", "version", "installedVersion", "semverSatisfies", "isYalc", "isPeerDevDependency", ]; 195 | return keys.every(key => a[key] === b[key]) && 196 | a.depender.name === b.depender.name && 197 | a.depender.version === b.depender.version && 198 | a.depender.packagePath === b.depender.packagePath; 199 | } 200 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 4.3.0 (2023-10-17) 2 | [Compare `check-peer-dependencies` versions 4.2.0 and 4.3.0](https://github.com/christopherthielen/check-peer-dependencies/compare/4.2.0...4.3.0) 3 | 4 | ### Bug Fixes 5 | 6 | * non-satisfied optional dependency should fail ([7d43b0d](https://github.com/christopherthielen/check-peer-dependencies/commit/7d43b0d)) 7 | 8 | 9 | 10 | 11 | # 4.2.0 (2023-03-13) 12 | [Compare `check-peer-dependencies` versions 4.1.0 and 4.2.0](https://github.com/christopherthielen/check-peer-dependencies/compare/4.1.0...4.2.0) 13 | 14 | ### Bug Fixes 15 | 16 | * Install peer deps as devDependencies if the peer dep came from a dev dependency ([6ef3021](https://github.com/christopherthielen/check-peer-dependencies/commit/6ef3021)), closes [#21](https://github.com/christopherthielen/check-peer-dependencies/issues/21) 17 | * Method for determining the installed version fails [#27](https://github.com/christopherthielen/check-peer-dependencies/issues/27) ([8058585](https://github.com/christopherthielen/check-peer-dependencies/commit/8058585)) 18 | 19 | 20 | 21 | 22 | # 4.1.0 (2021-11-28) 23 | [Compare `check-peer-dependencies` versions 4.0.0 and 4.1.0](https://github.com/christopherthielen/check-peer-dependencies/compare/4.0.0...4.1.0) 24 | 25 | ### Features 26 | 27 | * Add support for ignoring peer dependencies (via cli option or config stored in package.json) ([5994c9c](https://github.com/christopherthielen/check-peer-dependencies/commit/5994c9c)) 28 | * load checkPeerDependencies config from package.json (and merge with CLI options) ([e2f0fee](https://github.com/christopherthielen/check-peer-dependencies/commit/e2f0fee)) 29 | 30 | 31 | 32 | 33 | # 4.0.0 (2020-12-27) 34 | [Compare `check-peer-dependencies` versions 3.1.0 and 4.0.0](https://github.com/christopherthielen/check-peer-dependencies/compare/3.1.0...4.0.0) 35 | 36 | ### Features 37 | 38 | * **prerelease:** include prerelease when matching ranges, i.e. the range ">=6.0.0" matches "7.0.0-beta.1" ([0493379](https://github.com/christopherthielen/check-peer-dependencies/commit/0493379)) 39 | 40 | 41 | ### BREAKING CHANGES 42 | 43 | * **prerelease:** Matches prerelease versions 44 | 45 | 46 | 47 | 48 | # 3.1.0 (2020-12-23) 49 | [Compare `check-peer-dependencies` versions 3.0.0 and 3.1.0](https://github.com/christopherthielen/check-peer-dependencies/compare/3.0.0...3.1.0) 50 | 51 | ### Features 52 | 53 | * **peerDependencyMeta:** support peerDependencyMeta in package.json to ignore optional peer dependencies ([4e3b757](https://github.com/christopherthielen/check-peer-dependencies/commit/4e3b757)) 54 | * See: https://github.com/yarnpkg/rfcs/blob/master/accepted/0000-optional-peer-dependencies.md 55 | 56 | 57 | 58 | # 3.0.0 (2020-12-22) 59 | [Compare `check-peer-dependencies` versions 2.0.6 and 3.0.0](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.6...3.0.0) 60 | 61 | ### Features 62 | 63 | * **findSolutions:** Add a toggle to find solutions and print installation commands. ([c34735a](https://github.com/christopherthielen/check-peer-dependencies/commit/c34735a)) 64 | * **orderBy:** Change default orderBy to 'dependee' ([e77e069](https://github.com/christopherthielen/check-peer-dependencies/commit/e77e069)) 65 | * **report:** For a given unmet peer dependency, show every related peer dependency, even if currently met ([516a259](https://github.com/christopherthielen/check-peer-dependencies/commit/516a259)) 66 | 67 | 68 | ### BREAKING CHANGES 69 | 70 | * **orderBy:** default order changed from 'depender' to 'dependee' 71 | * **findSolutions:** no longer prints installation commands by default, instead prints a message about using --install 72 | 73 | 74 | 75 | 76 | ## 2.0.6 (2020-09-20) 77 | [Compare `check-peer-dependencies` versions 2.0.5 and 2.0.6](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.5...2.0.6) 78 | 79 | ### Bug Fixes 80 | 81 | * Ignore missing optionalDependencies ([25a89a7](https://github.com/christopherthielen/check-peer-dependencies/commit/25a89a7)) 82 | 83 | 84 | 85 | 86 | ## 2.0.5 (2020-09-19) 87 | [Compare `check-peer-dependencies` versions 2.0.3 and 2.0.5](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.3...2.0.5) 88 | 89 | ### Features 90 | 91 | * Add an option to run tool in consumer package root dependencies only. ([#7](https://github.com/christopherthielen/check-peer-dependencies/issues/7)) ([cd8f75a](https://github.com/christopherthielen/check-peer-dependencies/commit/cd8f75a)) 92 | 93 | 94 | 95 | 96 | ## 2.0.4 (2020-09-19) 97 | [Compare `check-peer-dependencies` versions 2.0.3 and 2.0.4](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.3...2.0.4) 98 | 99 | ### Features 100 | 101 | * Add an option to run tool in consumer package root dependencies only. ([#7](https://github.com/christopherthielen/check-peer-dependencies/issues/7)) ([cd8f75a](https://github.com/christopherthielen/check-peer-dependencies/commit/cd8f75a)) 102 | 103 | 104 | 105 | 106 | ## 2.0.3 (2020-09-06) 107 | [Compare `check-peer-dependencies` versions 2.0.2 and 2.0.3](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.2...2.0.3) 108 | 109 | ### Bug Fixes 110 | 111 | * print warning if dependency path is not found instead of erroring. This allows optional dependencies to be ignored. ([37c0296](https://github.com/christopherthielen/check-peer-dependencies/commit/37c0296)) 112 | 113 | 114 | 115 | 116 | 117 | ## 2.0.2 (2020-05-25) 118 | [Compare `check-peer-dependencies` versions 2.0.1 and 2.0.2](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.1...2.0.2) 119 | 120 | ### Bug Fixes 121 | 122 | * **peerDevDependencies:** Make peerDevDependency includes check a bit safer ([2a1a183](https://github.com/christopherthielen/check-peer-dependencies/commit/2a1a183)) 123 | * **walkPackageDependency:** only walk dev deps for the root package ([e69c385](https://github.com/christopherthielen/check-peer-dependencies/commit/e69c385)) 124 | 125 | 126 | ### Features 127 | 128 | * **walkPackageDependencyTree:** Check devDependencies too ([9eba197](https://github.com/christopherthielen/check-peer-dependencies/commit/9eba197)) 129 | 130 | 131 | 132 | 133 | ## 2.0.1 (2020-04-10) 134 | [Compare `check-peer-dependencies` versions 2.0.0 and 2.0.1](https://github.com/christopherthielen/check-peer-dependencies/compare/2.0.0...2.0.1) 135 | 136 | ### Bug Fixes 137 | 138 | * **peerDevDependencies:** Use an array of package names in 'peerDevDependencies' in conjunction with the standard 'peerDependencies' object to install peer deps as devDependencies. ([681a80b](https://github.com/christopherthielen/check-peer-dependencies/commit/681a80b)) 139 | 140 | 141 | 142 | 143 | # 2.0.0 (2020-04-10) 144 | [Compare `check-peer-dependencies` versions 1.0.11 and 2.0.0](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.11...2.0.0) 145 | 146 | ### Features 147 | 148 | * **peerDevDependencies:** Add support for 'peerDevDependencies' -- 'peerDependencies' that should be installed as 'devDependencies' ([47d40ef](https://github.com/christopherthielen/check-peer-dependencies/commit/47d40ef)) 149 | 150 | 151 | 152 | 153 | ## 1.0.11 (2020-03-16) 154 | [Compare `check-peer-dependencies` versions 1.0.10 and 1.0.11](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.10...1.0.11) 155 | 156 | **feat**: Exit with exit code 1 if unmet peer dependencies are detected 157 | 158 | ## 1.0.10 (2020-03-03) 159 | [Compare `check-peer-dependencies` versions 1.0.9 and 1.0.10](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.9...1.0.10) 160 | 161 | ### Features 162 | 163 | * **verbose:** Turn off verbose logging by default ([04cde8a](https://github.com/christopherthielen/check-peer-dependencies/commit/04cde8a)) 164 | 165 | 166 | 167 | 168 | ## 1.0.9 (2019-12-31) 169 | [Compare `check-peer-dependencies` versions 1.0.8 and 1.0.9](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.8...1.0.9) 170 | 171 | ### Features 172 | 173 | * **debug:** Added a --debug cli flag ([862232e](https://github.com/christopherthielen/check-peer-dependencies/commit/862232e)) 174 | * **orderBy:** Added a --orderBy cli flag ([9e7b8af](https://github.com/christopherthielen/check-peer-dependencies/commit/9e7b8af)) 175 | 176 | 177 | 178 | 179 | ## 1.0.8 (2019-12-27) 180 | [Compare `check-peer-dependencies` versions 1.0.7 and 1.0.8](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.7...1.0.8) 181 | 182 | ### Bug Fixes 183 | 184 | * Revert fix for breaking change in resolve package after they reverted the breaking change itself. ([d25c43a](https://github.com/christopherthielen/check-peer-dependencies/commit/d25c43a)) 185 | 186 | 187 | 188 | 189 | ## 1.0.7 (2019-11-25) 190 | [Compare `check-peer-dependencies` versions 1.0.6 and 1.0.7](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.6...1.0.7) 191 | 192 | ### Bug Fixes 193 | 194 | * Update packageFilter for breaking change in resolve package ([15ade47](https://github.com/christopherthielen/check-peer-dependencies/commit/15ade47)) 195 | 196 | 197 | 198 | 199 | ## 1.0.6 (2019-11-25) 200 | [Compare `check-peer-dependencies` versions 1.0.5 and 1.0.6](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.5...1.0.6) 201 | 202 | ### Features 203 | 204 | * sort peer dependencies by depender package name first ([3d656a6](https://github.com/christopherthielen/check-peer-dependencies/commit/3d656a6)) 205 | * when recursively installing peer deps, don't re-process previously unmet peer deps ([ce9fe3e](https://github.com/christopherthielen/check-peer-dependencies/commit/ce9fe3e)) 206 | 207 | 208 | 209 | 210 | ## 1.0.5 (2019-11-24) 211 | [Compare `check-peer-dependencies` versions 1.0.4 and 1.0.5](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.4...1.0.5) 212 | 213 | ### Features 214 | 215 | * Recursively check for new unmet peer dependencies after installing when using --install ([b632efb](https://github.com/christopherthielen/check-peer-dependencies/commit/b632efb)) 216 | 217 | 218 | 219 | 220 | ## 1.0.4 (2019-10-26) 221 | [Compare `check-peer-dependencies` versions 1.0.3 and 1.0.4](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.3...1.0.4) 222 | 223 | ### Bug Fixes 224 | 225 | * handle recursive package dependencies when walking package deps ([87f6e99](https://github.com/christopherthielen/check-peer-dependencies/commit/87f6e99)) 226 | 227 | 228 | 229 | 230 | ## 1.0.3 (2019-10-26) 231 | [Compare `check-peer-dependencies` versions 1.0.2 and 1.0.3](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.2...1.0.3) 232 | 233 | ### Features 234 | 235 | * **findPossibleResolutions:** Log error message if there is a problem parsing npm view output ([a46c673](https://github.com/christopherthielen/check-peer-dependencies/commit/a46c673)) 236 | 237 | 238 | 239 | 240 | ## 1.0.2 (2019-10-15) 241 | [Compare `check-peer-dependencies` versions 1.0.1 and 1.0.2](https://github.com/christopherthielen/check-peer-dependencies/compare/1.0.1...1.0.2) 242 | 243 | ### Features 244 | 245 | * Add better support for packages installed via yalc ([15af2ac](https://github.com/christopherthielen/check-peer-dependencies/commit/15af2ac)) 246 | 247 | 248 | 249 | 250 | ## 1.0.1 (2019-10-15) 251 | 1.0.1 252 | 253 | ### Features 254 | 255 | * add whitespace to output around package manager commands ([cdd56ed](https://github.com/christopherthielen/check-peer-dependencies/commit/cdd56ed)) 256 | 257 | 258 | ## 1.0.0 (2019-10-14) 259 | 260 | Initial release 261 | -------------------------------------------------------------------------------- /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.12.11" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/helper-validator-identifier@^7.10.4": 13 | version "7.12.11" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 15 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 16 | 17 | "@babel/highlight@^7.10.4": 18 | version "7.10.4" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 20 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.10.4" 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/events@*": 32 | version "3.0.0" 33 | resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" 34 | integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== 35 | 36 | "@types/glob@*": 37 | version "7.1.1" 38 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" 39 | integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== 40 | dependencies: 41 | "@types/events" "*" 42 | "@types/minimatch" "*" 43 | "@types/node" "*" 44 | 45 | "@types/minimatch@*": 46 | version "3.0.3" 47 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 48 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 49 | 50 | "@types/minimist@^1.2.0": 51 | version "1.2.1" 52 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256" 53 | integrity sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg== 54 | 55 | "@types/node@*": 56 | version "12.7.12" 57 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.12.tgz#7c6c571cc2f3f3ac4a59a5f2bd48f5bdbc8653cc" 58 | integrity sha512-KPYGmfD0/b1eXurQ59fXD1GBzhSQfz6/lKBxkaHX9dKTzjXbK68Zt7yGUxUsCS1jeTy/8aL+d9JEr+S54mpkWQ== 59 | 60 | "@types/node@^14.14.16": 61 | version "14.14.16" 62 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.16.tgz#3cc351f8d48101deadfed4c9e4f116048d437b4b" 63 | integrity sha512-naXYePhweTi+BMv11TgioE2/FXU4fSl29HAH1ffxVciNsH3rYXjNP2yM8wqmSm7jS20gM8TIklKiTen+1iVncw== 64 | 65 | "@types/normalize-package-data@^2.4.0": 66 | version "2.4.0" 67 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 68 | integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 69 | 70 | "@types/semver@^7.3.4": 71 | version "7.3.4" 72 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.4.tgz#43d7168fec6fa0988bb1a513a697b29296721afb" 73 | integrity sha512-+nVsLKlcUCeMzD2ufHEYuJ9a2ovstb6Dp52A5VsoKxDXgvE051XgHI/33I1EymwkRGQkwnA0LkhnUzituGs4EQ== 74 | 75 | "@types/shelljs@^0.8.8": 76 | version "0.8.8" 77 | resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.8.tgz#e439c69929b88a2c8123c1a55e09eb708315addf" 78 | integrity sha512-lD3LWdg6j8r0VRBFahJVaxoW0SIcswxKaFUrmKl33RJVeeoNYQAz4uqCJ5Z6v4oIBOsC5GozX+I5SorIKiTcQA== 79 | dependencies: 80 | "@types/glob" "*" 81 | "@types/node" "*" 82 | 83 | "@types/yargs-parser@*": 84 | version "13.1.0" 85 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" 86 | integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== 87 | 88 | "@types/yargs@^15.0.12": 89 | version "15.0.12" 90 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.12.tgz#6234ce3e3e3fa32c5db301a170f96a599c960d74" 91 | integrity sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw== 92 | dependencies: 93 | "@types/yargs-parser" "*" 94 | 95 | "@uirouter/publish-scripts@^2.5.4": 96 | version "2.5.4" 97 | resolved "https://registry.yarnpkg.com/@uirouter/publish-scripts/-/publish-scripts-2.5.4.tgz#facc20b7f3ef4cd6def05805c077edfb3b1bb935" 98 | integrity sha512-zHFHH1V890JF2b6HYPdr2PvJEGyZoL4HxqrZ6dPaJRFP65chbbnWzo0+JXE7QkwPWQrG+TQU30/Golg+ekRuiQ== 99 | dependencies: 100 | check-peer-dependencies "^2.0.6" 101 | conventional-changelog "^3.1.21" 102 | conventional-changelog-ui-router-core "^1.4.2" 103 | find-parent-dir "^0.3.0" 104 | git-semver-tags "^4.0.0" 105 | lodash "^4.17.15" 106 | node-cleanup "^2.1.2" 107 | npm-run-all "^4.1.5" 108 | open "^7.0.4" 109 | readline-sync "^1.4.10" 110 | shelljs "^0.8.4" 111 | shx "^0.3.1" 112 | tmp "^0.2.1" 113 | tweak-sourcemap-paths "0.0.4" 114 | yalc "^1.0.0-pre.35" 115 | yargs "^15.3.1" 116 | 117 | JSONStream@^1.0.4: 118 | version "1.3.5" 119 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 120 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== 121 | dependencies: 122 | jsonparse "^1.2.0" 123 | through ">=2.2.7 <3" 124 | 125 | add-stream@^1.0.0: 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 128 | integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= 129 | 130 | ansi-regex@^5.0.0: 131 | version "5.0.0" 132 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 133 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 134 | 135 | ansi-styles@^3.2.1: 136 | version "3.2.1" 137 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 138 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 139 | dependencies: 140 | color-convert "^1.9.0" 141 | 142 | ansi-styles@^4.0.0: 143 | version "4.2.0" 144 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.0.tgz#5681f0dcf7ae5880a7841d8831c4724ed9cc0172" 145 | integrity sha512-7kFQgnEaMdRtwf6uSfUnVr9gSGC7faurn+J/Mv90/W+iTtN0405/nLdopfMWwchyxhbGYl6TC4Sccn9TUkGAgg== 146 | dependencies: 147 | "@types/color-name" "^1.1.1" 148 | color-convert "^2.0.1" 149 | 150 | ansi-styles@^4.1.0: 151 | version "4.3.0" 152 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 153 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 154 | dependencies: 155 | color-convert "^2.0.1" 156 | 157 | array-find-index@^1.0.1: 158 | version "1.0.2" 159 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 160 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 161 | 162 | array-ify@^1.0.0: 163 | version "1.0.0" 164 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 165 | integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= 166 | 167 | arrify@^1.0.1: 168 | version "1.0.1" 169 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 170 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 171 | 172 | balanced-match@^1.0.0: 173 | version "1.0.0" 174 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 175 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 176 | 177 | brace-expansion@^1.1.7: 178 | version "1.1.11" 179 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 180 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 181 | dependencies: 182 | balanced-match "^1.0.0" 183 | concat-map "0.0.1" 184 | 185 | camelcase-keys@^2.0.0: 186 | version "2.1.0" 187 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 188 | integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= 189 | dependencies: 190 | camelcase "^2.0.0" 191 | map-obj "^1.0.0" 192 | 193 | camelcase-keys@^4.0.0: 194 | version "4.2.0" 195 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 196 | integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= 197 | dependencies: 198 | camelcase "^4.1.0" 199 | map-obj "^2.0.0" 200 | quick-lru "^1.0.0" 201 | 202 | camelcase-keys@^6.2.2: 203 | version "6.2.2" 204 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" 205 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 206 | dependencies: 207 | camelcase "^5.3.1" 208 | map-obj "^4.0.0" 209 | quick-lru "^4.0.1" 210 | 211 | camelcase@^2.0.0: 212 | version "2.1.1" 213 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 214 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= 215 | 216 | camelcase@^4.1.0: 217 | version "4.1.0" 218 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 219 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 220 | 221 | camelcase@^5.0.0, camelcase@^5.3.1: 222 | version "5.3.1" 223 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 224 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 225 | 226 | chalk@^2.0.0, chalk@^2.4.1: 227 | version "2.4.2" 228 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 229 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 230 | dependencies: 231 | ansi-styles "^3.2.1" 232 | escape-string-regexp "^1.0.5" 233 | supports-color "^5.3.0" 234 | 235 | chalk@^4.1.0: 236 | version "4.1.0" 237 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 238 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 239 | dependencies: 240 | ansi-styles "^4.1.0" 241 | supports-color "^7.1.0" 242 | 243 | check-peer-dependencies@^2.0.6: 244 | version "2.0.6" 245 | resolved "https://registry.yarnpkg.com/check-peer-dependencies/-/check-peer-dependencies-2.0.6.tgz#e407e6f3433eac6138765474a114c96a787d7c04" 246 | integrity sha512-q++3UFY2vgZEcUlHSDLR6JmBispEf6az90wNFSfM3hiD+DuZUd0mD+eYGSQMTUVvvEZkaS+B71utvsKYiBPemg== 247 | dependencies: 248 | resolve "^1.14.1" 249 | semver "^7.1.1" 250 | shelljs "^0.8.3" 251 | yargs "^15.0.2" 252 | 253 | cliui@^6.0.0: 254 | version "6.0.0" 255 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 256 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 257 | dependencies: 258 | string-width "^4.2.0" 259 | strip-ansi "^6.0.0" 260 | wrap-ansi "^6.2.0" 261 | 262 | cliui@^7.0.2: 263 | version "7.0.4" 264 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 265 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 266 | dependencies: 267 | string-width "^4.2.0" 268 | strip-ansi "^6.0.0" 269 | wrap-ansi "^7.0.0" 270 | 271 | color-convert@^1.9.0: 272 | version "1.9.3" 273 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 274 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 275 | dependencies: 276 | color-name "1.1.3" 277 | 278 | color-convert@^2.0.1: 279 | version "2.0.1" 280 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 281 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 282 | dependencies: 283 | color-name "~1.1.4" 284 | 285 | color-name@1.1.3: 286 | version "1.1.3" 287 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 288 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 289 | 290 | color-name@~1.1.4: 291 | version "1.1.4" 292 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 293 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 294 | 295 | commander@2.20.0: 296 | version "2.20.0" 297 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 298 | integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== 299 | 300 | compare-func@^1.3.1: 301 | version "1.3.2" 302 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 303 | integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg= 304 | dependencies: 305 | array-ify "^1.0.0" 306 | dot-prop "^3.0.0" 307 | 308 | compare-func@^2.0.0: 309 | version "2.0.0" 310 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" 311 | integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== 312 | dependencies: 313 | array-ify "^1.0.0" 314 | dot-prop "^5.1.0" 315 | 316 | concat-map@0.0.1: 317 | version "0.0.1" 318 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 319 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 320 | 321 | conventional-changelog-angular@^5.0.12: 322 | version "5.0.12" 323 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9" 324 | integrity sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw== 325 | dependencies: 326 | compare-func "^2.0.0" 327 | q "^1.5.1" 328 | 329 | conventional-changelog-atom@^2.0.8: 330 | version "2.0.8" 331 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" 332 | integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== 333 | dependencies: 334 | q "^1.5.1" 335 | 336 | conventional-changelog-codemirror@^2.0.8: 337 | version "2.0.8" 338 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" 339 | integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== 340 | dependencies: 341 | q "^1.5.1" 342 | 343 | conventional-changelog-conventionalcommits@^4.5.0: 344 | version "4.5.0" 345 | resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.5.0.tgz#a02e0b06d11d342fdc0f00c91d78265ed0bc0a62" 346 | integrity sha512-buge9xDvjjOxJlyxUnar/+6i/aVEVGA7EEh4OafBCXPlLUQPGbRUBhBUveWRxzvR8TEjhKEP4BdepnpG2FSZXw== 347 | dependencies: 348 | compare-func "^2.0.0" 349 | lodash "^4.17.15" 350 | q "^1.5.1" 351 | 352 | conventional-changelog-core@^4.2.1: 353 | version "4.2.1" 354 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.1.tgz#f811ad98ab2ff080becafc61407509420c9b447d" 355 | integrity sha512-8cH8/DEoD3e5Q6aeogdR5oaaKs0+mG6+f+Om0ZYt3PNv7Zo0sQhu4bMDRsqAF+UTekTAtP1W/C41jH/fkm8Jtw== 356 | dependencies: 357 | add-stream "^1.0.0" 358 | conventional-changelog-writer "^4.0.18" 359 | conventional-commits-parser "^3.2.0" 360 | dateformat "^3.0.0" 361 | get-pkg-repo "^1.0.0" 362 | git-raw-commits "2.0.0" 363 | git-remote-origin-url "^2.0.0" 364 | git-semver-tags "^4.1.1" 365 | lodash "^4.17.15" 366 | normalize-package-data "^3.0.0" 367 | q "^1.5.1" 368 | read-pkg "^3.0.0" 369 | read-pkg-up "^3.0.0" 370 | shelljs "^0.8.3" 371 | through2 "^4.0.0" 372 | 373 | conventional-changelog-ember@^2.0.9: 374 | version "2.0.9" 375 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" 376 | integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== 377 | dependencies: 378 | q "^1.5.1" 379 | 380 | conventional-changelog-eslint@^3.0.9: 381 | version "3.0.9" 382 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" 383 | integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== 384 | dependencies: 385 | q "^1.5.1" 386 | 387 | conventional-changelog-express@^2.0.6: 388 | version "2.0.6" 389 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" 390 | integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== 391 | dependencies: 392 | q "^1.5.1" 393 | 394 | conventional-changelog-jquery@^3.0.11: 395 | version "3.0.11" 396 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" 397 | integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== 398 | dependencies: 399 | q "^1.5.1" 400 | 401 | conventional-changelog-jshint@^2.0.9: 402 | version "2.0.9" 403 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" 404 | integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== 405 | dependencies: 406 | compare-func "^2.0.0" 407 | q "^1.5.1" 408 | 409 | conventional-changelog-preset-loader@^2.3.4: 410 | version "2.3.4" 411 | resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" 412 | integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== 413 | 414 | conventional-changelog-ui-router-core@^1.4.2: 415 | version "1.4.2" 416 | resolved "https://registry.yarnpkg.com/conventional-changelog-ui-router-core/-/conventional-changelog-ui-router-core-1.4.2.tgz#56d5787163f883e25d3e1f573aef563f85411df7" 417 | integrity sha512-PPgNa8r+FBvC8kCnD4fhHJtJSUZozZstnIgeyrZbe9F4aZuDheR6q3rUUoZwpFdYuCctH4yiDaX62JmNSo1RdA== 418 | dependencies: 419 | compare-func "^1.3.1" 420 | github-url-from-git "^1.4.0" 421 | q "^1.4.1" 422 | 423 | conventional-changelog-writer@^4.0.18: 424 | version "4.0.18" 425 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.18.tgz#10b73baa59c7befc69b360562f8b9cd19e63daf8" 426 | integrity sha512-mAQDCKyB9HsE8Ko5cCM1Jn1AWxXPYV0v8dFPabZRkvsiWUul2YyAqbIaoMKF88Zf2ffnOPSvKhboLf3fnjo5/A== 427 | dependencies: 428 | compare-func "^2.0.0" 429 | conventional-commits-filter "^2.0.7" 430 | dateformat "^3.0.0" 431 | handlebars "^4.7.6" 432 | json-stringify-safe "^5.0.1" 433 | lodash "^4.17.15" 434 | meow "^8.0.0" 435 | semver "^6.0.0" 436 | split "^1.0.0" 437 | through2 "^4.0.0" 438 | 439 | conventional-changelog@^3.1.21: 440 | version "3.1.24" 441 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-3.1.24.tgz#ebd180b0fd1b2e1f0095c4b04fd088698348a464" 442 | integrity sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg== 443 | dependencies: 444 | conventional-changelog-angular "^5.0.12" 445 | conventional-changelog-atom "^2.0.8" 446 | conventional-changelog-codemirror "^2.0.8" 447 | conventional-changelog-conventionalcommits "^4.5.0" 448 | conventional-changelog-core "^4.2.1" 449 | conventional-changelog-ember "^2.0.9" 450 | conventional-changelog-eslint "^3.0.9" 451 | conventional-changelog-express "^2.0.6" 452 | conventional-changelog-jquery "^3.0.11" 453 | conventional-changelog-jshint "^2.0.9" 454 | conventional-changelog-preset-loader "^2.3.4" 455 | 456 | conventional-commits-filter@^2.0.7: 457 | version "2.0.7" 458 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" 459 | integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== 460 | dependencies: 461 | lodash.ismatch "^4.4.0" 462 | modify-values "^1.0.0" 463 | 464 | conventional-commits-parser@^3.2.0: 465 | version "3.2.0" 466 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz#9e261b139ca4b7b29bcebbc54460da36894004ca" 467 | integrity sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ== 468 | dependencies: 469 | JSONStream "^1.0.4" 470 | is-text-path "^1.0.1" 471 | lodash "^4.17.15" 472 | meow "^8.0.0" 473 | split2 "^2.0.0" 474 | through2 "^4.0.0" 475 | trim-off-newlines "^1.0.0" 476 | 477 | core-util-is@~1.0.0: 478 | version "1.0.2" 479 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 480 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 481 | 482 | cross-spawn@^6.0.5: 483 | version "6.0.5" 484 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 485 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 486 | dependencies: 487 | nice-try "^1.0.4" 488 | path-key "^2.0.1" 489 | semver "^5.5.0" 490 | shebang-command "^1.2.0" 491 | which "^1.2.9" 492 | 493 | currently-unhandled@^0.4.1: 494 | version "0.4.1" 495 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 496 | integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= 497 | dependencies: 498 | array-find-index "^1.0.1" 499 | 500 | dargs@^4.0.1: 501 | version "4.1.0" 502 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 503 | integrity sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc= 504 | dependencies: 505 | number-is-nan "^1.0.0" 506 | 507 | dateformat@^3.0.0: 508 | version "3.0.3" 509 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 510 | integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== 511 | 512 | decamelize-keys@^1.0.0, decamelize-keys@^1.1.0: 513 | version "1.1.0" 514 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 515 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 516 | dependencies: 517 | decamelize "^1.1.0" 518 | map-obj "^1.0.0" 519 | 520 | decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: 521 | version "1.2.0" 522 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 523 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 524 | 525 | define-properties@^1.1.2, define-properties@^1.1.3: 526 | version "1.1.3" 527 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 528 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 529 | dependencies: 530 | object-keys "^1.0.12" 531 | 532 | detect-indent@^6.0.0: 533 | version "6.0.0" 534 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" 535 | integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== 536 | 537 | dot-prop@^3.0.0: 538 | version "3.0.0" 539 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 540 | integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc= 541 | dependencies: 542 | is-obj "^1.0.0" 543 | 544 | dot-prop@^5.1.0: 545 | version "5.3.0" 546 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 547 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 548 | dependencies: 549 | is-obj "^2.0.0" 550 | 551 | emoji-regex@^8.0.0: 552 | version "8.0.0" 553 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 554 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 555 | 556 | error-ex@^1.2.0, error-ex@^1.3.1: 557 | version "1.3.2" 558 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 559 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 560 | dependencies: 561 | is-arrayish "^0.2.1" 562 | 563 | es-abstract@^1.4.3: 564 | version "1.15.0" 565 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.15.0.tgz#8884928ec7e40a79e3c9bc812d37d10c8b24cc57" 566 | integrity sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ== 567 | dependencies: 568 | es-to-primitive "^1.2.0" 569 | function-bind "^1.1.1" 570 | has "^1.0.3" 571 | has-symbols "^1.0.0" 572 | is-callable "^1.1.4" 573 | is-regex "^1.0.4" 574 | object-inspect "^1.6.0" 575 | object-keys "^1.1.1" 576 | string.prototype.trimleft "^2.1.0" 577 | string.prototype.trimright "^2.1.0" 578 | 579 | es-to-primitive@^1.2.0: 580 | version "1.2.0" 581 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 582 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 583 | dependencies: 584 | is-callable "^1.1.4" 585 | is-date-object "^1.0.1" 586 | is-symbol "^1.0.2" 587 | 588 | es6-object-assign@^1.0.3: 589 | version "1.1.0" 590 | resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" 591 | integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw= 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 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 602 | 603 | find-parent-dir@^0.3.0: 604 | version "0.3.0" 605 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 606 | integrity sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ= 607 | 608 | find-up@^1.0.0: 609 | version "1.1.2" 610 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 611 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 612 | dependencies: 613 | path-exists "^2.0.0" 614 | pinkie-promise "^2.0.0" 615 | 616 | find-up@^2.0.0: 617 | version "2.1.0" 618 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 619 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 620 | dependencies: 621 | locate-path "^2.0.0" 622 | 623 | find-up@^4.1.0: 624 | version "4.1.0" 625 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 626 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 627 | dependencies: 628 | locate-path "^5.0.0" 629 | path-exists "^4.0.0" 630 | 631 | fs-extra@^8.0.1: 632 | version "8.1.0" 633 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 634 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 635 | dependencies: 636 | graceful-fs "^4.2.0" 637 | jsonfile "^4.0.0" 638 | universalify "^0.1.0" 639 | 640 | fs.realpath@^1.0.0: 641 | version "1.0.0" 642 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 643 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 644 | 645 | function-bind@^1.0.2, function-bind@^1.1.1: 646 | version "1.1.1" 647 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 648 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 649 | 650 | get-caller-file@^2.0.1, get-caller-file@^2.0.5: 651 | version "2.0.5" 652 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 653 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 654 | 655 | get-pkg-repo@^1.0.0: 656 | version "1.4.0" 657 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 658 | integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0= 659 | dependencies: 660 | hosted-git-info "^2.1.4" 661 | meow "^3.3.0" 662 | normalize-package-data "^2.3.0" 663 | parse-github-repo-url "^1.3.0" 664 | through2 "^2.0.0" 665 | 666 | get-stdin@^4.0.1: 667 | version "4.0.1" 668 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 669 | integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= 670 | 671 | git-raw-commits@2.0.0: 672 | version "2.0.0" 673 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.0.tgz#d92addf74440c14bcc5c83ecce3fb7f8a79118b5" 674 | integrity sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg== 675 | dependencies: 676 | dargs "^4.0.1" 677 | lodash.template "^4.0.2" 678 | meow "^4.0.0" 679 | split2 "^2.0.0" 680 | through2 "^2.0.0" 681 | 682 | git-remote-origin-url@^2.0.0: 683 | version "2.0.0" 684 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 685 | integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8= 686 | dependencies: 687 | gitconfiglocal "^1.0.0" 688 | pify "^2.3.0" 689 | 690 | git-semver-tags@^4.0.0, git-semver-tags@^4.1.1: 691 | version "4.1.1" 692 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" 693 | integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== 694 | dependencies: 695 | meow "^8.0.0" 696 | semver "^6.0.0" 697 | 698 | gitconfiglocal@^1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 701 | integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s= 702 | dependencies: 703 | ini "^1.3.2" 704 | 705 | github-url-from-git@^1.4.0: 706 | version "1.5.0" 707 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 708 | integrity sha1-+YX+3MCpqledyI16/waNVcxiUaA= 709 | 710 | glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: 711 | version "7.1.4" 712 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 713 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 714 | dependencies: 715 | fs.realpath "^1.0.0" 716 | inflight "^1.0.4" 717 | inherits "2" 718 | minimatch "^3.0.4" 719 | once "^1.3.0" 720 | path-is-absolute "^1.0.0" 721 | 722 | glob@^7.1.6: 723 | version "7.1.6" 724 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 725 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 726 | dependencies: 727 | fs.realpath "^1.0.0" 728 | inflight "^1.0.4" 729 | inherits "2" 730 | minimatch "^3.0.4" 731 | once "^1.3.0" 732 | path-is-absolute "^1.0.0" 733 | 734 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: 735 | version "4.2.2" 736 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" 737 | integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== 738 | 739 | handlebars@^4.7.6: 740 | version "4.7.6" 741 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" 742 | integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== 743 | dependencies: 744 | minimist "^1.2.5" 745 | neo-async "^2.6.0" 746 | source-map "^0.6.1" 747 | wordwrap "^1.0.0" 748 | optionalDependencies: 749 | uglify-js "^3.1.4" 750 | 751 | hard-rejection@^2.1.0: 752 | version "2.1.0" 753 | resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 754 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 755 | 756 | has-flag@^3.0.0: 757 | version "3.0.0" 758 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 759 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 760 | 761 | has-flag@^4.0.0: 762 | version "4.0.0" 763 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 764 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 765 | 766 | has-symbols@^1.0.0: 767 | version "1.0.0" 768 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 769 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 770 | 771 | has@^1.0.1, has@^1.0.3: 772 | version "1.0.3" 773 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 774 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 775 | dependencies: 776 | function-bind "^1.1.1" 777 | 778 | hosted-git-info@^2.1.4: 779 | version "2.8.5" 780 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" 781 | integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg== 782 | 783 | hosted-git-info@^3.0.6: 784 | version "3.0.7" 785 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.7.tgz#a30727385ea85acfcee94e0aad9e368c792e036c" 786 | integrity sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ== 787 | dependencies: 788 | lru-cache "^6.0.0" 789 | 790 | ignore-walk@^3.0.1: 791 | version "3.0.3" 792 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" 793 | integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== 794 | dependencies: 795 | minimatch "^3.0.4" 796 | 797 | ignore@^5.0.4: 798 | version "5.1.4" 799 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf" 800 | integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== 801 | 802 | indent-string@^2.1.0: 803 | version "2.1.0" 804 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 805 | integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= 806 | dependencies: 807 | repeating "^2.0.0" 808 | 809 | indent-string@^3.0.0: 810 | version "3.2.0" 811 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 812 | integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= 813 | 814 | indent-string@^4.0.0: 815 | version "4.0.0" 816 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 817 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 818 | 819 | inflight@^1.0.4: 820 | version "1.0.6" 821 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 822 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 823 | dependencies: 824 | once "^1.3.0" 825 | wrappy "1" 826 | 827 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 828 | version "2.0.4" 829 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 830 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 831 | 832 | ini@^1.3.2: 833 | version "1.3.5" 834 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 835 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 836 | 837 | interpret@^1.0.0: 838 | version "1.2.0" 839 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" 840 | integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== 841 | 842 | is-arrayish@^0.2.1: 843 | version "0.2.1" 844 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 845 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 846 | 847 | is-callable@^1.1.4: 848 | version "1.1.4" 849 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 850 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 851 | 852 | is-core-module@^2.1.0: 853 | version "2.2.0" 854 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 855 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 856 | dependencies: 857 | has "^1.0.3" 858 | 859 | is-date-object@^1.0.1: 860 | version "1.0.1" 861 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 862 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 863 | 864 | is-docker@^2.0.0: 865 | version "2.1.1" 866 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" 867 | integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== 868 | 869 | is-finite@^1.0.0: 870 | version "1.0.2" 871 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 872 | integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= 873 | dependencies: 874 | number-is-nan "^1.0.0" 875 | 876 | is-fullwidth-code-point@^3.0.0: 877 | version "3.0.0" 878 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 879 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 880 | 881 | is-obj@^1.0.0: 882 | version "1.0.1" 883 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 884 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 885 | 886 | is-obj@^2.0.0: 887 | version "2.0.0" 888 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 889 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 890 | 891 | is-plain-obj@^1.1.0: 892 | version "1.1.0" 893 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 894 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 895 | 896 | is-regex@^1.0.4: 897 | version "1.0.4" 898 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 899 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 900 | dependencies: 901 | has "^1.0.1" 902 | 903 | is-symbol@^1.0.2: 904 | version "1.0.2" 905 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 906 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 907 | dependencies: 908 | has-symbols "^1.0.0" 909 | 910 | is-text-path@^1.0.1: 911 | version "1.0.1" 912 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 913 | integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4= 914 | dependencies: 915 | text-extensions "^1.0.0" 916 | 917 | is-utf8@^0.2.0: 918 | version "0.2.1" 919 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 920 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 921 | 922 | is-wsl@^2.1.1: 923 | version "2.2.0" 924 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 925 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 926 | dependencies: 927 | is-docker "^2.0.0" 928 | 929 | isarray@~1.0.0: 930 | version "1.0.0" 931 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 932 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 933 | 934 | isexe@^2.0.0: 935 | version "2.0.0" 936 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 937 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 938 | 939 | js-tokens@^4.0.0: 940 | version "4.0.0" 941 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 942 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 943 | 944 | json-parse-better-errors@^1.0.1: 945 | version "1.0.2" 946 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 947 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 948 | 949 | json-parse-even-better-errors@^2.3.0: 950 | version "2.3.1" 951 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 952 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 953 | 954 | json-stringify-safe@^5.0.1: 955 | version "5.0.1" 956 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 957 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 958 | 959 | jsonfile@^4.0.0: 960 | version "4.0.0" 961 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 962 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 963 | optionalDependencies: 964 | graceful-fs "^4.1.6" 965 | 966 | jsonparse@^1.2.0: 967 | version "1.3.1" 968 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 969 | integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= 970 | 971 | kind-of@^6.0.3: 972 | version "6.0.3" 973 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 974 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 975 | 976 | lines-and-columns@^1.1.6: 977 | version "1.1.6" 978 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 979 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 980 | 981 | load-json-file@^1.0.0: 982 | version "1.1.0" 983 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 984 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 985 | dependencies: 986 | graceful-fs "^4.1.2" 987 | parse-json "^2.2.0" 988 | pify "^2.0.0" 989 | pinkie-promise "^2.0.0" 990 | strip-bom "^2.0.0" 991 | 992 | load-json-file@^4.0.0: 993 | version "4.0.0" 994 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 995 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 996 | dependencies: 997 | graceful-fs "^4.1.2" 998 | parse-json "^4.0.0" 999 | pify "^3.0.0" 1000 | strip-bom "^3.0.0" 1001 | 1002 | locate-path@^2.0.0: 1003 | version "2.0.0" 1004 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1005 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1006 | dependencies: 1007 | p-locate "^2.0.0" 1008 | path-exists "^3.0.0" 1009 | 1010 | locate-path@^5.0.0: 1011 | version "5.0.0" 1012 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1013 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1014 | dependencies: 1015 | p-locate "^4.1.0" 1016 | 1017 | lodash._reinterpolate@^3.0.0: 1018 | version "3.0.0" 1019 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1020 | integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= 1021 | 1022 | lodash.ismatch@^4.4.0: 1023 | version "4.4.0" 1024 | resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" 1025 | integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= 1026 | 1027 | lodash.template@^4.0.2: 1028 | version "4.5.0" 1029 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" 1030 | integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== 1031 | dependencies: 1032 | lodash._reinterpolate "^3.0.0" 1033 | lodash.templatesettings "^4.0.0" 1034 | 1035 | lodash.templatesettings@^4.0.0: 1036 | version "4.2.0" 1037 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" 1038 | integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== 1039 | dependencies: 1040 | lodash._reinterpolate "^3.0.0" 1041 | 1042 | lodash@^4.17.15: 1043 | version "4.17.15" 1044 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1045 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 1046 | 1047 | loud-rejection@^1.0.0: 1048 | version "1.6.0" 1049 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1050 | integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= 1051 | dependencies: 1052 | currently-unhandled "^0.4.1" 1053 | signal-exit "^3.0.0" 1054 | 1055 | lru-cache@^6.0.0: 1056 | version "6.0.0" 1057 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1058 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1059 | dependencies: 1060 | yallist "^4.0.0" 1061 | 1062 | map-obj@^1.0.0, map-obj@^1.0.1: 1063 | version "1.0.1" 1064 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1065 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 1066 | 1067 | map-obj@^2.0.0: 1068 | version "2.0.0" 1069 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 1070 | integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= 1071 | 1072 | map-obj@^4.0.0: 1073 | version "4.1.0" 1074 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5" 1075 | integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g== 1076 | 1077 | memorystream@^0.3.1: 1078 | version "0.3.1" 1079 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 1080 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 1081 | 1082 | meow@^3.3.0: 1083 | version "3.7.0" 1084 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1085 | integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= 1086 | dependencies: 1087 | camelcase-keys "^2.0.0" 1088 | decamelize "^1.1.2" 1089 | loud-rejection "^1.0.0" 1090 | map-obj "^1.0.1" 1091 | minimist "^1.1.3" 1092 | normalize-package-data "^2.3.4" 1093 | object-assign "^4.0.1" 1094 | read-pkg-up "^1.0.1" 1095 | redent "^1.0.0" 1096 | trim-newlines "^1.0.0" 1097 | 1098 | meow@^4.0.0: 1099 | version "4.0.1" 1100 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.1.tgz#d48598f6f4b1472f35bf6317a95945ace347f975" 1101 | integrity sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A== 1102 | dependencies: 1103 | camelcase-keys "^4.0.0" 1104 | decamelize-keys "^1.0.0" 1105 | loud-rejection "^1.0.0" 1106 | minimist "^1.1.3" 1107 | minimist-options "^3.0.1" 1108 | normalize-package-data "^2.3.4" 1109 | read-pkg-up "^3.0.0" 1110 | redent "^2.0.0" 1111 | trim-newlines "^2.0.0" 1112 | 1113 | meow@^8.0.0: 1114 | version "8.1.0" 1115 | resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.0.tgz#0fcaa267e35e4d58584b8205923df6021ddcc7ba" 1116 | integrity sha512-fNWkgM1UVMey2kf24yLiccxLihc5W+6zVus3/N0b+VfnJgxV99E9u04X6NAiKdg6ED7DAQBX5sy36NM0QJZkWA== 1117 | dependencies: 1118 | "@types/minimist" "^1.2.0" 1119 | camelcase-keys "^6.2.2" 1120 | decamelize-keys "^1.1.0" 1121 | hard-rejection "^2.1.0" 1122 | minimist-options "4.1.0" 1123 | normalize-package-data "^3.0.0" 1124 | read-pkg-up "^7.0.1" 1125 | redent "^3.0.0" 1126 | trim-newlines "^3.0.0" 1127 | type-fest "^0.18.0" 1128 | yargs-parser "^20.2.3" 1129 | 1130 | min-indent@^1.0.0: 1131 | version "1.0.1" 1132 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1133 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1134 | 1135 | minimatch@^3.0.4: 1136 | version "3.1.2" 1137 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1138 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1139 | dependencies: 1140 | brace-expansion "^1.1.7" 1141 | 1142 | minimist-options@4.1.0: 1143 | version "4.1.0" 1144 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1145 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1146 | dependencies: 1147 | arrify "^1.0.1" 1148 | is-plain-obj "^1.1.0" 1149 | kind-of "^6.0.3" 1150 | 1151 | minimist-options@^3.0.1: 1152 | version "3.0.2" 1153 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 1154 | integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== 1155 | dependencies: 1156 | arrify "^1.0.1" 1157 | is-plain-obj "^1.1.0" 1158 | 1159 | minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: 1160 | version "1.2.8" 1161 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" 1162 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1163 | 1164 | modify-values@^1.0.0: 1165 | version "1.0.1" 1166 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" 1167 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== 1168 | 1169 | neo-async@^2.6.0: 1170 | version "2.6.1" 1171 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 1172 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 1173 | 1174 | nice-try@^1.0.4: 1175 | version "1.0.5" 1176 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1177 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1178 | 1179 | node-cleanup@^2.1.2: 1180 | version "2.1.2" 1181 | resolved "https://registry.yarnpkg.com/node-cleanup/-/node-cleanup-2.1.2.tgz#7ac19abd297e09a7f72a71545d951b517e4dde2c" 1182 | integrity sha1-esGavSl+Caf3KnFUXZUbUX5N3iw= 1183 | 1184 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: 1185 | version "2.5.0" 1186 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1187 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1188 | dependencies: 1189 | hosted-git-info "^2.1.4" 1190 | resolve "^1.10.0" 1191 | semver "2 || 3 || 4 || 5" 1192 | validate-npm-package-license "^3.0.1" 1193 | 1194 | normalize-package-data@^3.0.0: 1195 | version "3.0.0" 1196 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz#1f8a7c423b3d2e85eb36985eaf81de381d01301a" 1197 | integrity sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw== 1198 | dependencies: 1199 | hosted-git-info "^3.0.6" 1200 | resolve "^1.17.0" 1201 | semver "^7.3.2" 1202 | validate-npm-package-license "^3.0.1" 1203 | 1204 | npm-bundled@^1.0.1: 1205 | version "1.0.6" 1206 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 1207 | integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== 1208 | 1209 | npm-packlist@^1.4.1: 1210 | version "1.4.6" 1211 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4" 1212 | integrity sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg== 1213 | dependencies: 1214 | ignore-walk "^3.0.1" 1215 | npm-bundled "^1.0.1" 1216 | 1217 | npm-run-all@^4.1.5: 1218 | version "4.1.5" 1219 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 1220 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 1221 | dependencies: 1222 | ansi-styles "^3.2.1" 1223 | chalk "^2.4.1" 1224 | cross-spawn "^6.0.5" 1225 | memorystream "^0.3.1" 1226 | minimatch "^3.0.4" 1227 | pidtree "^0.3.0" 1228 | read-pkg "^3.0.0" 1229 | shell-quote "^1.6.1" 1230 | string.prototype.padend "^3.0.0" 1231 | 1232 | number-is-nan@^1.0.0: 1233 | version "1.0.1" 1234 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1235 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1236 | 1237 | object-assign@^4.0.1: 1238 | version "4.1.1" 1239 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1240 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1241 | 1242 | object-inspect@^1.6.0: 1243 | version "1.6.0" 1244 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" 1245 | integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== 1246 | 1247 | object-keys@^1.0.12, object-keys@^1.1.1: 1248 | version "1.1.1" 1249 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1250 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1251 | 1252 | once@^1.3.0: 1253 | version "1.4.0" 1254 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1255 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1256 | dependencies: 1257 | wrappy "1" 1258 | 1259 | open@^7.0.4: 1260 | version "7.3.0" 1261 | resolved "https://registry.yarnpkg.com/open/-/open-7.3.0.tgz#45461fdee46444f3645b6e14eb3ca94b82e1be69" 1262 | integrity sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw== 1263 | dependencies: 1264 | is-docker "^2.0.0" 1265 | is-wsl "^2.1.1" 1266 | 1267 | p-limit@^1.1.0: 1268 | version "1.3.0" 1269 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1270 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1271 | dependencies: 1272 | p-try "^1.0.0" 1273 | 1274 | p-limit@^2.2.0: 1275 | version "2.2.1" 1276 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" 1277 | integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== 1278 | dependencies: 1279 | p-try "^2.0.0" 1280 | 1281 | p-locate@^2.0.0: 1282 | version "2.0.0" 1283 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1284 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1285 | dependencies: 1286 | p-limit "^1.1.0" 1287 | 1288 | p-locate@^4.1.0: 1289 | version "4.1.0" 1290 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1291 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1292 | dependencies: 1293 | p-limit "^2.2.0" 1294 | 1295 | p-try@^1.0.0: 1296 | version "1.0.0" 1297 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1298 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1299 | 1300 | p-try@^2.0.0: 1301 | version "2.2.0" 1302 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1303 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1304 | 1305 | parse-github-repo-url@^1.3.0: 1306 | version "1.4.1" 1307 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 1308 | integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A= 1309 | 1310 | parse-json@^2.2.0: 1311 | version "2.2.0" 1312 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1313 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1314 | dependencies: 1315 | error-ex "^1.2.0" 1316 | 1317 | parse-json@^4.0.0: 1318 | version "4.0.0" 1319 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1320 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 1321 | dependencies: 1322 | error-ex "^1.3.1" 1323 | json-parse-better-errors "^1.0.1" 1324 | 1325 | parse-json@^5.0.0: 1326 | version "5.1.0" 1327 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 1328 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 1329 | dependencies: 1330 | "@babel/code-frame" "^7.0.0" 1331 | error-ex "^1.3.1" 1332 | json-parse-even-better-errors "^2.3.0" 1333 | lines-and-columns "^1.1.6" 1334 | 1335 | path-exists@^2.0.0: 1336 | version "2.1.0" 1337 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1338 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 1339 | dependencies: 1340 | pinkie-promise "^2.0.0" 1341 | 1342 | path-exists@^3.0.0: 1343 | version "3.0.0" 1344 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1345 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1346 | 1347 | path-exists@^4.0.0: 1348 | version "4.0.0" 1349 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1350 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1351 | 1352 | path-is-absolute@^1.0.0: 1353 | version "1.0.1" 1354 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1355 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1356 | 1357 | path-key@^2.0.1: 1358 | version "2.0.1" 1359 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1360 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1361 | 1362 | path-parse@^1.0.6: 1363 | version "1.0.6" 1364 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1365 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1366 | 1367 | path-type@^1.0.0: 1368 | version "1.1.0" 1369 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1370 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 1371 | dependencies: 1372 | graceful-fs "^4.1.2" 1373 | pify "^2.0.0" 1374 | pinkie-promise "^2.0.0" 1375 | 1376 | path-type@^3.0.0: 1377 | version "3.0.0" 1378 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1379 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 1380 | dependencies: 1381 | pify "^3.0.0" 1382 | 1383 | pidtree@^0.3.0: 1384 | version "0.3.0" 1385 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.0.tgz#f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b" 1386 | integrity sha512-9CT4NFlDcosssyg8KVFltgokyKZIFjoBxw8CTGy+5F38Y1eQWrt8tRayiUOXE+zVKQnYu5BR8JjCtvK3BcnBhg== 1387 | 1388 | pify@^2.0.0, pify@^2.3.0: 1389 | version "2.3.0" 1390 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1391 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1392 | 1393 | pify@^3.0.0: 1394 | version "3.0.0" 1395 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1396 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1397 | 1398 | pinkie-promise@^2.0.0: 1399 | version "2.0.1" 1400 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1401 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 1402 | dependencies: 1403 | pinkie "^2.0.0" 1404 | 1405 | pinkie@^2.0.0: 1406 | version "2.0.4" 1407 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1408 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 1409 | 1410 | process-nextick-args@~2.0.0: 1411 | version "2.0.1" 1412 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1413 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1414 | 1415 | q@^1.4.1, q@^1.5.1: 1416 | version "1.5.1" 1417 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1418 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 1419 | 1420 | quick-lru@^1.0.0: 1421 | version "1.1.0" 1422 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 1423 | integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= 1424 | 1425 | quick-lru@^4.0.1: 1426 | version "4.0.1" 1427 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" 1428 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 1429 | 1430 | read-pkg-up@^1.0.1: 1431 | version "1.0.1" 1432 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1433 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 1434 | dependencies: 1435 | find-up "^1.0.0" 1436 | read-pkg "^1.0.0" 1437 | 1438 | read-pkg-up@^3.0.0: 1439 | version "3.0.0" 1440 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 1441 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= 1442 | dependencies: 1443 | find-up "^2.0.0" 1444 | read-pkg "^3.0.0" 1445 | 1446 | read-pkg-up@^7.0.1: 1447 | version "7.0.1" 1448 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 1449 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 1450 | dependencies: 1451 | find-up "^4.1.0" 1452 | read-pkg "^5.2.0" 1453 | type-fest "^0.8.1" 1454 | 1455 | read-pkg@^1.0.0: 1456 | version "1.1.0" 1457 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1458 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 1459 | dependencies: 1460 | load-json-file "^1.0.0" 1461 | normalize-package-data "^2.3.2" 1462 | path-type "^1.0.0" 1463 | 1464 | read-pkg@^3.0.0: 1465 | version "3.0.0" 1466 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1467 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 1468 | dependencies: 1469 | load-json-file "^4.0.0" 1470 | normalize-package-data "^2.3.2" 1471 | path-type "^3.0.0" 1472 | 1473 | read-pkg@^5.2.0: 1474 | version "5.2.0" 1475 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 1476 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 1477 | dependencies: 1478 | "@types/normalize-package-data" "^2.4.0" 1479 | normalize-package-data "^2.5.0" 1480 | parse-json "^5.0.0" 1481 | type-fest "^0.6.0" 1482 | 1483 | readable-stream@3: 1484 | version "3.6.0" 1485 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1486 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1487 | dependencies: 1488 | inherits "^2.0.3" 1489 | string_decoder "^1.1.1" 1490 | util-deprecate "^1.0.1" 1491 | 1492 | readable-stream@~2.3.6: 1493 | version "2.3.6" 1494 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1495 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 1496 | dependencies: 1497 | core-util-is "~1.0.0" 1498 | inherits "~2.0.3" 1499 | isarray "~1.0.0" 1500 | process-nextick-args "~2.0.0" 1501 | safe-buffer "~5.1.1" 1502 | string_decoder "~1.1.1" 1503 | util-deprecate "~1.0.1" 1504 | 1505 | readline-sync@^1.4.10: 1506 | version "1.4.10" 1507 | resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b" 1508 | integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw== 1509 | 1510 | rechoir@^0.6.2: 1511 | version "0.6.2" 1512 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1513 | integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= 1514 | dependencies: 1515 | resolve "^1.1.6" 1516 | 1517 | redent@^1.0.0: 1518 | version "1.0.0" 1519 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1520 | integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= 1521 | dependencies: 1522 | indent-string "^2.1.0" 1523 | strip-indent "^1.0.1" 1524 | 1525 | redent@^2.0.0: 1526 | version "2.0.0" 1527 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 1528 | integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= 1529 | dependencies: 1530 | indent-string "^3.0.0" 1531 | strip-indent "^2.0.0" 1532 | 1533 | redent@^3.0.0: 1534 | version "3.0.0" 1535 | resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" 1536 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 1537 | dependencies: 1538 | indent-string "^4.0.0" 1539 | strip-indent "^3.0.0" 1540 | 1541 | repeating@^2.0.0: 1542 | version "2.0.1" 1543 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1544 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 1545 | dependencies: 1546 | is-finite "^1.0.0" 1547 | 1548 | require-directory@^2.1.1: 1549 | version "2.1.1" 1550 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1551 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1552 | 1553 | require-main-filename@^2.0.0: 1554 | version "2.0.0" 1555 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 1556 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 1557 | 1558 | resolve@^1.1.6, resolve@^1.10.0: 1559 | version "1.12.0" 1560 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" 1561 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== 1562 | dependencies: 1563 | path-parse "^1.0.6" 1564 | 1565 | resolve@^1.14.1: 1566 | version "1.14.1" 1567 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.1.tgz#9e018c540fcf0c427d678b9931cbf45e984bcaff" 1568 | integrity sha512-fn5Wobh4cxbLzuHaE+nphztHy43/b++4M6SsGFC2gB8uYwf0C8LcarfCz1un7UTW8OFQg9iNjZ4xpcFVGebDPg== 1569 | dependencies: 1570 | path-parse "^1.0.6" 1571 | 1572 | resolve@^1.17.0, resolve@^1.19.0: 1573 | version "1.19.0" 1574 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 1575 | integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 1576 | dependencies: 1577 | is-core-module "^2.1.0" 1578 | path-parse "^1.0.6" 1579 | 1580 | rimraf@^3.0.0: 1581 | version "3.0.2" 1582 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1583 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1584 | dependencies: 1585 | glob "^7.1.3" 1586 | 1587 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1588 | version "5.1.2" 1589 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1590 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1591 | 1592 | safe-buffer@~5.2.0: 1593 | version "5.2.0" 1594 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 1595 | integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 1596 | 1597 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 1598 | version "5.7.1" 1599 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1600 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1601 | 1602 | semver@^6.0.0: 1603 | version "6.3.0" 1604 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1605 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1606 | 1607 | semver@^7.1.1: 1608 | version "7.1.1" 1609 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667" 1610 | integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A== 1611 | 1612 | semver@^7.3.2, semver@^7.3.4: 1613 | version "7.3.4" 1614 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 1615 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 1616 | dependencies: 1617 | lru-cache "^6.0.0" 1618 | 1619 | set-blocking@^2.0.0: 1620 | version "2.0.0" 1621 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1622 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1623 | 1624 | shebang-command@^1.2.0: 1625 | version "1.2.0" 1626 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1627 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1628 | dependencies: 1629 | shebang-regex "^1.0.0" 1630 | 1631 | shebang-regex@^1.0.0: 1632 | version "1.0.0" 1633 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1634 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1635 | 1636 | shell-quote@^1.6.1: 1637 | version "1.7.2" 1638 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 1639 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 1640 | 1641 | shelljs@^0.8.1, shelljs@^0.8.3: 1642 | version "0.8.3" 1643 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097" 1644 | integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A== 1645 | dependencies: 1646 | glob "^7.0.0" 1647 | interpret "^1.0.0" 1648 | rechoir "^0.6.2" 1649 | 1650 | shelljs@^0.8.4: 1651 | version "0.8.4" 1652 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" 1653 | integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== 1654 | dependencies: 1655 | glob "^7.0.0" 1656 | interpret "^1.0.0" 1657 | rechoir "^0.6.2" 1658 | 1659 | shx@^0.3.1: 1660 | version "0.3.2" 1661 | resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.2.tgz#40501ce14eb5e0cbcac7ddbd4b325563aad8c123" 1662 | integrity sha512-aS0mWtW3T2sHAenrSrip2XGv39O9dXIFUqxAEWHEOS1ePtGIBavdPJY1kE2IHl14V/4iCbUiNDPGdyYTtmhSoA== 1663 | dependencies: 1664 | es6-object-assign "^1.0.3" 1665 | minimist "^1.2.0" 1666 | shelljs "^0.8.1" 1667 | 1668 | signal-exit@^3.0.0: 1669 | version "3.0.2" 1670 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1671 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 1672 | 1673 | source-map@^0.6.1, source-map@~0.6.1: 1674 | version "0.6.1" 1675 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1676 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1677 | 1678 | spdx-correct@^3.0.0: 1679 | version "3.1.0" 1680 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 1681 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 1682 | dependencies: 1683 | spdx-expression-parse "^3.0.0" 1684 | spdx-license-ids "^3.0.0" 1685 | 1686 | spdx-exceptions@^2.1.0: 1687 | version "2.2.0" 1688 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 1689 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 1690 | 1691 | spdx-expression-parse@^3.0.0: 1692 | version "3.0.0" 1693 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1694 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 1695 | dependencies: 1696 | spdx-exceptions "^2.1.0" 1697 | spdx-license-ids "^3.0.0" 1698 | 1699 | spdx-license-ids@^3.0.0: 1700 | version "3.0.5" 1701 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 1702 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 1703 | 1704 | split2@^2.0.0: 1705 | version "2.2.0" 1706 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 1707 | integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== 1708 | dependencies: 1709 | through2 "^2.0.2" 1710 | 1711 | split@^1.0.0: 1712 | version "1.0.1" 1713 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1714 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 1715 | dependencies: 1716 | through "2" 1717 | 1718 | string-width@^4.1.0, string-width@^4.2.0: 1719 | version "4.2.0" 1720 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1721 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1722 | dependencies: 1723 | emoji-regex "^8.0.0" 1724 | is-fullwidth-code-point "^3.0.0" 1725 | strip-ansi "^6.0.0" 1726 | 1727 | string.prototype.padend@^3.0.0: 1728 | version "3.0.0" 1729 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" 1730 | integrity sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA= 1731 | dependencies: 1732 | define-properties "^1.1.2" 1733 | es-abstract "^1.4.3" 1734 | function-bind "^1.0.2" 1735 | 1736 | string.prototype.trimleft@^2.1.0: 1737 | version "2.1.0" 1738 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" 1739 | integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== 1740 | dependencies: 1741 | define-properties "^1.1.3" 1742 | function-bind "^1.1.1" 1743 | 1744 | string.prototype.trimright@^2.1.0: 1745 | version "2.1.0" 1746 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" 1747 | integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== 1748 | dependencies: 1749 | define-properties "^1.1.3" 1750 | function-bind "^1.1.1" 1751 | 1752 | string_decoder@^1.1.1: 1753 | version "1.3.0" 1754 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1755 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1756 | dependencies: 1757 | safe-buffer "~5.2.0" 1758 | 1759 | string_decoder@~1.1.1: 1760 | version "1.1.1" 1761 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1762 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1763 | dependencies: 1764 | safe-buffer "~5.1.0" 1765 | 1766 | strip-ansi@^6.0.0: 1767 | version "6.0.0" 1768 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1769 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1770 | dependencies: 1771 | ansi-regex "^5.0.0" 1772 | 1773 | strip-bom@^2.0.0: 1774 | version "2.0.0" 1775 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1776 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 1777 | dependencies: 1778 | is-utf8 "^0.2.0" 1779 | 1780 | strip-bom@^3.0.0: 1781 | version "3.0.0" 1782 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1783 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1784 | 1785 | strip-indent@^1.0.1: 1786 | version "1.0.1" 1787 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1788 | integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= 1789 | dependencies: 1790 | get-stdin "^4.0.1" 1791 | 1792 | strip-indent@^2.0.0: 1793 | version "2.0.0" 1794 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 1795 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= 1796 | 1797 | strip-indent@^3.0.0: 1798 | version "3.0.0" 1799 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 1800 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 1801 | dependencies: 1802 | min-indent "^1.0.0" 1803 | 1804 | supports-color@^5.3.0: 1805 | version "5.5.0" 1806 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1807 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1808 | dependencies: 1809 | has-flag "^3.0.0" 1810 | 1811 | supports-color@^7.1.0: 1812 | version "7.2.0" 1813 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1814 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1815 | dependencies: 1816 | has-flag "^4.0.0" 1817 | 1818 | text-extensions@^1.0.0: 1819 | version "1.9.0" 1820 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" 1821 | integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== 1822 | 1823 | through2@^2.0.0, through2@^2.0.2: 1824 | version "2.0.5" 1825 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 1826 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 1827 | dependencies: 1828 | readable-stream "~2.3.6" 1829 | xtend "~4.0.1" 1830 | 1831 | through2@^4.0.0: 1832 | version "4.0.2" 1833 | resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" 1834 | integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== 1835 | dependencies: 1836 | readable-stream "3" 1837 | 1838 | through@2, "through@>=2.2.7 <3": 1839 | version "2.3.8" 1840 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1841 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1842 | 1843 | tmp@^0.2.1: 1844 | version "0.2.1" 1845 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 1846 | integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== 1847 | dependencies: 1848 | rimraf "^3.0.0" 1849 | 1850 | trim-newlines@^1.0.0: 1851 | version "1.0.0" 1852 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1853 | integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= 1854 | 1855 | trim-newlines@^2.0.0: 1856 | version "2.0.0" 1857 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 1858 | integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= 1859 | 1860 | trim-newlines@^3.0.0: 1861 | version "3.0.0" 1862 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30" 1863 | integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA== 1864 | 1865 | trim-off-newlines@^1.0.0: 1866 | version "1.0.3" 1867 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.3.tgz#8df24847fcb821b0ab27d58ab6efec9f2fe961a1" 1868 | integrity sha512-kh6Tu6GbeSNMGfrrZh6Bb/4ZEHV1QlB4xNDBeog8Y9/QwFlKTRyWvY3Fs9tRDAMZliVUwieMgEdIeL/FtqjkJg== 1869 | 1870 | tweak-sourcemap-paths@0.0.4: 1871 | version "0.0.4" 1872 | resolved "https://registry.yarnpkg.com/tweak-sourcemap-paths/-/tweak-sourcemap-paths-0.0.4.tgz#110c6c323ae93c562e2ab83de36b8b1191f8fb72" 1873 | integrity sha512-8qVJTFQnadIOGojrpdfjnlqNba1TzfiRHiCdmErl5r3GgIQJeO69BbwM7DrnISncQxjfeBKhoSuKwVfitcSmJg== 1874 | dependencies: 1875 | glob "^7.1.6" 1876 | yargs "^15.0.2" 1877 | 1878 | type-fest@^0.18.0: 1879 | version "0.18.1" 1880 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" 1881 | integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== 1882 | 1883 | type-fest@^0.6.0: 1884 | version "0.6.0" 1885 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 1886 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 1887 | 1888 | type-fest@^0.8.1: 1889 | version "0.8.1" 1890 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1891 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1892 | 1893 | typescript@^4.1.3: 1894 | version "4.1.3" 1895 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.3.tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7" 1896 | integrity sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg== 1897 | 1898 | uglify-js@^3.1.4: 1899 | version "3.6.1" 1900 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.1.tgz#ae7688c50e1bdcf2f70a0e162410003cf9798311" 1901 | integrity sha512-+dSJLJpXBb6oMHP+Yvw8hUgElz4gLTh82XuX68QiJVTXaE5ibl6buzhNkQdYhBlIhozWOC9ge16wyRmjG4TwVQ== 1902 | dependencies: 1903 | commander "2.20.0" 1904 | source-map "~0.6.1" 1905 | 1906 | universalify@^0.1.0: 1907 | version "0.1.2" 1908 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 1909 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 1910 | 1911 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 1912 | version "1.0.2" 1913 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1914 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1915 | 1916 | validate-npm-package-license@^3.0.1: 1917 | version "3.0.4" 1918 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1919 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1920 | dependencies: 1921 | spdx-correct "^3.0.0" 1922 | spdx-expression-parse "^3.0.0" 1923 | 1924 | which-module@^2.0.0: 1925 | version "2.0.0" 1926 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1927 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 1928 | 1929 | which@^1.2.9: 1930 | version "1.3.1" 1931 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1932 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1933 | dependencies: 1934 | isexe "^2.0.0" 1935 | 1936 | wordwrap@^1.0.0: 1937 | version "1.0.0" 1938 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1939 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 1940 | 1941 | wrap-ansi@^6.2.0: 1942 | version "6.2.0" 1943 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 1944 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 1945 | dependencies: 1946 | ansi-styles "^4.0.0" 1947 | string-width "^4.1.0" 1948 | strip-ansi "^6.0.0" 1949 | 1950 | wrap-ansi@^7.0.0: 1951 | version "7.0.0" 1952 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1953 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1954 | dependencies: 1955 | ansi-styles "^4.0.0" 1956 | string-width "^4.1.0" 1957 | strip-ansi "^6.0.0" 1958 | 1959 | wrappy@1: 1960 | version "1.0.2" 1961 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1962 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1963 | 1964 | xtend@~4.0.1: 1965 | version "4.0.2" 1966 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1967 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1968 | 1969 | y18n@^4.0.0: 1970 | version "4.0.0" 1971 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 1972 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 1973 | 1974 | y18n@^5.0.5: 1975 | version "5.0.5" 1976 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" 1977 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 1978 | 1979 | yalc@^1.0.0-pre.35: 1980 | version "1.0.0-pre.49" 1981 | resolved "https://registry.yarnpkg.com/yalc/-/yalc-1.0.0-pre.49.tgz#ec576c4abeb80181402df6711f20785bd3b7fc0d" 1982 | integrity sha512-7fTnwsX4qKnr2h1LVTLQzc9gosFrGnJcBRPnNGsM+3YJSLAjB+i8XnqmNptdktjyc4hOzI+XzN1Wp2kXvKAPxA== 1983 | dependencies: 1984 | chalk "^4.1.0" 1985 | detect-indent "^6.0.0" 1986 | fs-extra "^8.0.1" 1987 | glob "^7.1.4" 1988 | ignore "^5.0.4" 1989 | npm-packlist "^1.4.1" 1990 | yargs "^16.1.1" 1991 | 1992 | yallist@^4.0.0: 1993 | version "4.0.0" 1994 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1995 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1996 | 1997 | yargs-parser@^16.1.0: 1998 | version "16.1.0" 1999 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1" 2000 | integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg== 2001 | dependencies: 2002 | camelcase "^5.0.0" 2003 | decamelize "^1.2.0" 2004 | 2005 | yargs-parser@^18.1.2: 2006 | version "18.1.3" 2007 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 2008 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 2009 | dependencies: 2010 | camelcase "^5.0.0" 2011 | decamelize "^1.2.0" 2012 | 2013 | yargs-parser@^20.2.2, yargs-parser@^20.2.3: 2014 | version "20.2.4" 2015 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 2016 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 2017 | 2018 | yargs@^15.0.2: 2019 | version "15.0.2" 2020 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.0.2.tgz#4248bf218ef050385c4f7e14ebdf425653d13bd3" 2021 | integrity sha512-GH/X/hYt+x5hOat4LMnCqMd8r5Cv78heOMIJn1hr7QPPBqfeC6p89Y78+WB9yGDvfpCvgasfmWLzNzEioOUD9Q== 2022 | dependencies: 2023 | cliui "^6.0.0" 2024 | decamelize "^1.2.0" 2025 | find-up "^4.1.0" 2026 | get-caller-file "^2.0.1" 2027 | require-directory "^2.1.1" 2028 | require-main-filename "^2.0.0" 2029 | set-blocking "^2.0.0" 2030 | string-width "^4.2.0" 2031 | which-module "^2.0.0" 2032 | y18n "^4.0.0" 2033 | yargs-parser "^16.1.0" 2034 | 2035 | yargs@^15.3.1: 2036 | version "15.4.1" 2037 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 2038 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 2039 | dependencies: 2040 | cliui "^6.0.0" 2041 | decamelize "^1.2.0" 2042 | find-up "^4.1.0" 2043 | get-caller-file "^2.0.1" 2044 | require-directory "^2.1.1" 2045 | require-main-filename "^2.0.0" 2046 | set-blocking "^2.0.0" 2047 | string-width "^4.2.0" 2048 | which-module "^2.0.0" 2049 | y18n "^4.0.0" 2050 | yargs-parser "^18.1.2" 2051 | 2052 | yargs@^16.1.1, yargs@^16.2.0: 2053 | version "16.2.0" 2054 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2055 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2056 | dependencies: 2057 | cliui "^7.0.2" 2058 | escalade "^3.1.1" 2059 | get-caller-file "^2.0.5" 2060 | require-directory "^2.1.1" 2061 | string-width "^4.2.0" 2062 | y18n "^5.0.5" 2063 | yargs-parser "^20.2.2" 2064 | --------------------------------------------------------------------------------