├── .eslintignore ├── .eslintrc ├── .gitignore ├── .vscode └── fakefile.code-workspace ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── install.js ├── package.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/** 2 | lib/** 3 | coverage/** 4 | node_modules/** 5 | test/lib/** 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "standard", 4 | "eslint:recommended" 5 | ], 6 | "env": { 7 | "es6" : true, 8 | "jest" : true, 9 | "node": true 10 | }, 11 | "settings": { 12 | "node": { 13 | "version": "10" 14 | } 15 | }, 16 | "parser": "babel-eslint", 17 | "globals": { 18 | "URL" : true 19 | }, 20 | "rules": { 21 | "no-multi-spaces": "off", 22 | "no-multi-str": "off", 23 | "no-unneeded-ternary": "off", 24 | "quotes": [ 25 | "error", 26 | "single", 27 | { 28 | "avoidEscape": true, 29 | "allowTemplateLiterals": true 30 | } 31 | ], 32 | "comma-dangle": [ 33 | "error", 34 | { 35 | "arrays": "always-multiline", 36 | "objects": "always-multiline", 37 | "imports": "never", 38 | "exports": "never", 39 | "functions": "never" 40 | } 41 | ], 42 | "key-spacing": ["error", { 43 | "multiLine": { 44 | "beforeColon": false, 45 | "afterColon": true 46 | }, 47 | "align": { 48 | "beforeColon": false, 49 | "afterColon" : true, 50 | "on" : "colon", 51 | "mode" : "strict" 52 | } 53 | }] 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | npm-debug.log 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.vscode/fakefile.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": ".." 5 | } 6 | ], 7 | "settings": {} 8 | } 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## v1.0.0 2 | 3 | Released: 2020-10-19. 4 | [Diff](https://github.com/kvz/fakefile/compare/v0.0.10...v1.0.0). 5 | 6 | - [x] Require Node.js 10+ 7 | - [x] Don't complain when an `install` run script was defined in the consuming project's `package.json` 8 | - [x] Also match on run scripts that use dashes. Thank you @Jarvie8176 9 | - [x] Add support for Yarn 10 | 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Kevin van Zonneveld 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 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Licensed under MIT. 2 | # Copyright (2016) by Kevin van Zonneveld https://twitter.com/kvz 3 | # 4 | # https://www.npmjs.com/package/fakefile 5 | # 6 | # Please do not edit this file directly, but propose changed upstream instead: 7 | # https://github.com/kvz/fakefile/blob/main/Makefile 8 | # 9 | # This Makefile offers convience shortcuts into any Node.js project that utilizes npm scripts. 10 | # It functions as a wrapper around the actual listed in `package.json` 11 | # So instead of typing: 12 | # 13 | # $ npm script build:assets 14 | # 15 | # you could also type: 16 | # 17 | # $ make build-assets 18 | # 19 | # Notice that colons (:) are replaced by dashes for Makefile compatibility. 20 | # 21 | # The benefits of this wrapper are: 22 | # 23 | # - You get to keep the the scripts package.json, which is more portable 24 | # (Makefiles & Windows are harder to mix) 25 | # - Offer a polite way into the project for developers coming from different 26 | # languages (npm scripts is obviously very Node centric) 27 | # - Profit from better autocomplete (make ) than npm currently offers. 28 | # OSX users will have to install bash-completion 29 | # (http://davidalger.com/development/bash-completion-on-os-x-with-brew/) 30 | 31 | ifeq ($(shell test -e ./yarn.lock && echo -n yes),yes) 32 | RUNNER=yarn 33 | INSTALLER=yarn install 34 | else 35 | RUNNER=npm run 36 | INSTALLER=npm install 37 | endif 38 | 39 | define npm_script_targets 40 | TARGETS := $(shell \ 41 | node -e 'for (var k in require("./package.json").scripts) {console.log(k.replace(/:/g, "-"));}' 42 | | grep -v -E "^install$$" 43 | ) 44 | $$(TARGETS): 45 | $(RUNNER) $(shell \ 46 | node -e 'for (var k in require("./package.json").scripts) {console.log(k.replace(/:/g, "-"), k);}' 47 | | grep -E "^$(MAKECMDGOALS)\s" 48 | | head -n1 49 | | awk '{print $$2}' 50 | ) 51 | 52 | .PHONY: $$(TARGETS) 53 | endef 54 | 55 | $(eval $(call npm_script_targets)) 56 | 57 | # These npm run scripts are available, without needing to be mentioned in `package.json` 58 | install: 59 | $(INSTALLER) 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fakefile 2 | 3 | A Universal Makefile for JavaScript projects that proxies to your npm scripts. 4 | 5 | ## How 6 | 7 | After installing, you can type `mak` for [autocompletion](https://davidalger.com/posts/bash-completion-on-os-x-with-brew/). Fakefile then quickly enumerates any npm scripts in your `package.json` and presents these. It does this at runtime, so it won't need any maintenance as your project changes its npm scripts. 8 | 9 | ## Why 10 | 11 | This gets us the best of both worlds. Codify your tasks in a system (npm scripts) that won't be obsolete within the year, that's straightforward to people on Windows (they can ignore the Makefile and use `npm run` or `yarn`), and unix folks alike. 12 | 13 | - Profit from instant autocomplete (Makefile's autocomplete is much faster than npm's) 14 | - Offer polite and consistent convenience shortcuts to non-js folk into your project. 15 | 16 | I wrote a [blog post](https://kvz.io/blog/2016/02/18/a-universal-makefile-for-javascript/) that goes into more detail why this makes for a great JavaScript task running environment. 17 | 18 | ## Usage 19 | 20 | After installing into your project, you can type `make test` which will map to `npm run test` or `yarn test` depending on wether you have a `yarn.lock` file in your project root. 21 | 22 | Makefiles cannot handle `:` characters well so it will offer `npm run build:production` to you as `make build-production`. 23 | 24 | ## Install 25 | 26 | First, make sure Makefiles [autocomplete](https://davidalger.com/posts/bash-completion-on-os-x-with-brew/) on your system. Then install via: 27 | 28 | ```bash 29 | yarn add fakefile # or: npm i fakefile 30 | ``` 31 | 32 | This will save a `./Makefile` into your project root. 33 | 34 | If the installer detects a Makefile that it does not recognize by its sha1 hash, it will warn you instead of overwriting it. The installer is happy to overwrite known sha1s, so that we can upgrade Makefiles that weren't customized by you. 35 | 36 | ## Contributors 37 | 38 | - [Kevin van Zonneveld](https://kvz.io) 39 | - [@Jarvie8176](https://github.com/Jarvie8176) 40 | 41 | ## License 42 | 43 | Copyright (c) 2016 Kevin van Zonneveld, [https://kvz.io](https://kvz.io) 44 | Licensed under MIT: [https://kvz.io/licenses/LICENSE-MIT](https://kvz.io/licenses/LICENSE-MIT) 45 | -------------------------------------------------------------------------------- /install.js: -------------------------------------------------------------------------------- 1 | /* 2 | * This installs a Makefile into any project that has fakefile as a dependency. 3 | * We'll overwrite known Fakefiles, but no unknown Makefiles via sha1 matchting. 4 | * 5 | * No babel ES6 transpilation or other hipster goodies in here, 6 | * regard this as a simple procedural bash script, that's more portable : ) 7 | * 8 | * The meat of this project can be found in ./Makefile 9 | */ 10 | 11 | const fs = require('fs-extra') 12 | const path = require('path') 13 | const crypto = require('crypto') 14 | 15 | const rootDir = process.env.FAKEFILE_PROJECT || path.normalize(path.join(__dirname, '..', '..')) 16 | const dstPackagePath = rootDir + '/package.json' 17 | const dstMakePath = rootDir + '/Makefile' 18 | let dstPackage = {} 19 | let dstMakeBody = '' 20 | let dstMakeSha = '' 21 | const srcMakePath = path.normalize(path.join(__dirname, 'Makefile')) 22 | const srcMakeBody = fs.readFileSync(srcMakePath) 23 | const srcMakeSha = crypto.createHash('sha1').update(srcMakeBody).digest('hex') 24 | const knownShas = [ 25 | '037243c18fc7ae44f1952b69a04ae96b975b7ad8', 26 | '4df6728ade4e0c1334510a9d58a449babb335576', 27 | '6f7a23c0a22515359983075ea3dfd2c0215bea41', 28 | '9e015a6a36ea5efd561694e4581e2177cc82f815', 29 | 'b9c952534064fe425bb109814530c8e60038523b', 30 | ] 31 | 32 | try { 33 | dstMakeBody = fs.readFileSync(dstMakePath) 34 | dstMakeSha = crypto.createHash('sha1').update(dstMakeBody).digest('hex') 35 | } catch (e) { 36 | dstMakeBody = false 37 | } 38 | 39 | try { 40 | dstPackage = require(dstPackagePath) 41 | } catch (e) { 42 | dstPackage = false 43 | } 44 | 45 | if (!dstPackage.name) { 46 | console.error(`No valid package.json found at ${dstPackagePath}. Skipping. `) 47 | process.exit(0) 48 | } 49 | 50 | if (!dstMakeBody || knownShas.indexOf(dstMakeSha) > -1) { 51 | if (srcMakeSha === dstMakeSha) { 52 | console.error(`Already on the right Fakefile. Skipping. `) 53 | process.exit(0) 54 | } 55 | 56 | console.error(`No or known Makefile found at ${srcMakePath} installing ours to ${dstMakePath}. `) 57 | try { 58 | fs.copySync(srcMakePath, dstMakePath, { clobber: true }) 59 | } catch (e) { 60 | console.error(`I was unable to install, but won't error out hard as this is not worth blocking e.g. deploys for. `) 61 | console.error(e.message) 62 | } 63 | process.exit(0) 64 | } 65 | 66 | console.error(`I found a Makefile at ${dstMakePath} that I do not know. (sha1: ${dstMakeSha})`) 67 | console.error(`I will not risk overwriting it. `) 68 | console.error(`Remove it first manually and install Fakefile again. `) 69 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fakefile", 3 | "version": "1.1.0", 4 | "engines": { 5 | "node": ">=10.0.0", 6 | "yarn": ">=1.0.0 <2.0.0" 7 | }, 8 | "description": "Install a Makefile into your node projects that acts as an npm run-script wrapper", 9 | "scripts": { 10 | "install": "node install.js", 11 | "release:major": "env SEMANTIC=major npm run release", 12 | "release:minor": "env SEMANTIC=minor npm run release", 13 | "release:patch": "env SEMANTIC=patch npm run release", 14 | "release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push --tags && git push && npm publish", 15 | "test:foo-bar": "echo baz", 16 | "fix": "eslint . --fix", 17 | "lint": "eslint ." 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "git+https://github.com/kvz/fakefile.git" 22 | }, 23 | "keywords": [ 24 | "Makefile", 25 | "npmscripts" 26 | ], 27 | "author": "Kevin van Zonneveld", 28 | "license": "MIT", 29 | "bugs": { 30 | "url": "https://github.com/kvz/fakefile/issues" 31 | }, 32 | "homepage": "https://github.com/kvz/fakefile#readme", 33 | "dependencies": { 34 | "fs-extra": "0.26.5" 35 | }, 36 | "devDependencies": { 37 | "babel-eslint": "10.1.0", 38 | "eslint-plugin-import": "2.22.1", 39 | "eslint-plugin-node": "11.1.0", 40 | "eslint-plugin-promise": "4.2.1", 41 | "eslint": "7.11.0", 42 | "eslint-config-standard": "14.1.1", 43 | "eslint-plugin-standard": "4.0.1" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /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.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/code-frame@^7.22.13": 13 | version "7.22.13" 14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" 15 | integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== 16 | dependencies: 17 | "@babel/highlight" "^7.22.13" 18 | chalk "^2.4.2" 19 | 20 | "@babel/generator@^7.23.0": 21 | version "7.23.0" 22 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" 23 | integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== 24 | dependencies: 25 | "@babel/types" "^7.23.0" 26 | "@jridgewell/gen-mapping" "^0.3.2" 27 | "@jridgewell/trace-mapping" "^0.3.17" 28 | jsesc "^2.5.1" 29 | 30 | "@babel/helper-environment-visitor@^7.22.20": 31 | version "7.22.20" 32 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" 33 | integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== 34 | 35 | "@babel/helper-function-name@^7.23.0": 36 | version "7.23.0" 37 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" 38 | integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== 39 | dependencies: 40 | "@babel/template" "^7.22.15" 41 | "@babel/types" "^7.23.0" 42 | 43 | "@babel/helper-hoist-variables@^7.22.5": 44 | version "7.22.5" 45 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" 46 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== 47 | dependencies: 48 | "@babel/types" "^7.22.5" 49 | 50 | "@babel/helper-split-export-declaration@^7.22.6": 51 | version "7.22.6" 52 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" 53 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== 54 | dependencies: 55 | "@babel/types" "^7.22.5" 56 | 57 | "@babel/helper-string-parser@^7.22.5": 58 | version "7.22.5" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" 60 | integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== 61 | 62 | "@babel/helper-validator-identifier@^7.10.4": 63 | version "7.10.4" 64 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 65 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 66 | 67 | "@babel/helper-validator-identifier@^7.22.20": 68 | version "7.22.20" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" 70 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== 71 | 72 | "@babel/highlight@^7.10.4": 73 | version "7.10.4" 74 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 75 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 76 | dependencies: 77 | "@babel/helper-validator-identifier" "^7.10.4" 78 | chalk "^2.0.0" 79 | js-tokens "^4.0.0" 80 | 81 | "@babel/highlight@^7.22.13": 82 | version "7.22.20" 83 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" 84 | integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== 85 | dependencies: 86 | "@babel/helper-validator-identifier" "^7.22.20" 87 | chalk "^2.4.2" 88 | js-tokens "^4.0.0" 89 | 90 | "@babel/parser@^7.22.15", "@babel/parser@^7.23.0": 91 | version "7.23.0" 92 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" 93 | integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== 94 | 95 | "@babel/parser@^7.7.0": 96 | version "7.12.3" 97 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd" 98 | integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw== 99 | 100 | "@babel/template@^7.22.15": 101 | version "7.22.15" 102 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" 103 | integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== 104 | dependencies: 105 | "@babel/code-frame" "^7.22.13" 106 | "@babel/parser" "^7.22.15" 107 | "@babel/types" "^7.22.15" 108 | 109 | "@babel/traverse@^7.7.0": 110 | version "7.23.2" 111 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" 112 | integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== 113 | dependencies: 114 | "@babel/code-frame" "^7.22.13" 115 | "@babel/generator" "^7.23.0" 116 | "@babel/helper-environment-visitor" "^7.22.20" 117 | "@babel/helper-function-name" "^7.23.0" 118 | "@babel/helper-hoist-variables" "^7.22.5" 119 | "@babel/helper-split-export-declaration" "^7.22.6" 120 | "@babel/parser" "^7.23.0" 121 | "@babel/types" "^7.23.0" 122 | debug "^4.1.0" 123 | globals "^11.1.0" 124 | 125 | "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0": 126 | version "7.23.0" 127 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" 128 | integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== 129 | dependencies: 130 | "@babel/helper-string-parser" "^7.22.5" 131 | "@babel/helper-validator-identifier" "^7.22.20" 132 | to-fast-properties "^2.0.0" 133 | 134 | "@babel/types@^7.7.0": 135 | version "7.12.1" 136 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.1.tgz#e109d9ab99a8de735be287ee3d6a9947a190c4ae" 137 | integrity sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA== 138 | dependencies: 139 | "@babel/helper-validator-identifier" "^7.10.4" 140 | lodash "^4.17.19" 141 | to-fast-properties "^2.0.0" 142 | 143 | "@eslint/eslintrc@^0.1.3": 144 | version "0.1.3" 145 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085" 146 | integrity sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA== 147 | dependencies: 148 | ajv "^6.12.4" 149 | debug "^4.1.1" 150 | espree "^7.3.0" 151 | globals "^12.1.0" 152 | ignore "^4.0.6" 153 | import-fresh "^3.2.1" 154 | js-yaml "^3.13.1" 155 | lodash "^4.17.19" 156 | minimatch "^3.0.4" 157 | strip-json-comments "^3.1.1" 158 | 159 | "@jridgewell/gen-mapping@^0.3.2": 160 | version "0.3.3" 161 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 162 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 163 | dependencies: 164 | "@jridgewell/set-array" "^1.0.1" 165 | "@jridgewell/sourcemap-codec" "^1.4.10" 166 | "@jridgewell/trace-mapping" "^0.3.9" 167 | 168 | "@jridgewell/resolve-uri@^3.1.0": 169 | version "3.1.1" 170 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 171 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 172 | 173 | "@jridgewell/set-array@^1.0.1": 174 | version "1.1.2" 175 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 176 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 177 | 178 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 179 | version "1.4.15" 180 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 181 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 182 | 183 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": 184 | version "0.3.19" 185 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" 186 | integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== 187 | dependencies: 188 | "@jridgewell/resolve-uri" "^3.1.0" 189 | "@jridgewell/sourcemap-codec" "^1.4.14" 190 | 191 | "@types/json5@^0.0.29": 192 | version "0.0.29" 193 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 194 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 195 | 196 | acorn-jsx@^5.2.0: 197 | version "5.3.1" 198 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 199 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 200 | 201 | acorn@^7.4.0: 202 | version "7.4.1" 203 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 204 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 205 | 206 | ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4: 207 | version "6.12.6" 208 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 209 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 210 | dependencies: 211 | fast-deep-equal "^3.1.1" 212 | fast-json-stable-stringify "^2.0.0" 213 | json-schema-traverse "^0.4.1" 214 | uri-js "^4.2.2" 215 | 216 | ansi-colors@^4.1.1: 217 | version "4.1.1" 218 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 219 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 220 | 221 | ansi-regex@^4.1.0: 222 | version "4.1.1" 223 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" 224 | integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== 225 | 226 | ansi-regex@^5.0.0: 227 | version "5.0.0" 228 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 229 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 230 | 231 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 232 | version "3.2.1" 233 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 234 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 235 | dependencies: 236 | color-convert "^1.9.0" 237 | 238 | ansi-styles@^4.1.0: 239 | version "4.3.0" 240 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 241 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 242 | dependencies: 243 | color-convert "^2.0.1" 244 | 245 | argparse@^1.0.7: 246 | version "1.0.10" 247 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 248 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 249 | dependencies: 250 | sprintf-js "~1.0.2" 251 | 252 | array-includes@^3.1.1: 253 | version "3.1.1" 254 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 255 | integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 256 | dependencies: 257 | define-properties "^1.1.3" 258 | es-abstract "^1.17.0" 259 | is-string "^1.0.5" 260 | 261 | array.prototype.flat@^1.2.3: 262 | version "1.2.3" 263 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 264 | integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== 265 | dependencies: 266 | define-properties "^1.1.3" 267 | es-abstract "^1.17.0-next.1" 268 | 269 | astral-regex@^1.0.0: 270 | version "1.0.0" 271 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 272 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 273 | 274 | babel-eslint@10.1.0: 275 | version "10.1.0" 276 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 277 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 278 | dependencies: 279 | "@babel/code-frame" "^7.0.0" 280 | "@babel/parser" "^7.7.0" 281 | "@babel/traverse" "^7.7.0" 282 | "@babel/types" "^7.7.0" 283 | eslint-visitor-keys "^1.0.0" 284 | resolve "^1.12.0" 285 | 286 | balanced-match@^1.0.0: 287 | version "1.0.2" 288 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 289 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 290 | 291 | brace-expansion@^1.1.7: 292 | version "1.1.11" 293 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 294 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 295 | dependencies: 296 | balanced-match "^1.0.0" 297 | concat-map "0.0.1" 298 | 299 | callsites@^3.0.0: 300 | version "3.1.0" 301 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 302 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 303 | 304 | chalk@^2.0.0, chalk@^2.4.2: 305 | version "2.4.2" 306 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 307 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 308 | dependencies: 309 | ansi-styles "^3.2.1" 310 | escape-string-regexp "^1.0.5" 311 | supports-color "^5.3.0" 312 | 313 | chalk@^4.0.0: 314 | version "4.1.0" 315 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 316 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 317 | dependencies: 318 | ansi-styles "^4.1.0" 319 | supports-color "^7.1.0" 320 | 321 | color-convert@^1.9.0: 322 | version "1.9.3" 323 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 324 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 325 | dependencies: 326 | color-name "1.1.3" 327 | 328 | color-convert@^2.0.1: 329 | version "2.0.1" 330 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 331 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 332 | dependencies: 333 | color-name "~1.1.4" 334 | 335 | color-name@1.1.3: 336 | version "1.1.3" 337 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 338 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 339 | 340 | color-name@~1.1.4: 341 | version "1.1.4" 342 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 343 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 344 | 345 | concat-map@0.0.1: 346 | version "0.0.1" 347 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 348 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 349 | 350 | contains-path@^0.1.0: 351 | version "0.1.0" 352 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 353 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 354 | 355 | cross-spawn@^7.0.2: 356 | version "7.0.3" 357 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 358 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 359 | dependencies: 360 | path-key "^3.1.0" 361 | shebang-command "^2.0.0" 362 | which "^2.0.1" 363 | 364 | debug@^2.6.9: 365 | version "2.6.9" 366 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 367 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 368 | dependencies: 369 | ms "2.0.0" 370 | 371 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 372 | version "4.2.0" 373 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" 374 | integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== 375 | dependencies: 376 | ms "2.1.2" 377 | 378 | deep-is@^0.1.3: 379 | version "0.1.3" 380 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 381 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 382 | 383 | define-properties@^1.1.3: 384 | version "1.1.3" 385 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 386 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 387 | dependencies: 388 | object-keys "^1.0.12" 389 | 390 | doctrine@1.5.0: 391 | version "1.5.0" 392 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 393 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 394 | dependencies: 395 | esutils "^2.0.2" 396 | isarray "^1.0.0" 397 | 398 | doctrine@^3.0.0: 399 | version "3.0.0" 400 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 401 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 402 | dependencies: 403 | esutils "^2.0.2" 404 | 405 | emoji-regex@^7.0.1: 406 | version "7.0.3" 407 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 408 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 409 | 410 | enquirer@^2.3.5: 411 | version "2.3.6" 412 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 413 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 414 | dependencies: 415 | ansi-colors "^4.1.1" 416 | 417 | error-ex@^1.2.0: 418 | version "1.3.2" 419 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 420 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 421 | dependencies: 422 | is-arrayish "^0.2.1" 423 | 424 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 425 | version "1.17.7" 426 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" 427 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== 428 | dependencies: 429 | es-to-primitive "^1.2.1" 430 | function-bind "^1.1.1" 431 | has "^1.0.3" 432 | has-symbols "^1.0.1" 433 | is-callable "^1.2.2" 434 | is-regex "^1.1.1" 435 | object-inspect "^1.8.0" 436 | object-keys "^1.1.1" 437 | object.assign "^4.1.1" 438 | string.prototype.trimend "^1.0.1" 439 | string.prototype.trimstart "^1.0.1" 440 | 441 | es-abstract@^1.18.0-next.0: 442 | version "1.18.0-next.1" 443 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 444 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 445 | dependencies: 446 | es-to-primitive "^1.2.1" 447 | function-bind "^1.1.1" 448 | has "^1.0.3" 449 | has-symbols "^1.0.1" 450 | is-callable "^1.2.2" 451 | is-negative-zero "^2.0.0" 452 | is-regex "^1.1.1" 453 | object-inspect "^1.8.0" 454 | object-keys "^1.1.1" 455 | object.assign "^4.1.1" 456 | string.prototype.trimend "^1.0.1" 457 | string.prototype.trimstart "^1.0.1" 458 | 459 | es-to-primitive@^1.2.1: 460 | version "1.2.1" 461 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 462 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 463 | dependencies: 464 | is-callable "^1.1.4" 465 | is-date-object "^1.0.1" 466 | is-symbol "^1.0.2" 467 | 468 | escape-string-regexp@^1.0.5: 469 | version "1.0.5" 470 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 471 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 472 | 473 | eslint-config-standard@14.1.1: 474 | version "14.1.1" 475 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz#830a8e44e7aef7de67464979ad06b406026c56ea" 476 | integrity sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg== 477 | 478 | eslint-import-resolver-node@^0.3.4: 479 | version "0.3.4" 480 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 481 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 482 | dependencies: 483 | debug "^2.6.9" 484 | resolve "^1.13.1" 485 | 486 | eslint-module-utils@^2.6.0: 487 | version "2.6.0" 488 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 489 | integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 490 | dependencies: 491 | debug "^2.6.9" 492 | pkg-dir "^2.0.0" 493 | 494 | eslint-plugin-es@^3.0.0: 495 | version "3.0.1" 496 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz#75a7cdfdccddc0589934aeeb384175f221c57893" 497 | integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ== 498 | dependencies: 499 | eslint-utils "^2.0.0" 500 | regexpp "^3.0.0" 501 | 502 | eslint-plugin-import@2.22.1: 503 | version "2.22.1" 504 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz#0896c7e6a0cf44109a2d97b95903c2bb689d7702" 505 | integrity sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw== 506 | dependencies: 507 | array-includes "^3.1.1" 508 | array.prototype.flat "^1.2.3" 509 | contains-path "^0.1.0" 510 | debug "^2.6.9" 511 | doctrine "1.5.0" 512 | eslint-import-resolver-node "^0.3.4" 513 | eslint-module-utils "^2.6.0" 514 | has "^1.0.3" 515 | minimatch "^3.0.4" 516 | object.values "^1.1.1" 517 | read-pkg-up "^2.0.0" 518 | resolve "^1.17.0" 519 | tsconfig-paths "^3.9.0" 520 | 521 | eslint-plugin-node@11.1.0: 522 | version "11.1.0" 523 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d" 524 | integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g== 525 | dependencies: 526 | eslint-plugin-es "^3.0.0" 527 | eslint-utils "^2.0.0" 528 | ignore "^5.1.1" 529 | minimatch "^3.0.4" 530 | resolve "^1.10.1" 531 | semver "^6.1.0" 532 | 533 | eslint-plugin-promise@4.2.1: 534 | version "4.2.1" 535 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a" 536 | integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw== 537 | 538 | eslint-plugin-standard@4.0.1: 539 | version "4.0.1" 540 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz#ff0519f7ffaff114f76d1bd7c3996eef0f6e20b4" 541 | integrity sha512-v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ== 542 | 543 | eslint-scope@^5.1.1: 544 | version "5.1.1" 545 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 546 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 547 | dependencies: 548 | esrecurse "^4.3.0" 549 | estraverse "^4.1.1" 550 | 551 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 552 | version "2.1.0" 553 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 554 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 555 | dependencies: 556 | eslint-visitor-keys "^1.1.0" 557 | 558 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 559 | version "1.3.0" 560 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 561 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 562 | 563 | eslint-visitor-keys@^2.0.0: 564 | version "2.0.0" 565 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 566 | integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 567 | 568 | eslint@7.11.0: 569 | version "7.11.0" 570 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.11.0.tgz#aaf2d23a0b5f1d652a08edacea0c19f7fadc0b3b" 571 | integrity sha512-G9+qtYVCHaDi1ZuWzBsOWo2wSwd70TXnU6UHA3cTYHp7gCTXZcpggWFoUVAMRarg68qtPoNfFbzPh+VdOgmwmw== 572 | dependencies: 573 | "@babel/code-frame" "^7.0.0" 574 | "@eslint/eslintrc" "^0.1.3" 575 | ajv "^6.10.0" 576 | chalk "^4.0.0" 577 | cross-spawn "^7.0.2" 578 | debug "^4.0.1" 579 | doctrine "^3.0.0" 580 | enquirer "^2.3.5" 581 | eslint-scope "^5.1.1" 582 | eslint-utils "^2.1.0" 583 | eslint-visitor-keys "^2.0.0" 584 | espree "^7.3.0" 585 | esquery "^1.2.0" 586 | esutils "^2.0.2" 587 | file-entry-cache "^5.0.1" 588 | functional-red-black-tree "^1.0.1" 589 | glob-parent "^5.0.0" 590 | globals "^12.1.0" 591 | ignore "^4.0.6" 592 | import-fresh "^3.0.0" 593 | imurmurhash "^0.1.4" 594 | is-glob "^4.0.0" 595 | js-yaml "^3.13.1" 596 | json-stable-stringify-without-jsonify "^1.0.1" 597 | levn "^0.4.1" 598 | lodash "^4.17.19" 599 | minimatch "^3.0.4" 600 | natural-compare "^1.4.0" 601 | optionator "^0.9.1" 602 | progress "^2.0.0" 603 | regexpp "^3.1.0" 604 | semver "^7.2.1" 605 | strip-ansi "^6.0.0" 606 | strip-json-comments "^3.1.0" 607 | table "^5.2.3" 608 | text-table "^0.2.0" 609 | v8-compile-cache "^2.0.3" 610 | 611 | espree@^7.3.0: 612 | version "7.3.0" 613 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348" 614 | integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw== 615 | dependencies: 616 | acorn "^7.4.0" 617 | acorn-jsx "^5.2.0" 618 | eslint-visitor-keys "^1.3.0" 619 | 620 | esprima@^4.0.0: 621 | version "4.0.1" 622 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 623 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 624 | 625 | esquery@^1.2.0: 626 | version "1.3.1" 627 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 628 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 629 | dependencies: 630 | estraverse "^5.1.0" 631 | 632 | esrecurse@^4.3.0: 633 | version "4.3.0" 634 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 635 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 636 | dependencies: 637 | estraverse "^5.2.0" 638 | 639 | estraverse@^4.1.1: 640 | version "4.3.0" 641 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 642 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 643 | 644 | estraverse@^5.1.0, estraverse@^5.2.0: 645 | version "5.2.0" 646 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 647 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 648 | 649 | esutils@^2.0.2: 650 | version "2.0.3" 651 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 652 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 653 | 654 | fast-deep-equal@^3.1.1: 655 | version "3.1.3" 656 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 657 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 658 | 659 | fast-json-stable-stringify@^2.0.0: 660 | version "2.1.0" 661 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 662 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 663 | 664 | fast-levenshtein@^2.0.6: 665 | version "2.0.6" 666 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 667 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 668 | 669 | file-entry-cache@^5.0.1: 670 | version "5.0.1" 671 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 672 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 673 | dependencies: 674 | flat-cache "^2.0.1" 675 | 676 | find-up@^2.0.0, find-up@^2.1.0: 677 | version "2.1.0" 678 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 679 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 680 | dependencies: 681 | locate-path "^2.0.0" 682 | 683 | flat-cache@^2.0.1: 684 | version "2.0.1" 685 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 686 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 687 | dependencies: 688 | flatted "^2.0.0" 689 | rimraf "2.6.3" 690 | write "1.0.3" 691 | 692 | flatted@^2.0.0: 693 | version "2.0.2" 694 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 695 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 696 | 697 | fs-extra@0.26.5: 698 | version "0.26.5" 699 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.5.tgz#53ac74667ca083fd2dc1712c813039ca32d69a7f" 700 | integrity sha1-U6x0Znygg/0twXEsgTA5yjLWmn8= 701 | dependencies: 702 | graceful-fs "^4.1.2" 703 | jsonfile "^2.1.0" 704 | klaw "^1.0.0" 705 | path-is-absolute "^1.0.0" 706 | rimraf "^2.2.8" 707 | 708 | fs.realpath@^1.0.0: 709 | version "1.0.0" 710 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 711 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 712 | 713 | function-bind@^1.1.1: 714 | version "1.1.1" 715 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 716 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 717 | 718 | functional-red-black-tree@^1.0.1: 719 | version "1.0.1" 720 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 721 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 722 | 723 | glob-parent@^5.0.0: 724 | version "5.1.2" 725 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 726 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 727 | dependencies: 728 | is-glob "^4.0.1" 729 | 730 | glob@^7.1.3: 731 | version "7.1.6" 732 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 733 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 734 | dependencies: 735 | fs.realpath "^1.0.0" 736 | inflight "^1.0.4" 737 | inherits "2" 738 | minimatch "^3.0.4" 739 | once "^1.3.0" 740 | path-is-absolute "^1.0.0" 741 | 742 | globals@^11.1.0: 743 | version "11.12.0" 744 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 745 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 746 | 747 | globals@^12.1.0: 748 | version "12.4.0" 749 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 750 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 751 | dependencies: 752 | type-fest "^0.8.1" 753 | 754 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 755 | version "4.2.4" 756 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 757 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 758 | 759 | has-flag@^3.0.0: 760 | version "3.0.0" 761 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 762 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 763 | 764 | has-flag@^4.0.0: 765 | version "4.0.0" 766 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 767 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 768 | 769 | has-symbols@^1.0.1: 770 | version "1.0.1" 771 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 772 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 773 | 774 | has@^1.0.3: 775 | version "1.0.3" 776 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 777 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 778 | dependencies: 779 | function-bind "^1.1.1" 780 | 781 | hosted-git-info@^2.1.4: 782 | version "2.8.9" 783 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 784 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 785 | 786 | ignore@^4.0.6: 787 | version "4.0.6" 788 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 789 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 790 | 791 | ignore@^5.1.1: 792 | version "5.1.8" 793 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 794 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 795 | 796 | import-fresh@^3.0.0, import-fresh@^3.2.1: 797 | version "3.2.1" 798 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 799 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 800 | dependencies: 801 | parent-module "^1.0.0" 802 | resolve-from "^4.0.0" 803 | 804 | imurmurhash@^0.1.4: 805 | version "0.1.4" 806 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 807 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 808 | 809 | inflight@^1.0.4: 810 | version "1.0.6" 811 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 812 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 813 | dependencies: 814 | once "^1.3.0" 815 | wrappy "1" 816 | 817 | inherits@2: 818 | version "2.0.4" 819 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 820 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 821 | 822 | is-arrayish@^0.2.1: 823 | version "0.2.1" 824 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 825 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 826 | 827 | is-callable@^1.1.4, is-callable@^1.2.2: 828 | version "1.2.2" 829 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 830 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 831 | 832 | is-date-object@^1.0.1: 833 | version "1.0.2" 834 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 835 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 836 | 837 | is-extglob@^2.1.1: 838 | version "2.1.1" 839 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 840 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 841 | 842 | is-fullwidth-code-point@^2.0.0: 843 | version "2.0.0" 844 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 845 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 846 | 847 | is-glob@^4.0.0, is-glob@^4.0.1: 848 | version "4.0.1" 849 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 850 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 851 | dependencies: 852 | is-extglob "^2.1.1" 853 | 854 | is-negative-zero@^2.0.0: 855 | version "2.0.0" 856 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" 857 | integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= 858 | 859 | is-regex@^1.1.1: 860 | version "1.1.1" 861 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 862 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 863 | dependencies: 864 | has-symbols "^1.0.1" 865 | 866 | is-string@^1.0.5: 867 | version "1.0.5" 868 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 869 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 870 | 871 | is-symbol@^1.0.2: 872 | version "1.0.3" 873 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 874 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 875 | dependencies: 876 | has-symbols "^1.0.1" 877 | 878 | isarray@^1.0.0: 879 | version "1.0.0" 880 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 881 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 882 | 883 | isexe@^2.0.0: 884 | version "2.0.0" 885 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 886 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 887 | 888 | js-tokens@^4.0.0: 889 | version "4.0.0" 890 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 891 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 892 | 893 | js-yaml@^3.13.1: 894 | version "3.14.0" 895 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 896 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 897 | dependencies: 898 | argparse "^1.0.7" 899 | esprima "^4.0.0" 900 | 901 | jsesc@^2.5.1: 902 | version "2.5.2" 903 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 904 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 905 | 906 | json-schema-traverse@^0.4.1: 907 | version "0.4.1" 908 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 909 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 910 | 911 | json-stable-stringify-without-jsonify@^1.0.1: 912 | version "1.0.1" 913 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 914 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 915 | 916 | json5@^1.0.1: 917 | version "1.0.2" 918 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 919 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 920 | dependencies: 921 | minimist "^1.2.0" 922 | 923 | jsonfile@^2.1.0: 924 | version "2.4.0" 925 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 926 | integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= 927 | optionalDependencies: 928 | graceful-fs "^4.1.6" 929 | 930 | klaw@^1.0.0: 931 | version "1.3.1" 932 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 933 | integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= 934 | optionalDependencies: 935 | graceful-fs "^4.1.9" 936 | 937 | levn@^0.4.1: 938 | version "0.4.1" 939 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 940 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 941 | dependencies: 942 | prelude-ls "^1.2.1" 943 | type-check "~0.4.0" 944 | 945 | load-json-file@^2.0.0: 946 | version "2.0.0" 947 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 948 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 949 | dependencies: 950 | graceful-fs "^4.1.2" 951 | parse-json "^2.2.0" 952 | pify "^2.0.0" 953 | strip-bom "^3.0.0" 954 | 955 | locate-path@^2.0.0: 956 | version "2.0.0" 957 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 958 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 959 | dependencies: 960 | p-locate "^2.0.0" 961 | path-exists "^3.0.0" 962 | 963 | lodash@^4.17.14, lodash@^4.17.19: 964 | version "4.17.21" 965 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 966 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 967 | 968 | lru-cache@^6.0.0: 969 | version "6.0.0" 970 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 971 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 972 | dependencies: 973 | yallist "^4.0.0" 974 | 975 | minimatch@^3.0.4: 976 | version "3.1.2" 977 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 978 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 979 | dependencies: 980 | brace-expansion "^1.1.7" 981 | 982 | minimist@^1.2.0, minimist@^1.2.5: 983 | version "1.2.7" 984 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 985 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 986 | 987 | mkdirp@^0.5.1: 988 | version "0.5.5" 989 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 990 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 991 | dependencies: 992 | minimist "^1.2.5" 993 | 994 | ms@2.0.0: 995 | version "2.0.0" 996 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 997 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 998 | 999 | ms@2.1.2: 1000 | version "2.1.2" 1001 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1002 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1003 | 1004 | natural-compare@^1.4.0: 1005 | version "1.4.0" 1006 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1007 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1008 | 1009 | normalize-package-data@^2.3.2: 1010 | version "2.5.0" 1011 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1012 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1013 | dependencies: 1014 | hosted-git-info "^2.1.4" 1015 | resolve "^1.10.0" 1016 | semver "2 || 3 || 4 || 5" 1017 | validate-npm-package-license "^3.0.1" 1018 | 1019 | object-inspect@^1.8.0: 1020 | version "1.8.0" 1021 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 1022 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 1023 | 1024 | object-keys@^1.0.12, object-keys@^1.1.1: 1025 | version "1.1.1" 1026 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1027 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1028 | 1029 | object.assign@^4.1.1: 1030 | version "4.1.1" 1031 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd" 1032 | integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA== 1033 | dependencies: 1034 | define-properties "^1.1.3" 1035 | es-abstract "^1.18.0-next.0" 1036 | has-symbols "^1.0.1" 1037 | object-keys "^1.1.1" 1038 | 1039 | object.values@^1.1.1: 1040 | version "1.1.1" 1041 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 1042 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 1043 | dependencies: 1044 | define-properties "^1.1.3" 1045 | es-abstract "^1.17.0-next.1" 1046 | function-bind "^1.1.1" 1047 | has "^1.0.3" 1048 | 1049 | once@^1.3.0: 1050 | version "1.4.0" 1051 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1052 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1053 | dependencies: 1054 | wrappy "1" 1055 | 1056 | optionator@^0.9.1: 1057 | version "0.9.1" 1058 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1059 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1060 | dependencies: 1061 | deep-is "^0.1.3" 1062 | fast-levenshtein "^2.0.6" 1063 | levn "^0.4.1" 1064 | prelude-ls "^1.2.1" 1065 | type-check "^0.4.0" 1066 | word-wrap "^1.2.3" 1067 | 1068 | p-limit@^1.1.0: 1069 | version "1.3.0" 1070 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1071 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1072 | dependencies: 1073 | p-try "^1.0.0" 1074 | 1075 | p-locate@^2.0.0: 1076 | version "2.0.0" 1077 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1078 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1079 | dependencies: 1080 | p-limit "^1.1.0" 1081 | 1082 | p-try@^1.0.0: 1083 | version "1.0.0" 1084 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1085 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1086 | 1087 | parent-module@^1.0.0: 1088 | version "1.0.1" 1089 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1090 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1091 | dependencies: 1092 | callsites "^3.0.0" 1093 | 1094 | parse-json@^2.2.0: 1095 | version "2.2.0" 1096 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1097 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1098 | dependencies: 1099 | error-ex "^1.2.0" 1100 | 1101 | path-exists@^3.0.0: 1102 | version "3.0.0" 1103 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1104 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1105 | 1106 | path-is-absolute@^1.0.0: 1107 | version "1.0.1" 1108 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1109 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1110 | 1111 | path-key@^3.1.0: 1112 | version "3.1.1" 1113 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1114 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1115 | 1116 | path-parse@^1.0.6: 1117 | version "1.0.6" 1118 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1119 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1120 | 1121 | path-type@^2.0.0: 1122 | version "2.0.0" 1123 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1124 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1125 | dependencies: 1126 | pify "^2.0.0" 1127 | 1128 | pify@^2.0.0: 1129 | version "2.3.0" 1130 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1131 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1132 | 1133 | pkg-dir@^2.0.0: 1134 | version "2.0.0" 1135 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1136 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 1137 | dependencies: 1138 | find-up "^2.1.0" 1139 | 1140 | prelude-ls@^1.2.1: 1141 | version "1.2.1" 1142 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1143 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1144 | 1145 | progress@^2.0.0: 1146 | version "2.0.3" 1147 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1148 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1149 | 1150 | punycode@^2.1.0: 1151 | version "2.1.1" 1152 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1153 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1154 | 1155 | read-pkg-up@^2.0.0: 1156 | version "2.0.0" 1157 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1158 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 1159 | dependencies: 1160 | find-up "^2.0.0" 1161 | read-pkg "^2.0.0" 1162 | 1163 | read-pkg@^2.0.0: 1164 | version "2.0.0" 1165 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1166 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 1167 | dependencies: 1168 | load-json-file "^2.0.0" 1169 | normalize-package-data "^2.3.2" 1170 | path-type "^2.0.0" 1171 | 1172 | regexpp@^3.0.0, regexpp@^3.1.0: 1173 | version "3.1.0" 1174 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 1175 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 1176 | 1177 | resolve-from@^4.0.0: 1178 | version "4.0.0" 1179 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1180 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1181 | 1182 | resolve@^1.10.0, resolve@^1.10.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0: 1183 | version "1.17.0" 1184 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 1185 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 1186 | dependencies: 1187 | path-parse "^1.0.6" 1188 | 1189 | rimraf@2.6.3: 1190 | version "2.6.3" 1191 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1192 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1193 | dependencies: 1194 | glob "^7.1.3" 1195 | 1196 | rimraf@^2.2.8: 1197 | version "2.7.1" 1198 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 1199 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 1200 | dependencies: 1201 | glob "^7.1.3" 1202 | 1203 | "semver@2 || 3 || 4 || 5": 1204 | version "5.7.2" 1205 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" 1206 | integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 1207 | 1208 | semver@^6.1.0: 1209 | version "6.3.1" 1210 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 1211 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 1212 | 1213 | semver@^7.2.1: 1214 | version "7.5.4" 1215 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" 1216 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 1217 | dependencies: 1218 | lru-cache "^6.0.0" 1219 | 1220 | shebang-command@^2.0.0: 1221 | version "2.0.0" 1222 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1223 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1224 | dependencies: 1225 | shebang-regex "^3.0.0" 1226 | 1227 | shebang-regex@^3.0.0: 1228 | version "3.0.0" 1229 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1230 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1231 | 1232 | slice-ansi@^2.1.0: 1233 | version "2.1.0" 1234 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 1235 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 1236 | dependencies: 1237 | ansi-styles "^3.2.0" 1238 | astral-regex "^1.0.0" 1239 | is-fullwidth-code-point "^2.0.0" 1240 | 1241 | spdx-correct@^3.0.0: 1242 | version "3.1.1" 1243 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1244 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1245 | dependencies: 1246 | spdx-expression-parse "^3.0.0" 1247 | spdx-license-ids "^3.0.0" 1248 | 1249 | spdx-exceptions@^2.1.0: 1250 | version "2.3.0" 1251 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1252 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1253 | 1254 | spdx-expression-parse@^3.0.0: 1255 | version "3.0.1" 1256 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1257 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1258 | dependencies: 1259 | spdx-exceptions "^2.1.0" 1260 | spdx-license-ids "^3.0.0" 1261 | 1262 | spdx-license-ids@^3.0.0: 1263 | version "3.0.6" 1264 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce" 1265 | integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== 1266 | 1267 | sprintf-js@~1.0.2: 1268 | version "1.0.3" 1269 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1270 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1271 | 1272 | string-width@^3.0.0: 1273 | version "3.1.0" 1274 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1275 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1276 | dependencies: 1277 | emoji-regex "^7.0.1" 1278 | is-fullwidth-code-point "^2.0.0" 1279 | strip-ansi "^5.1.0" 1280 | 1281 | string.prototype.trimend@^1.0.1: 1282 | version "1.0.1" 1283 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 1284 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 1285 | dependencies: 1286 | define-properties "^1.1.3" 1287 | es-abstract "^1.17.5" 1288 | 1289 | string.prototype.trimstart@^1.0.1: 1290 | version "1.0.1" 1291 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 1292 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 1293 | dependencies: 1294 | define-properties "^1.1.3" 1295 | es-abstract "^1.17.5" 1296 | 1297 | strip-ansi@^5.1.0: 1298 | version "5.2.0" 1299 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1300 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1301 | dependencies: 1302 | ansi-regex "^4.1.0" 1303 | 1304 | strip-ansi@^6.0.0: 1305 | version "6.0.0" 1306 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1307 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1308 | dependencies: 1309 | ansi-regex "^5.0.0" 1310 | 1311 | strip-bom@^3.0.0: 1312 | version "3.0.0" 1313 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1314 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1315 | 1316 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1317 | version "3.1.1" 1318 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1319 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1320 | 1321 | supports-color@^5.3.0: 1322 | version "5.5.0" 1323 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1324 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1325 | dependencies: 1326 | has-flag "^3.0.0" 1327 | 1328 | supports-color@^7.1.0: 1329 | version "7.2.0" 1330 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1331 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1332 | dependencies: 1333 | has-flag "^4.0.0" 1334 | 1335 | table@^5.2.3: 1336 | version "5.4.6" 1337 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 1338 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 1339 | dependencies: 1340 | ajv "^6.10.2" 1341 | lodash "^4.17.14" 1342 | slice-ansi "^2.1.0" 1343 | string-width "^3.0.0" 1344 | 1345 | text-table@^0.2.0: 1346 | version "0.2.0" 1347 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1348 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1349 | 1350 | to-fast-properties@^2.0.0: 1351 | version "2.0.0" 1352 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1353 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1354 | 1355 | tsconfig-paths@^3.9.0: 1356 | version "3.9.0" 1357 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 1358 | integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 1359 | dependencies: 1360 | "@types/json5" "^0.0.29" 1361 | json5 "^1.0.1" 1362 | minimist "^1.2.0" 1363 | strip-bom "^3.0.0" 1364 | 1365 | type-check@^0.4.0, type-check@~0.4.0: 1366 | version "0.4.0" 1367 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1368 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1369 | dependencies: 1370 | prelude-ls "^1.2.1" 1371 | 1372 | type-fest@^0.8.1: 1373 | version "0.8.1" 1374 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1375 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1376 | 1377 | uri-js@^4.2.2: 1378 | version "4.4.0" 1379 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" 1380 | integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== 1381 | dependencies: 1382 | punycode "^2.1.0" 1383 | 1384 | v8-compile-cache@^2.0.3: 1385 | version "2.1.1" 1386 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 1387 | integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== 1388 | 1389 | validate-npm-package-license@^3.0.1: 1390 | version "3.0.4" 1391 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1392 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1393 | dependencies: 1394 | spdx-correct "^3.0.0" 1395 | spdx-expression-parse "^3.0.0" 1396 | 1397 | which@^2.0.1: 1398 | version "2.0.2" 1399 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1400 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1401 | dependencies: 1402 | isexe "^2.0.0" 1403 | 1404 | word-wrap@^1.2.3: 1405 | version "1.2.4" 1406 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f" 1407 | integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA== 1408 | 1409 | wrappy@1: 1410 | version "1.0.2" 1411 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1412 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1413 | 1414 | write@1.0.3: 1415 | version "1.0.3" 1416 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 1417 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 1418 | dependencies: 1419 | mkdirp "^0.5.1" 1420 | 1421 | yallist@^4.0.0: 1422 | version "4.0.0" 1423 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1424 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1425 | --------------------------------------------------------------------------------