├── .gitignore ├── LICENSE ├── README.md ├── cli.js ├── index.js ├── package.json └── yarn.lock /.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 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Michel Weststrate 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # relative-deps 2 | 3 | [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/michelweststrate) 4 | Buy Me A Coffee 5 | 6 | _Installs dependencies from a local checkout, and keeps them in sync, without the limitations of `link`_ 7 | 8 | --- 9 | 10 | # Summary 11 | 12 | Relative deps introduces an additional dependency section in `package.json`, called `relativeDependencies`. 13 | This section contains paths to the local sources of any dependency, that will be built and installed over the publicly available versions, when needed. 14 | 15 | Example `package.json`: 16 | 17 | ```json 18 | { 19 | "name": "my-project", 20 | "dependencies": { 21 | "my-cool-library": "0.1.0" 22 | }, 23 | "relativeDependencies": { 24 | "my-cool-library": "../../packages/my-cool-library" 25 | }, 26 | "scripts": { 27 | "prepare": "relative-deps" 28 | }, 29 | "devDependencies": { 30 | "relative-deps": "^1.0.0" 31 | } 32 | } 33 | ``` 34 | 35 | When the relative path can be found, the library at this path will be re-built and re-installed into this project, if the source files have been changed during `prepare`. 36 | 37 | The normal `my-cool-library` dependency will be defaulted to, for those that don't have a local checkout of `my-cool-library`, and to resolve transitive dependencies. 38 | 39 | An example setup, where examples project are linked to their hosting library, can be found [here](https://github.com/mobxjs/mst-gql/pull/40/commits/4d2c0858f8c44a562c0244466b56f79b0ed7591b). 40 | 41 | # Why 42 | 43 | ### The problem 44 | 45 | Working on libraries that have examples embedded in the same git repository is usually tricky, as the examples are usually built against the public, published version of the library; the version that is mentioned in their `package.json`. 46 | 47 | When working maintaining a project though, it is much more useful to work against the locally checked out version of the library. Published or not. 48 | 49 | ### The problems with existing solutions 50 | 51 | There are a few existing solutions, but they have their own limitations: 52 | 53 | - `yarn link` / `npm link`. These work only if there are no peer / shared dependencies involved. If there are shared dependencies, the linked library will resolve those in their _own_ `node_modules`, instead of the `node_modules` of the hosting project, where it would normally be looked up. This results in peer dependencies ending up "twice" in the dependency tree, which often causes confusing behavior. 54 | - `yarn workspaces`. Those solve the above issue by putting all dependencies in one large root level `node_modules`. However, this setup is in practice quite obtrusive to the whole development setup. 55 | 56 | ### How is relative deps different? 57 | 58 | Relative deps doesn't fight the problem but tries to emulate a "normal" install. It builds the "linked" library on `prepare` (that is, after installing all deps), packs it, and unpacks it in the `node_modules` of the hosting project. Since there is no linking, or shared `node_modules` involved, the folder structure ends up to be exactly the same as if the thing was installed directly from `yarn` / `npm`. Which avoids a plethora of problems. 59 | 60 | Since building a linked package every time `yarn install` is run is expensive, this tool will take a hash of the directory contents of the library first, and only build and install if something changed. 61 | 62 | # Usage 63 | 64 | ## Installation 65 | 66 | ```bash 67 | npx relative-deps init 68 | ``` 69 | 70 | Options: 71 | 72 | - `--script` 73 | 74 | Alias `-S`. Default: `prepare`. Script name which is using for running `relative-deps`. 75 | 76 | Running this script will install `relative-deps`, add script and initialize empty `relativeDependencies` section. 77 | 78 | ```json 79 | { 80 | "name": "my-project", 81 | "devDependencies": { 82 | "relative-deps": "^1.0.0" 83 | }, 84 | "relativeDependencies": {}, 85 | "scripts": { 86 | "prepare": "relative-deps" 87 | } 88 | } 89 | ``` 90 | 91 | Optionally, you can add this step also for more scripts, for example before starting or building your project, for example: 92 | 93 | ```json 94 | { 95 | "name": "my-project", 96 | "scripts": { 97 | "prepare": "relative-deps", 98 | "prestart": "relative-deps", 99 | "prebuild": "relative-deps", 100 | "pretest": "relative-deps" 101 | } 102 | } 103 | ``` 104 | 105 | In general, this doesn't add to much overhead, since usually relative-deps is able to determine rather quickly (~0.5 sec) that there are no changes. 106 | 107 | ## Adding a relative dependency 108 | 109 | Running following script will initialize `relative-deps` if not initialized yet, find the package at the provided path, install it as normal dependency and pack relative-dependency. 110 | 111 | ```bash 112 | npx relative-deps add ../../packages/my-cool-library 113 | ``` 114 | 115 | Options: 116 | 117 | - `--dev` 118 | 119 | Alias `-D`. Installs relative dependency in `devDependencies` section. 120 | 121 | ```json 122 | { 123 | "name": "my-project", 124 | "dependencies": { 125 | "my-cool-library": "0.1.0" 126 | }, 127 | "relativeDependencies": { 128 | "my-cool-library": "../../packages/my-cool-library" 129 | }, 130 | "scripts": { 131 | "prepare": "relative-deps" 132 | }, 133 | "devDependencies": { 134 | "relative-deps": "^1.0.0" 135 | } 136 | } 137 | ``` 138 | 139 | Example of a [repository migration to relative-deps](https://github.com/mobxjs/mst-gql/pull/40/commits/4d2c0858f8c44a562c0244466b56f79b0ed7591b) 140 | 141 | ## Run `npx relative-deps` when devving! 142 | 143 | The relative deps will automatically be checked for changes, based on the hooks you've set up during [installation](#installation). 144 | 145 | However, you can always trigger a manual check-and-build-if-needed by running `npx relative-deps` (or just `yarn`). If you are working on a project that supports 146 | hot reloading, this will makes sure the changes in the relative dependency will automatically show up in your project! 147 | 148 | ## Watch mode 149 | 150 | You can run `relative-deps watch` and it'll run `relative-deps` command when one of the relative dependecies changed, debounced with 500ms. 151 | This can go along with config of your project to watch over the relevant packages and it will automate the process completely, 152 | allowing you to change a library code and to enjoy the befefit of hot-reload. 153 | 154 | # How 155 | 156 | Roughly, it works like this (obviously this can get out of date quickly): 157 | 158 | ``` 159 | - pre: yarn.lock exists or die 160 | - read relativeDeps from nearest package.json 161 | - doesn't exist? warn & exit 162 | - for each relativeDep: 163 | - check if target path exists 164 | - if not, do we have the module from normal install? 165 | - yes: warn 166 | - no: error 167 | - if target path exists, does it have node modules? 168 | - no: run yarn / npm install (guess which one) 169 | - find last modified timestamp of all files in target dir 170 | (excluding node_modules, .git, excluding the directory that contains the calling project if applicable, only use git versioned files) 171 | - take hash and store / compare with stored 172 | - if changed: 173 | - run yarn / npm build 174 | - run pack 175 | - extract package (mind scoped package names!) 176 | - run yarn install --no-dev-deps in target dir 177 | - done 178 | ``` 179 | 180 | # Tips 181 | 182 | Tip: use the `postinstall` hook wherever applicable, if your dependency manager does not support `prepare` hooks yet. 183 | -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | const yargs = require("yargs"); 3 | const relativeDeps = require("./index"); 4 | 5 | yargs 6 | .usage("Usage: $0 [options]") 7 | .command({ 8 | command: "*", 9 | describe: "Install relative deps", 10 | handler: relativeDeps.installRelativeDeps 11 | }) 12 | .command({ 13 | command: "watch", 14 | describe: "Watch relative deps and install on change", 15 | handler: relativeDeps.watchRelativeDeps 16 | }) 17 | .command({ 18 | command: "init", 19 | describe: "Initialize relative-deps", 20 | handler: relativeDeps.initRelativeDeps 21 | }) 22 | .command({ 23 | command: "add [paths...]", 24 | describe: "Add path as relative dependencies", 25 | handler: relativeDeps.addRelativeDeps 26 | }) 27 | .option("D", { 28 | alias: ["dev", "save-dev"], 29 | description: "Save as dev dependency", 30 | default: false, 31 | type: "boolean" 32 | }) 33 | .option("S", { 34 | alias: ["script"], 35 | description: "Script for relative-deps", 36 | default: "prepare", 37 | type: "string" 38 | }).argv; 39 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const path = require("path") 2 | const child_process = require("child_process") 3 | const fs = require("fs") 4 | const readPkgUp = require("read-pkg-up") 5 | const rimraf = require("rimraf") 6 | const globby = require("globby") 7 | const checksum = require("checksum") 8 | const merge = require("lodash/merge") 9 | const debounce = require("lodash/debounce") 10 | const { spawn } = require("yarn-or-npm") 11 | const tar = require("tar") 12 | 13 | async function installRelativeDeps() { 14 | const projectPkgJson = readPkgUp.sync() 15 | 16 | const relativeDependencies = projectPkgJson.package.relativeDependencies 17 | 18 | if (!relativeDependencies) { 19 | console.warn("[relative-deps][WARN] No 'relativeDependencies' specified in package.json") 20 | process.exit(0) 21 | } 22 | 23 | const targetDir = path.dirname(projectPkgJson.path) 24 | 25 | const depNames = Object.keys(relativeDependencies) 26 | for (const name of depNames) { 27 | const libDir = path.resolve(targetDir, relativeDependencies[name]) 28 | console.log(`[relative-deps] Checking '${name}' in '${libDir}'`) 29 | 30 | const regularDep = 31 | (projectPkgJson.package.dependencies && projectPkgJson.package.dependencies[name]) || 32 | (projectPkgJson.package.devDependencies && projectPkgJson.package.devDependencies[name]) 33 | 34 | if (!regularDep) { 35 | console.warn(`[relative-deps][WARN] The relative dependency '${name}' should also be added as normal- or dev-dependency`) 36 | } 37 | 38 | // Check if target dir exists 39 | if (!fs.existsSync(libDir)) { 40 | // Nope, but is the dependency mentioned as normal dependency in the package.json? Use that one 41 | if (regularDep) { 42 | console.warn(`[relative-deps][WARN] Could not find target directory '${libDir}', using normally installed version ('${regularDep}') instead`) 43 | return 44 | } else { 45 | console.error( 46 | `[relative-deps][ERROR] Failed to resolve dependency ${name}: failed to find target directory '${libDir}', and the library is not present as normal depenency either` 47 | ) 48 | process.exit(1) 49 | } 50 | } 51 | 52 | const hashStore = { 53 | hash: "", 54 | file: "" 55 | } 56 | const hasChanges = await libraryHasChanged(name, libDir, targetDir, hashStore) 57 | if (hasChanges) { 58 | buildLibrary(name, libDir) 59 | packAndInstallLibrary(name, libDir, targetDir) 60 | fs.writeFileSync(hashStore.file, hashStore.hash) 61 | console.log(`[relative-deps] Re-installing ${name}... DONE`) 62 | } 63 | } 64 | } 65 | 66 | async function watchRelativeDeps() { 67 | const projectPkgJson = readPkgUp.sync() 68 | 69 | const relativeDependencies = projectPkgJson.package.relativeDependencies 70 | 71 | if (!relativeDependencies) { 72 | console.warn("[relative-deps][WARN] No 'relativeDependencies' specified in package.json") 73 | process.exit(0) 74 | } 75 | 76 | Object.values(relativeDependencies).forEach(path => { 77 | fs.watch(path, { recursive: true }, debounce(installRelativeDeps, 500)) 78 | }); 79 | } 80 | 81 | async function libraryHasChanged(name, libDir, targetDir, hashStore) { 82 | const hashFile = path.join(targetDir, "node_modules", name, ".relative-deps-hash") 83 | const referenceContents = fs.existsSync(hashFile) ? fs.readFileSync(hashFile, "utf8") : "" 84 | // compute the hahses 85 | const libFiles = await findFiles(libDir, targetDir) 86 | const hashes = [] 87 | for (file of libFiles) hashes.push(await getFileHash(path.join(libDir, file))) 88 | const contents = libFiles.map((file, index) => hashes[index] + " " + file).join("\n") 89 | hashStore.file = hashFile 90 | hashStore.hash = contents 91 | if (contents === referenceContents) { 92 | // computed hashes still the same? 93 | console.log("[relative-deps] No changes") 94 | return false 95 | } 96 | // Print which files did change 97 | if (referenceContents) { 98 | const contentsLines = contents.split("\n") 99 | const refLines = referenceContents.split("\n") 100 | for (let i = 0; i < contentsLines.length; i++) 101 | if (contentsLines[i] !== refLines[i]) { 102 | console.log("[relative-deps] Changed file: " + libFiles[i]) //, contentsLines[i], refLines[i]) 103 | break 104 | } 105 | } 106 | return true 107 | } 108 | 109 | async function findFiles(libDir, targetDir) { 110 | const ignore = ["**/*", "!node_modules", "!.git"] 111 | // TODO: use resolved paths here 112 | if (targetDir.indexOf(libDir) === 0) { 113 | // The target dir is in the lib directory, make sure that path is excluded 114 | ignore.push("!" + targetDir.substr(libDir.length + 1).split(path.sep)[0]) 115 | } 116 | const files = await globby(ignore, { 117 | gitignore: true, 118 | cwd: libDir, 119 | nodir: true 120 | }) 121 | return files.sort() 122 | } 123 | 124 | function buildLibrary(name, dir) { 125 | // Run install if never done before 126 | if (!fs.existsSync(path.join(dir, "node_modules"))) { 127 | console.log(`[relative-deps] Running 'install' in ${dir}`) 128 | spawn.sync(["install"], { cwd: dir, stdio: [0, 1, 2] }) 129 | } 130 | 131 | // Run build script if present 132 | const libraryPkgJson = JSON.parse(fs.readFileSync(path.join(dir, "package.json"), "utf8")) 133 | if (!libraryPkgJson.name === name) { 134 | console.error(`[relative-deps][ERROR] Mismatch in package name: found '${libraryPkgJson.name}', expected '${name}'`) 135 | process.exit(1) 136 | } 137 | if (libraryPkgJson.scripts && libraryPkgJson.scripts.build) { 138 | console.log(`[relative-deps] Building ${name} in ${dir}`) 139 | spawn.sync(["run", "build"], { cwd: dir, stdio: [0, 1, 2] }) 140 | } 141 | } 142 | 143 | function packAndInstallLibrary(name, dir, targetDir) { 144 | const libDestDir = path.join(targetDir, "node_modules", name) 145 | let fullPackageName 146 | try { 147 | console.log("[relative-deps] Copying to local node_modules") 148 | spawn.sync(["pack"], { cwd: dir, stdio: [0, 1, 2] }) 149 | 150 | if (fs.existsSync(libDestDir)) { 151 | // TODO: should we really remove it? Just overwritting could be fine 152 | rimraf.sync(libDestDir) 153 | } 154 | fs.mkdirSync(libDestDir, { recursive: true }) 155 | 156 | const tmpName = name.replace(/[\s\/]/g, "-").replace(/@/g, "") 157 | // npm replaces @... with at- where yarn just removes it, so we test for both files here 158 | const regex = new RegExp(`^(at-)?${tmpName}(.*).tgz$`) 159 | 160 | const packagedName = fs.readdirSync(dir).find(file => regex.test(file)) 161 | fullPackageName = path.join(dir, packagedName) 162 | 163 | console.log(`[relative-deps] Extracting "${fullPackageName}" to ${libDestDir}`) 164 | 165 | const [cwd, file] = [libDestDir, fullPackageName].map(absolutePath => 166 | path.relative(process.cwd(), absolutePath) 167 | ) 168 | 169 | tar.extract({ 170 | cwd, 171 | file, 172 | gzip: true, 173 | stripComponents: 1, 174 | sync: true 175 | }) 176 | } finally { 177 | if (fullPackageName) { 178 | fs.unlinkSync(fullPackageName) 179 | } 180 | } 181 | } 182 | 183 | async function getFileHash(file) { 184 | return await new Promise((resolve, reject) => { 185 | checksum.file(file, (error, hash) => { 186 | if (error) reject(error) 187 | else resolve(hash) 188 | }) 189 | }) 190 | } 191 | 192 | function addScriptToPackage(script) { 193 | let pkg = getPackageJson() 194 | if (!pkg.scripts) { 195 | pkg.scripts = {} 196 | } 197 | 198 | const msg = `[relative-deps] Adding relative-deps to ${script} script in package.json` 199 | 200 | if (!pkg.scripts[script]) { 201 | console.log(msg) 202 | pkg.scripts[script] = "relative-deps" 203 | 204 | } else if (!pkg.scripts[script].includes("relative-deps")) { 205 | console.log(msg) 206 | pkg.scripts[script] = `${pkg.scripts[script]} && relative-deps` 207 | } 208 | setPackageData(pkg) 209 | } 210 | 211 | function installRelativeDepsPackage() { 212 | let pkg = getPackageJson() 213 | 214 | if (!( 215 | (pkg.devDependencies && pkg.devDependencies["relative-deps"]) || 216 | (pkg.dependencies && pkg.dependencies["relative-deps"]) 217 | )) { 218 | console.log('[relative-deps] Installing relative-deps package') 219 | spawn.sync(["add", "-D", "relative-deps"]) 220 | } 221 | } 222 | 223 | function setupEmptyRelativeDeps() { 224 | let pkg = getPackageJson() 225 | 226 | if (!pkg.relativeDependencies) { 227 | console.log(`[relative-deps] Setting up relativeDependencies section in package.json`) 228 | pkg.relativeDependencies = {} 229 | setPackageData(pkg) 230 | } 231 | } 232 | 233 | function initRelativeDeps({ script }) { 234 | installRelativeDepsPackage() 235 | setupEmptyRelativeDeps() 236 | addScriptToPackage(script) 237 | } 238 | 239 | async function addRelativeDeps({ paths, dev, script }) { 240 | initRelativeDeps({ script }) 241 | 242 | if (!paths || paths.length === 0) { 243 | console.log(`[relative-deps][WARN] no paths provided running ${script}`) 244 | spawn.sync([script]) 245 | return 246 | } 247 | const libraries = paths.map(relPath => { 248 | const libPackagePath = path.resolve(process.cwd(), relPath, "package.json") 249 | if (!fs.existsSync(libPackagePath)) { 250 | console.error( 251 | `[relative-deps][ERROR] Failed to resolve dependency ${relPath}` 252 | ) 253 | process.exit(1) 254 | } 255 | 256 | const libraryPackageJson = JSON.parse(fs.readFileSync(libPackagePath, "utf-8")) 257 | 258 | return { 259 | relPath, 260 | name: libraryPackageJson.name, 261 | version: libraryPackageJson.version 262 | } 263 | }) 264 | 265 | let pkg = getPackageJson() 266 | 267 | const depsKey = dev ? "devDependencies" : "dependencies" 268 | if (!pkg[depsKey]) pkg[depsKey] = {} 269 | 270 | libraries.forEach(library => { 271 | if (!pkg[depsKey][library.name]) { 272 | try { 273 | spawn.sync(["add", ...[dev ? ["-D"] : []], library.name], { stdio: "ignore" }) 274 | } catch (_e) { 275 | console.log(`[relative-deps][WARN] Unable to fetch ${library.name} from registry. Installing as a relative dependency only.`) 276 | } 277 | } 278 | }) 279 | 280 | if (!pkg.relativeDependencies) pkg.relativeDependencies = {} 281 | 282 | libraries.forEach(dependency => { 283 | pkg.relativeDependencies[dependency.name] = dependency.relPath 284 | }) 285 | 286 | setPackageData(pkg) 287 | await installRelativeDeps() 288 | } 289 | 290 | function setPackageData(pkgData) { 291 | const source = getPackageJson() 292 | fs.writeFileSync( 293 | path.join(process.cwd(), "package.json"), 294 | JSON.stringify(merge(source, pkgData), null, 2) 295 | ) 296 | } 297 | 298 | function getPackageJson() { 299 | return JSON.parse(fs.readFileSync(path.join(process.cwd(), 'package.json'), "utf-8")) 300 | } 301 | 302 | module.exports.watchRelativeDeps = watchRelativeDeps 303 | module.exports.installRelativeDeps = installRelativeDeps 304 | module.exports.initRelativeDeps = initRelativeDeps 305 | module.exports.addRelativeDeps = addRelativeDeps 306 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "relative-deps", 3 | "version": "1.0.5", 4 | "description": "Installs local dependencies for optimal developer experience", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "bin": { 10 | "relative-deps": "./cli.js" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/mweststrate/relative-deps.git" 15 | }, 16 | "keywords": [ 17 | "yarn", 18 | "npm", 19 | "link", 20 | "relative", 21 | "dependencies" 22 | ], 23 | "author": "Michel Weststrate", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/mweststrate/relative-deps/issues" 27 | }, 28 | "homepage": "https://github.com/mweststrate/relative-deps#readme", 29 | "dependencies": { 30 | "checksum": "^0.1.1", 31 | "globby": "^9.2.0", 32 | "lodash": "^4.17.15", 33 | "read-pkg-up": "^6.0.0", 34 | "rimraf": "^2.6.3", 35 | "tar": "^6.0.5", 36 | "yargs": "^15.0.2", 37 | "yarn-or-npm": "^3.0.1" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@mrmlnc/readdir-enhanced@^2.2.1": 6 | version "2.2.1" 7 | resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" 8 | integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== 9 | dependencies: 10 | call-me-maybe "^1.0.1" 11 | glob-to-regexp "^0.3.0" 12 | 13 | "@nodelib/fs.stat@^1.1.2": 14 | version "1.1.3" 15 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" 16 | integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== 17 | 18 | "@types/color-name@^1.1.1": 19 | version "1.1.1" 20 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 21 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 22 | 23 | "@types/events@*": 24 | version "3.0.0" 25 | resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" 26 | integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== 27 | 28 | "@types/glob@^7.1.1": 29 | version "7.1.1" 30 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" 31 | integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== 32 | dependencies: 33 | "@types/events" "*" 34 | "@types/minimatch" "*" 35 | "@types/node" "*" 36 | 37 | "@types/minimatch@*": 38 | version "3.0.3" 39 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 40 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 41 | 42 | "@types/node@*": 43 | version "12.0.10" 44 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.0.10.tgz#51babf9c7deadd5343620055fc8aff7995c8b031" 45 | integrity sha512-LcsGbPomWsad6wmMNv7nBLw7YYYyfdYcz6xryKYQhx89c3XXan+8Q6AJ43G5XDIaklaVkK3mE4fCb0SBvMiPSQ== 46 | 47 | "@types/normalize-package-data@^2.4.0": 48 | version "2.4.0" 49 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 50 | integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 51 | 52 | ansi-regex@^5.0.0: 53 | version "5.0.0" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 55 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 56 | 57 | ansi-styles@^4.0.0: 58 | version "4.2.0" 59 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.0.tgz#5681f0dcf7ae5880a7841d8831c4724ed9cc0172" 60 | integrity sha512-7kFQgnEaMdRtwf6uSfUnVr9gSGC7faurn+J/Mv90/W+iTtN0405/nLdopfMWwchyxhbGYl6TC4Sccn9TUkGAgg== 61 | dependencies: 62 | "@types/color-name" "^1.1.1" 63 | color-convert "^2.0.1" 64 | 65 | arr-diff@^4.0.0: 66 | version "4.0.0" 67 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 68 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 69 | 70 | arr-flatten@^1.1.0: 71 | version "1.1.0" 72 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 73 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 74 | 75 | arr-union@^3.1.0: 76 | version "3.1.0" 77 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 78 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 79 | 80 | array-union@^1.0.2: 81 | version "1.0.2" 82 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 83 | integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= 84 | dependencies: 85 | array-uniq "^1.0.1" 86 | 87 | array-uniq@^1.0.1: 88 | version "1.0.3" 89 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 90 | integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= 91 | 92 | array-unique@^0.3.2: 93 | version "0.3.2" 94 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 95 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 96 | 97 | assign-symbols@^1.0.0: 98 | version "1.0.0" 99 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 100 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 101 | 102 | atob@^2.1.1: 103 | version "2.1.2" 104 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 105 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 106 | 107 | balanced-match@^1.0.0: 108 | version "1.0.0" 109 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 110 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 111 | 112 | base@^0.11.1: 113 | version "0.11.2" 114 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 115 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 116 | dependencies: 117 | cache-base "^1.0.1" 118 | class-utils "^0.3.5" 119 | component-emitter "^1.2.1" 120 | define-property "^1.0.0" 121 | isobject "^3.0.1" 122 | mixin-deep "^1.2.0" 123 | pascalcase "^0.1.1" 124 | 125 | brace-expansion@^1.1.7: 126 | version "1.1.11" 127 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 128 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 129 | dependencies: 130 | balanced-match "^1.0.0" 131 | concat-map "0.0.1" 132 | 133 | braces@^2.3.1: 134 | version "2.3.2" 135 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 136 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 137 | dependencies: 138 | arr-flatten "^1.1.0" 139 | array-unique "^0.3.2" 140 | extend-shallow "^2.0.1" 141 | fill-range "^4.0.0" 142 | isobject "^3.0.1" 143 | repeat-element "^1.1.2" 144 | snapdragon "^0.8.1" 145 | snapdragon-node "^2.0.1" 146 | split-string "^3.0.2" 147 | to-regex "^3.0.1" 148 | 149 | cache-base@^1.0.1: 150 | version "1.0.1" 151 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 152 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 153 | dependencies: 154 | collection-visit "^1.0.0" 155 | component-emitter "^1.2.1" 156 | get-value "^2.0.6" 157 | has-value "^1.0.0" 158 | isobject "^3.0.1" 159 | set-value "^2.0.0" 160 | to-object-path "^0.3.0" 161 | union-value "^1.0.0" 162 | unset-value "^1.0.0" 163 | 164 | call-me-maybe@^1.0.1: 165 | version "1.0.1" 166 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 167 | integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= 168 | 169 | camelcase@^5.0.0: 170 | version "5.3.1" 171 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 172 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 173 | 174 | checksum@^0.1.1: 175 | version "0.1.1" 176 | resolved "https://registry.yarnpkg.com/checksum/-/checksum-0.1.1.tgz#dc6527d4c90be8560dbd1ed4cecf3297d528e9e9" 177 | integrity sha1-3GUn1MkL6FYNvR7Uzs8yl9Uo6ek= 178 | dependencies: 179 | optimist "~0.3.5" 180 | 181 | chownr@^2.0.0: 182 | version "2.0.0" 183 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 184 | integrity sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4= 185 | 186 | class-utils@^0.3.5: 187 | version "0.3.6" 188 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 189 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 190 | dependencies: 191 | arr-union "^3.1.0" 192 | define-property "^0.2.5" 193 | isobject "^3.0.0" 194 | static-extend "^0.1.1" 195 | 196 | cliui@^6.0.0: 197 | version "6.0.0" 198 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 199 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 200 | dependencies: 201 | string-width "^4.2.0" 202 | strip-ansi "^6.0.0" 203 | wrap-ansi "^6.2.0" 204 | 205 | collection-visit@^1.0.0: 206 | version "1.0.0" 207 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 208 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 209 | dependencies: 210 | map-visit "^1.0.0" 211 | object-visit "^1.0.0" 212 | 213 | color-convert@^2.0.1: 214 | version "2.0.1" 215 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 216 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 217 | dependencies: 218 | color-name "~1.1.4" 219 | 220 | color-name@~1.1.4: 221 | version "1.1.4" 222 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 223 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 224 | 225 | component-emitter@^1.2.1: 226 | version "1.3.0" 227 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 228 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 229 | 230 | concat-map@0.0.1: 231 | version "0.0.1" 232 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 233 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 234 | 235 | copy-descriptor@^0.1.0: 236 | version "0.1.1" 237 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 238 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 239 | 240 | cross-spawn@^6.0.5: 241 | version "6.0.5" 242 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 243 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 244 | dependencies: 245 | nice-try "^1.0.4" 246 | path-key "^2.0.1" 247 | semver "^5.5.0" 248 | shebang-command "^1.2.0" 249 | which "^1.2.9" 250 | 251 | debug@^2.2.0, debug@^2.3.3: 252 | version "2.6.9" 253 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 254 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 255 | dependencies: 256 | ms "2.0.0" 257 | 258 | decamelize@^1.2.0: 259 | version "1.2.0" 260 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 261 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 262 | 263 | decode-uri-component@^0.2.0: 264 | version "0.2.0" 265 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 266 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 267 | 268 | define-property@^0.2.5: 269 | version "0.2.5" 270 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 271 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 272 | dependencies: 273 | is-descriptor "^0.1.0" 274 | 275 | define-property@^1.0.0: 276 | version "1.0.0" 277 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 278 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 279 | dependencies: 280 | is-descriptor "^1.0.0" 281 | 282 | define-property@^2.0.2: 283 | version "2.0.2" 284 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 285 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 286 | dependencies: 287 | is-descriptor "^1.0.2" 288 | isobject "^3.0.1" 289 | 290 | dir-glob@^2.2.2: 291 | version "2.2.2" 292 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" 293 | integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== 294 | dependencies: 295 | path-type "^3.0.0" 296 | 297 | emoji-regex@^8.0.0: 298 | version "8.0.0" 299 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 300 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 301 | 302 | error-ex@^1.3.1: 303 | version "1.3.2" 304 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 305 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 306 | dependencies: 307 | is-arrayish "^0.2.1" 308 | 309 | expand-brackets@^2.1.4: 310 | version "2.1.4" 311 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 312 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 313 | dependencies: 314 | debug "^2.3.3" 315 | define-property "^0.2.5" 316 | extend-shallow "^2.0.1" 317 | posix-character-classes "^0.1.0" 318 | regex-not "^1.0.0" 319 | snapdragon "^0.8.1" 320 | to-regex "^3.0.1" 321 | 322 | extend-shallow@^2.0.1: 323 | version "2.0.1" 324 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 325 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 326 | dependencies: 327 | is-extendable "^0.1.0" 328 | 329 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 330 | version "3.0.2" 331 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 332 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 333 | dependencies: 334 | assign-symbols "^1.0.0" 335 | is-extendable "^1.0.1" 336 | 337 | extglob@^2.0.4: 338 | version "2.0.4" 339 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 340 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 341 | dependencies: 342 | array-unique "^0.3.2" 343 | define-property "^1.0.0" 344 | expand-brackets "^2.1.4" 345 | extend-shallow "^2.0.1" 346 | fragment-cache "^0.2.1" 347 | regex-not "^1.0.0" 348 | snapdragon "^0.8.1" 349 | to-regex "^3.0.1" 350 | 351 | fast-glob@^2.2.6: 352 | version "2.2.7" 353 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" 354 | integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== 355 | dependencies: 356 | "@mrmlnc/readdir-enhanced" "^2.2.1" 357 | "@nodelib/fs.stat" "^1.1.2" 358 | glob-parent "^3.1.0" 359 | is-glob "^4.0.0" 360 | merge2 "^1.2.3" 361 | micromatch "^3.1.10" 362 | 363 | fill-range@^4.0.0: 364 | version "4.0.0" 365 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 366 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 367 | dependencies: 368 | extend-shallow "^2.0.1" 369 | is-number "^3.0.0" 370 | repeat-string "^1.6.1" 371 | to-regex-range "^2.1.0" 372 | 373 | find-up@^4.0.0, find-up@^4.1.0: 374 | version "4.1.0" 375 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 376 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 377 | dependencies: 378 | locate-path "^5.0.0" 379 | path-exists "^4.0.0" 380 | 381 | for-in@^1.0.2: 382 | version "1.0.2" 383 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 384 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 385 | 386 | fragment-cache@^0.2.1: 387 | version "0.2.1" 388 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 389 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 390 | dependencies: 391 | map-cache "^0.2.2" 392 | 393 | fs-minipass@^2.0.0: 394 | version "2.1.0" 395 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 396 | integrity sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs= 397 | dependencies: 398 | minipass "^3.0.0" 399 | 400 | fs.realpath@^1.0.0: 401 | version "1.0.0" 402 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 403 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 404 | 405 | get-caller-file@^2.0.1: 406 | version "2.0.5" 407 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 408 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 409 | 410 | get-value@^2.0.3, get-value@^2.0.6: 411 | version "2.0.6" 412 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 413 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 414 | 415 | glob-parent@^3.1.0: 416 | version "3.1.0" 417 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 418 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 419 | dependencies: 420 | is-glob "^3.1.0" 421 | path-dirname "^1.0.0" 422 | 423 | glob-to-regexp@^0.3.0: 424 | version "0.3.0" 425 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" 426 | integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= 427 | 428 | glob@^7.1.3: 429 | version "7.1.4" 430 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 431 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 432 | dependencies: 433 | fs.realpath "^1.0.0" 434 | inflight "^1.0.4" 435 | inherits "2" 436 | minimatch "^3.0.4" 437 | once "^1.3.0" 438 | path-is-absolute "^1.0.0" 439 | 440 | globby@^9.2.0: 441 | version "9.2.0" 442 | resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" 443 | integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== 444 | dependencies: 445 | "@types/glob" "^7.1.1" 446 | array-union "^1.0.2" 447 | dir-glob "^2.2.2" 448 | fast-glob "^2.2.6" 449 | glob "^7.1.3" 450 | ignore "^4.0.3" 451 | pify "^4.0.1" 452 | slash "^2.0.0" 453 | 454 | has-value@^0.3.1: 455 | version "0.3.1" 456 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 457 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 458 | dependencies: 459 | get-value "^2.0.3" 460 | has-values "^0.1.4" 461 | isobject "^2.0.0" 462 | 463 | has-value@^1.0.0: 464 | version "1.0.0" 465 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 466 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 467 | dependencies: 468 | get-value "^2.0.6" 469 | has-values "^1.0.0" 470 | isobject "^3.0.0" 471 | 472 | has-values@^0.1.4: 473 | version "0.1.4" 474 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 475 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 476 | 477 | has-values@^1.0.0: 478 | version "1.0.0" 479 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 480 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 481 | dependencies: 482 | is-number "^3.0.0" 483 | kind-of "^4.0.0" 484 | 485 | hosted-git-info@^2.1.4: 486 | version "2.8.9" 487 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 488 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 489 | 490 | ignore@^4.0.3: 491 | version "4.0.6" 492 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 493 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 494 | 495 | inflight@^1.0.4: 496 | version "1.0.6" 497 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 498 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 499 | dependencies: 500 | once "^1.3.0" 501 | wrappy "1" 502 | 503 | inherits@2: 504 | version "2.0.4" 505 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 506 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 507 | 508 | is-accessor-descriptor@^0.1.6: 509 | version "0.1.6" 510 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 511 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 512 | dependencies: 513 | kind-of "^3.0.2" 514 | 515 | is-accessor-descriptor@^1.0.0: 516 | version "1.0.0" 517 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 518 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 519 | dependencies: 520 | kind-of "^6.0.0" 521 | 522 | is-arrayish@^0.2.1: 523 | version "0.2.1" 524 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 525 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 526 | 527 | is-buffer@^1.1.5: 528 | version "1.1.6" 529 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 530 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 531 | 532 | is-data-descriptor@^0.1.4: 533 | version "0.1.4" 534 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 535 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 536 | dependencies: 537 | kind-of "^3.0.2" 538 | 539 | is-data-descriptor@^1.0.0: 540 | version "1.0.0" 541 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 542 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 543 | dependencies: 544 | kind-of "^6.0.0" 545 | 546 | is-descriptor@^0.1.0: 547 | version "0.1.6" 548 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 549 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 550 | dependencies: 551 | is-accessor-descriptor "^0.1.6" 552 | is-data-descriptor "^0.1.4" 553 | kind-of "^5.0.0" 554 | 555 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 556 | version "1.0.2" 557 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 558 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 559 | dependencies: 560 | is-accessor-descriptor "^1.0.0" 561 | is-data-descriptor "^1.0.0" 562 | kind-of "^6.0.2" 563 | 564 | is-extendable@^0.1.0, is-extendable@^0.1.1: 565 | version "0.1.1" 566 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 567 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 568 | 569 | is-extendable@^1.0.1: 570 | version "1.0.1" 571 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 572 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 573 | dependencies: 574 | is-plain-object "^2.0.4" 575 | 576 | is-extglob@^2.1.0, is-extglob@^2.1.1: 577 | version "2.1.1" 578 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 579 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 580 | 581 | is-fullwidth-code-point@^3.0.0: 582 | version "3.0.0" 583 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 584 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 585 | 586 | is-glob@^3.1.0: 587 | version "3.1.0" 588 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 589 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 590 | dependencies: 591 | is-extglob "^2.1.0" 592 | 593 | is-glob@^4.0.0: 594 | version "4.0.1" 595 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 596 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 597 | dependencies: 598 | is-extglob "^2.1.1" 599 | 600 | is-number@^3.0.0: 601 | version "3.0.0" 602 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 603 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 604 | dependencies: 605 | kind-of "^3.0.2" 606 | 607 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 608 | version "2.0.4" 609 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 610 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 611 | dependencies: 612 | isobject "^3.0.1" 613 | 614 | is-windows@^1.0.2: 615 | version "1.0.2" 616 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 617 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 618 | 619 | isarray@1.0.0: 620 | version "1.0.0" 621 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 622 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 623 | 624 | isexe@^2.0.0: 625 | version "2.0.0" 626 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 627 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 628 | 629 | isobject@^2.0.0: 630 | version "2.1.0" 631 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 632 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 633 | dependencies: 634 | isarray "1.0.0" 635 | 636 | isobject@^3.0.0, isobject@^3.0.1: 637 | version "3.0.1" 638 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 639 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 640 | 641 | json-parse-better-errors@^1.0.1: 642 | version "1.0.2" 643 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 644 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 645 | 646 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 647 | version "3.2.2" 648 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 649 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 650 | dependencies: 651 | is-buffer "^1.1.5" 652 | 653 | kind-of@^4.0.0: 654 | version "4.0.0" 655 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 656 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 657 | dependencies: 658 | is-buffer "^1.1.5" 659 | 660 | kind-of@^5.0.0: 661 | version "5.1.0" 662 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 663 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 664 | 665 | kind-of@^6.0.0, kind-of@^6.0.2: 666 | version "6.0.2" 667 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 668 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 669 | 670 | locate-path@^5.0.0: 671 | version "5.0.0" 672 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 673 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 674 | dependencies: 675 | p-locate "^4.1.0" 676 | 677 | lodash@^4.17.15: 678 | version "4.17.21" 679 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 680 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 681 | 682 | map-cache@^0.2.2: 683 | version "0.2.2" 684 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 685 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 686 | 687 | map-visit@^1.0.0: 688 | version "1.0.0" 689 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 690 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 691 | dependencies: 692 | object-visit "^1.0.0" 693 | 694 | merge2@^1.2.3: 695 | version "1.2.3" 696 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" 697 | integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA== 698 | 699 | micromatch@^3.1.10: 700 | version "3.1.10" 701 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 702 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 703 | dependencies: 704 | arr-diff "^4.0.0" 705 | array-unique "^0.3.2" 706 | braces "^2.3.1" 707 | define-property "^2.0.2" 708 | extend-shallow "^3.0.2" 709 | extglob "^2.0.4" 710 | fragment-cache "^0.2.1" 711 | kind-of "^6.0.2" 712 | nanomatch "^1.2.9" 713 | object.pick "^1.3.0" 714 | regex-not "^1.0.0" 715 | snapdragon "^0.8.1" 716 | to-regex "^3.0.2" 717 | 718 | minimatch@^3.0.4: 719 | version "3.0.4" 720 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 721 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 722 | dependencies: 723 | brace-expansion "^1.1.7" 724 | 725 | minipass@^3.0.0: 726 | version "3.1.3" 727 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" 728 | integrity sha1-fUL/HzljVILhX5zbUxhN7r1YFf0= 729 | dependencies: 730 | yallist "^4.0.0" 731 | 732 | minizlib@^2.1.1: 733 | version "2.1.2" 734 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 735 | integrity sha1-6Q00Zrogm5MkUVCKEc49NjIUWTE= 736 | dependencies: 737 | minipass "^3.0.0" 738 | yallist "^4.0.0" 739 | 740 | mixin-deep@^1.2.0: 741 | version "1.3.2" 742 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 743 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 744 | dependencies: 745 | for-in "^1.0.2" 746 | is-extendable "^1.0.1" 747 | 748 | mkdirp@^1.0.3: 749 | version "1.0.4" 750 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 751 | integrity sha1-PrXtYmInVteaXw4qIh3+utdcL34= 752 | 753 | ms@2.0.0: 754 | version "2.0.0" 755 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 756 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 757 | 758 | nanomatch@^1.2.9: 759 | version "1.2.13" 760 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 761 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 762 | dependencies: 763 | arr-diff "^4.0.0" 764 | array-unique "^0.3.2" 765 | define-property "^2.0.2" 766 | extend-shallow "^3.0.2" 767 | fragment-cache "^0.2.1" 768 | is-windows "^1.0.2" 769 | kind-of "^6.0.2" 770 | object.pick "^1.3.0" 771 | regex-not "^1.0.0" 772 | snapdragon "^0.8.1" 773 | to-regex "^3.0.1" 774 | 775 | nice-try@^1.0.4: 776 | version "1.0.5" 777 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 778 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 779 | 780 | normalize-package-data@^2.5.0: 781 | version "2.5.0" 782 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 783 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 784 | dependencies: 785 | hosted-git-info "^2.1.4" 786 | resolve "^1.10.0" 787 | semver "2 || 3 || 4 || 5" 788 | validate-npm-package-license "^3.0.1" 789 | 790 | object-copy@^0.1.0: 791 | version "0.1.0" 792 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 793 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 794 | dependencies: 795 | copy-descriptor "^0.1.0" 796 | define-property "^0.2.5" 797 | kind-of "^3.0.3" 798 | 799 | object-visit@^1.0.0: 800 | version "1.0.1" 801 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 802 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 803 | dependencies: 804 | isobject "^3.0.0" 805 | 806 | object.pick@^1.3.0: 807 | version "1.3.0" 808 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 809 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 810 | dependencies: 811 | isobject "^3.0.1" 812 | 813 | once@^1.3.0: 814 | version "1.4.0" 815 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 816 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 817 | dependencies: 818 | wrappy "1" 819 | 820 | optimist@~0.3.5: 821 | version "0.3.7" 822 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" 823 | integrity sha1-yQlBrVnkJzMokjB00s8ufLxuwNk= 824 | dependencies: 825 | wordwrap "~0.0.2" 826 | 827 | p-limit@^2.2.0: 828 | version "2.2.0" 829 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 830 | integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== 831 | dependencies: 832 | p-try "^2.0.0" 833 | 834 | p-locate@^4.1.0: 835 | version "4.1.0" 836 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 837 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 838 | dependencies: 839 | p-limit "^2.2.0" 840 | 841 | p-try@^2.0.0: 842 | version "2.2.0" 843 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 844 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 845 | 846 | parse-json@^4.0.0: 847 | version "4.0.0" 848 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 849 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 850 | dependencies: 851 | error-ex "^1.3.1" 852 | json-parse-better-errors "^1.0.1" 853 | 854 | pascalcase@^0.1.1: 855 | version "0.1.1" 856 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 857 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 858 | 859 | path-dirname@^1.0.0: 860 | version "1.0.2" 861 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 862 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 863 | 864 | path-exists@^4.0.0: 865 | version "4.0.0" 866 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 867 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 868 | 869 | path-is-absolute@^1.0.0: 870 | version "1.0.1" 871 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 872 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 873 | 874 | path-key@^2.0.1: 875 | version "2.0.1" 876 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 877 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 878 | 879 | path-parse@^1.0.6: 880 | version "1.0.6" 881 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 882 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 883 | 884 | path-type@^3.0.0: 885 | version "3.0.0" 886 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 887 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 888 | dependencies: 889 | pify "^3.0.0" 890 | 891 | pify@^3.0.0: 892 | version "3.0.0" 893 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 894 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 895 | 896 | pify@^4.0.1: 897 | version "4.0.1" 898 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 899 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 900 | 901 | pkg-dir@^4.2.0: 902 | version "4.2.0" 903 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 904 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 905 | dependencies: 906 | find-up "^4.0.0" 907 | 908 | posix-character-classes@^0.1.0: 909 | version "0.1.1" 910 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 911 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 912 | 913 | read-pkg-up@^6.0.0: 914 | version "6.0.0" 915 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-6.0.0.tgz#da75ce72762f2fa1f20c5a40d4dd80c77db969e3" 916 | integrity sha512-odtTvLl+EXo1eTsMnoUHRmg/XmXdTkwXVxy4VFE9Kp6cCq7b3l7QMdBndND3eAFzrbSAXC/WCUOQQ9rLjifKZw== 917 | dependencies: 918 | find-up "^4.0.0" 919 | read-pkg "^5.1.1" 920 | type-fest "^0.5.0" 921 | 922 | read-pkg@^5.1.1: 923 | version "5.1.1" 924 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.1.1.tgz#5cf234dde7a405c90c88a519ab73c467e9cb83f5" 925 | integrity sha512-dFcTLQi6BZ+aFUaICg7er+/usEoqFdQxiEBsEMNGoipenihtxxtdrQuBXvyANCEI8VuUIVYFgeHGx9sLLvim4w== 926 | dependencies: 927 | "@types/normalize-package-data" "^2.4.0" 928 | normalize-package-data "^2.5.0" 929 | parse-json "^4.0.0" 930 | type-fest "^0.4.1" 931 | 932 | regex-not@^1.0.0, regex-not@^1.0.2: 933 | version "1.0.2" 934 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 935 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 936 | dependencies: 937 | extend-shallow "^3.0.2" 938 | safe-regex "^1.1.0" 939 | 940 | repeat-element@^1.1.2: 941 | version "1.1.3" 942 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 943 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 944 | 945 | repeat-string@^1.6.1: 946 | version "1.6.1" 947 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 948 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 949 | 950 | require-directory@^2.1.1: 951 | version "2.1.1" 952 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 953 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 954 | 955 | require-main-filename@^2.0.0: 956 | version "2.0.0" 957 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 958 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 959 | 960 | resolve-url@^0.2.1: 961 | version "0.2.1" 962 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 963 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 964 | 965 | resolve@^1.10.0: 966 | version "1.11.0" 967 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz#4014870ba296176b86343d50b60f3b50609ce232" 968 | integrity sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw== 969 | dependencies: 970 | path-parse "^1.0.6" 971 | 972 | ret@~0.1.10: 973 | version "0.1.15" 974 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 975 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 976 | 977 | rimraf@^2.6.3: 978 | version "2.6.3" 979 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 980 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 981 | dependencies: 982 | glob "^7.1.3" 983 | 984 | safe-regex@^1.1.0: 985 | version "1.1.0" 986 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 987 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 988 | dependencies: 989 | ret "~0.1.10" 990 | 991 | "semver@2 || 3 || 4 || 5": 992 | version "5.7.0" 993 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 994 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 995 | 996 | semver@^5.5.0: 997 | version "5.7.1" 998 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 999 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1000 | 1001 | set-blocking@^2.0.0: 1002 | version "2.0.0" 1003 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1004 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1005 | 1006 | set-value@^0.4.3: 1007 | version "0.4.3" 1008 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 1009 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 1010 | dependencies: 1011 | extend-shallow "^2.0.1" 1012 | is-extendable "^0.1.1" 1013 | is-plain-object "^2.0.1" 1014 | to-object-path "^0.3.0" 1015 | 1016 | set-value@^2.0.0: 1017 | version "2.0.0" 1018 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 1019 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 1020 | dependencies: 1021 | extend-shallow "^2.0.1" 1022 | is-extendable "^0.1.1" 1023 | is-plain-object "^2.0.3" 1024 | split-string "^3.0.1" 1025 | 1026 | shebang-command@^1.2.0: 1027 | version "1.2.0" 1028 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1029 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1030 | dependencies: 1031 | shebang-regex "^1.0.0" 1032 | 1033 | shebang-regex@^1.0.0: 1034 | version "1.0.0" 1035 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1036 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1037 | 1038 | slash@^2.0.0: 1039 | version "2.0.0" 1040 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 1041 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== 1042 | 1043 | snapdragon-node@^2.0.1: 1044 | version "2.1.1" 1045 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 1046 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 1047 | dependencies: 1048 | define-property "^1.0.0" 1049 | isobject "^3.0.0" 1050 | snapdragon-util "^3.0.1" 1051 | 1052 | snapdragon-util@^3.0.1: 1053 | version "3.0.1" 1054 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 1055 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 1056 | dependencies: 1057 | kind-of "^3.2.0" 1058 | 1059 | snapdragon@^0.8.1: 1060 | version "0.8.2" 1061 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 1062 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 1063 | dependencies: 1064 | base "^0.11.1" 1065 | debug "^2.2.0" 1066 | define-property "^0.2.5" 1067 | extend-shallow "^2.0.1" 1068 | map-cache "^0.2.2" 1069 | source-map "^0.5.6" 1070 | source-map-resolve "^0.5.0" 1071 | use "^3.1.0" 1072 | 1073 | source-map-resolve@^0.5.0: 1074 | version "0.5.2" 1075 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 1076 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 1077 | dependencies: 1078 | atob "^2.1.1" 1079 | decode-uri-component "^0.2.0" 1080 | resolve-url "^0.2.1" 1081 | source-map-url "^0.4.0" 1082 | urix "^0.1.0" 1083 | 1084 | source-map-url@^0.4.0: 1085 | version "0.4.0" 1086 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 1087 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 1088 | 1089 | source-map@^0.5.6: 1090 | version "0.5.7" 1091 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1092 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1093 | 1094 | spdx-correct@^3.0.0: 1095 | version "3.1.0" 1096 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 1097 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 1098 | dependencies: 1099 | spdx-expression-parse "^3.0.0" 1100 | spdx-license-ids "^3.0.0" 1101 | 1102 | spdx-exceptions@^2.1.0: 1103 | version "2.2.0" 1104 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 1105 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 1106 | 1107 | spdx-expression-parse@^3.0.0: 1108 | version "3.0.0" 1109 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1110 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 1111 | dependencies: 1112 | spdx-exceptions "^2.1.0" 1113 | spdx-license-ids "^3.0.0" 1114 | 1115 | spdx-license-ids@^3.0.0: 1116 | version "3.0.4" 1117 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" 1118 | integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== 1119 | 1120 | split-string@^3.0.1, split-string@^3.0.2: 1121 | version "3.1.0" 1122 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 1123 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 1124 | dependencies: 1125 | extend-shallow "^3.0.0" 1126 | 1127 | static-extend@^0.1.1: 1128 | version "0.1.2" 1129 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 1130 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 1131 | dependencies: 1132 | define-property "^0.2.5" 1133 | object-copy "^0.1.0" 1134 | 1135 | string-width@^4.1.0, string-width@^4.2.0: 1136 | version "4.2.0" 1137 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1138 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1139 | dependencies: 1140 | emoji-regex "^8.0.0" 1141 | is-fullwidth-code-point "^3.0.0" 1142 | strip-ansi "^6.0.0" 1143 | 1144 | strip-ansi@^6.0.0: 1145 | version "6.0.0" 1146 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1147 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1148 | dependencies: 1149 | ansi-regex "^5.0.0" 1150 | 1151 | tar@^6.0.5: 1152 | version "6.0.5" 1153 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f" 1154 | integrity sha1-vegVCG4Qs58dzSmOidWW4VNeIA8= 1155 | dependencies: 1156 | chownr "^2.0.0" 1157 | fs-minipass "^2.0.0" 1158 | minipass "^3.0.0" 1159 | minizlib "^2.1.1" 1160 | mkdirp "^1.0.3" 1161 | yallist "^4.0.0" 1162 | 1163 | to-object-path@^0.3.0: 1164 | version "0.3.0" 1165 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 1166 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 1167 | dependencies: 1168 | kind-of "^3.0.2" 1169 | 1170 | to-regex-range@^2.1.0: 1171 | version "2.1.1" 1172 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 1173 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 1174 | dependencies: 1175 | is-number "^3.0.0" 1176 | repeat-string "^1.6.1" 1177 | 1178 | to-regex@^3.0.1, to-regex@^3.0.2: 1179 | version "3.0.2" 1180 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 1181 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 1182 | dependencies: 1183 | define-property "^2.0.2" 1184 | extend-shallow "^3.0.2" 1185 | regex-not "^1.0.2" 1186 | safe-regex "^1.1.0" 1187 | 1188 | type-fest@^0.4.1: 1189 | version "0.4.1" 1190 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" 1191 | integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== 1192 | 1193 | type-fest@^0.5.0: 1194 | version "0.5.2" 1195 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2" 1196 | integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw== 1197 | 1198 | union-value@^1.0.0: 1199 | version "1.0.0" 1200 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 1201 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 1202 | dependencies: 1203 | arr-union "^3.1.0" 1204 | get-value "^2.0.6" 1205 | is-extendable "^0.1.1" 1206 | set-value "^0.4.3" 1207 | 1208 | unset-value@^1.0.0: 1209 | version "1.0.0" 1210 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 1211 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 1212 | dependencies: 1213 | has-value "^0.3.1" 1214 | isobject "^3.0.0" 1215 | 1216 | urix@^0.1.0: 1217 | version "0.1.0" 1218 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 1219 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 1220 | 1221 | use@^3.1.0: 1222 | version "3.1.1" 1223 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 1224 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 1225 | 1226 | validate-npm-package-license@^3.0.1: 1227 | version "3.0.4" 1228 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1229 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1230 | dependencies: 1231 | spdx-correct "^3.0.0" 1232 | spdx-expression-parse "^3.0.0" 1233 | 1234 | which-module@^2.0.0: 1235 | version "2.0.0" 1236 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1237 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 1238 | 1239 | which@^1.2.9: 1240 | version "1.3.1" 1241 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1242 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1243 | dependencies: 1244 | isexe "^2.0.0" 1245 | 1246 | wordwrap@~0.0.2: 1247 | version "0.0.3" 1248 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1249 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 1250 | 1251 | wrap-ansi@^6.2.0: 1252 | version "6.2.0" 1253 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 1254 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 1255 | dependencies: 1256 | ansi-styles "^4.0.0" 1257 | string-width "^4.1.0" 1258 | strip-ansi "^6.0.0" 1259 | 1260 | wrappy@1: 1261 | version "1.0.2" 1262 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1263 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1264 | 1265 | y18n@^4.0.0: 1266 | version "4.0.1" 1267 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" 1268 | integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== 1269 | 1270 | yallist@^4.0.0: 1271 | version "4.0.0" 1272 | resolved "https://artifacts.us.dominos.com/artifactory/api/npm/npm-all/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1273 | integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI= 1274 | 1275 | yargs-parser@^16.1.0: 1276 | version "16.1.0" 1277 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1" 1278 | integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg== 1279 | dependencies: 1280 | camelcase "^5.0.0" 1281 | decamelize "^1.2.0" 1282 | 1283 | yargs@^15.0.2: 1284 | version "15.0.2" 1285 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.0.2.tgz#4248bf218ef050385c4f7e14ebdf425653d13bd3" 1286 | integrity sha512-GH/X/hYt+x5hOat4LMnCqMd8r5Cv78heOMIJn1hr7QPPBqfeC6p89Y78+WB9yGDvfpCvgasfmWLzNzEioOUD9Q== 1287 | dependencies: 1288 | cliui "^6.0.0" 1289 | decamelize "^1.2.0" 1290 | find-up "^4.1.0" 1291 | get-caller-file "^2.0.1" 1292 | require-directory "^2.1.1" 1293 | require-main-filename "^2.0.0" 1294 | set-blocking "^2.0.0" 1295 | string-width "^4.2.0" 1296 | which-module "^2.0.0" 1297 | y18n "^4.0.0" 1298 | yargs-parser "^16.1.0" 1299 | 1300 | yarn-or-npm@^3.0.1: 1301 | version "3.0.1" 1302 | resolved "https://amazon.goshawk.aws.a2z.com:443/npm/shared/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz#6336eea4dff7e23e226acc98c1a8ada17a1b8666" 1303 | integrity sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ== 1304 | dependencies: 1305 | cross-spawn "^6.0.5" 1306 | pkg-dir "^4.2.0" 1307 | --------------------------------------------------------------------------------