├── .github ├── release.yml └── workflows │ └── test.yml ├── .gitignore ├── .mocharc.json ├── LICENSE ├── README.md ├── bin └── cmd.mjs ├── img └── demo.png ├── labels.json ├── package.json ├── scripts └── readme-labels.js ├── src ├── github-label-setup.ts └── github-release-yml.ts ├── test └── tsconfig.json ├── tsconfig.json └── yarn.lock /.github/release.yml: -------------------------------------------------------------------------------- 1 | changelog: 2 | exclude: 3 | labels: 4 | - 'Type: Meta' 5 | - 'Type: Question' 6 | - 'Type: Release' 7 | 8 | categories: 9 | - title: Security Fixes 10 | labels: ['Type: Security'] 11 | - title: Breaking Changes 12 | labels: ['Type: Breaking Change'] 13 | - title: Features 14 | labels: ['Type: Feature'] 15 | - title: Bug Fixes 16 | labels: ['Type: Bug'] 17 | - title: Documentation 18 | labels: ['Type: Documentation'] 19 | - title: Refactoring 20 | labels: ['Type: Refactoring'] 21 | - title: Testing 22 | labels: ['Type: Testing'] 23 | - title: Maintenance 24 | labels: ['Type: Maintenance'] 25 | - title: CI 26 | labels: ['Type: CI'] 27 | - title: Dependency Updates 28 | labels: ['Type: Dependencies', "dependencies"] 29 | - title: Other Changes 30 | labels: ['*'] 31 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: test 2 | on: [push, pull_request] 3 | env: 4 | CI: true 5 | permissions: 6 | contents: read 7 | jobs: 8 | test: 9 | name: "Test on Node.js ${{ matrix.node-version }}" 10 | runs-on: ubuntu-latest 11 | strategy: 12 | matrix: 13 | node-version: [ 16, 18 ] 14 | steps: 15 | - name: checkout 16 | uses: actions/checkout@v2 17 | - name: setup Node.js ${{ matrix.node-version }} 18 | uses: actions/setup-node@v1 19 | with: 20 | node-version: ${{ matrix.node-version }} 21 | - name: Install 22 | run: yarn install 23 | - name: Test 24 | run: yarn run build 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### https://raw.github.com/github/gitignore/608690d6b9a78c2a003affc792e49a84905b3118/Node.gitignore 2 | 3 | # Logs 4 | logs 5 | *.log 6 | 7 | # Runtime data 8 | pids 9 | *.pid 10 | *.seed 11 | 12 | # Directory for instrumented libs generated by jscoverage/JSCover 13 | lib-cov 14 | 15 | # Coverage directory used by tools like istanbul 16 | coverage 17 | 18 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 19 | .grunt 20 | 21 | # node-waf configuration 22 | .lock-wscript 23 | 24 | # Compiled binary addons (http://nodejs.org/api/addons.html) 25 | build/Release 26 | 27 | # Dependency directory 28 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 29 | node_modules 30 | 31 | # Debug log from npm 32 | npm-debug.log 33 | 34 | 35 | ### https://raw.github.com/github/gitignore/608690d6b9a78c2a003affc792e49a84905b3118/Global/JetBrains.gitignore 36 | 37 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm 38 | 39 | *.iml 40 | 41 | ## Directory-based project format: 42 | .idea/ 43 | # if you remove the above rule, at least ignore the following: 44 | 45 | # User-specific stuff: 46 | # .idea/workspace.xml 47 | # .idea/tasks.xml 48 | # .idea/dictionaries 49 | 50 | # Sensitive or high-churn files: 51 | # .idea/dataSources.ids 52 | # .idea/dataSources.xml 53 | # .idea/sqlDataSources.xml 54 | # .idea/dynamic.xml 55 | # .idea/uiDesigner.xml 56 | 57 | # Gradle: 58 | # .idea/gradle.xml 59 | # .idea/libraries 60 | 61 | # Mongo Explorer plugin: 62 | # .idea/mongoSettings.xml 63 | 64 | ## File-based project format: 65 | *.ipr 66 | *.iws 67 | 68 | ## Plugin-specific files: 69 | 70 | # IntelliJ 71 | out/ 72 | 73 | # mpeltonen/sbt-idea plugin 74 | .idea_modules/ 75 | 76 | # JIRA plugin 77 | atlassian-ide-plugin.xml 78 | 79 | # Crashlytics plugin (for Android Studio and IntelliJ) 80 | com_crashlytics_export_strings.xml 81 | crashlytics.properties 82 | crashlytics-build.properties 83 | 84 | 85 | /lib 86 | -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": [ 3 | "ts-node-test-register" 4 | ] 5 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 azu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # @azu/github-label-setup 2 | 3 | Opinionated GitHub label setup tool. 4 | 5 | [![demo](./img/demo.png)](https://github.com/azu/github-label-setup/issues/1) 6 | 7 | - Create starter GitHub labels 8 | - Migrate existing labels 9 | - No configuration - It is opinionated 10 | 11 | ## Install 12 | 13 | Install with [npm](https://www.npmjs.com/): 14 | 15 | npm install --global @azu/github-label-setup 16 | 17 | ## Usage 18 | 19 | This tool works without any configuration. 20 | 21 | Usage 22 | $ github-label-setup --token xxx 23 | 24 | Options 25 | 26 | -h, --help [Boolean] output usage information 27 | -l, --labels [Path:String] the path to look for the label configuration in. Default: labels.json 28 | --token [String] a GitHub access token (also settable with a GITHUB_TOKEN or GITHUB_ACCESS_TOKEN environment variable) 29 | -d, --dry-run [Boolean] calculate the required label changes but do not apply them 30 | -A, --allow-added-labels [Boolean] allow additional labels in the repo, and don't delete them 31 | 32 | GitHub Release Options 33 | 34 | --addReleaseYml [Boolean] add a .github/release.yml file 35 | --addReleaseYmlOutputPath [Path:String] the path to write the .github/release.yml file to. Default: .github/release.yml 36 | 37 | Examples 38 | # Overwrite labels in the current repository 39 | $ github-label-setup --token "$GITHUB_TOKEN" 40 | # Add labels to the current repository 41 | $ github-label-setup --token "$GITHUB_TOKEN" --allow-added-labels 42 | # Add .github/release.yml to integrate with GitHub Releases 43 | $ github-label-setup --addReleaseYml 44 | 45 | 46 | You will need to get a GitHub Personal Accesses token to update labels of your repository. 47 | You need to generate [GitHub Personal Accesses token](https://github.com/settings/tokens/new?scopes=repo) with `"repo"` scope. 48 | 49 | - Generation Link: 50 | 51 | This tool is a wrapper of `github-label-sync`. 52 | 53 | - [Financial-Times/github-label-sync: Synchronise your GitHub labels with as few destructive operations as possible](https://github.com/Financial-Times/github-label-sync "Financial-Times/github-label-sync: Synchronise your GitHub labels with as few destructive operations as possible") 54 | 55 | ### Npm packages for labels 56 | 57 | labels can be set `require`able path like npm packages. 58 | 59 | $ github-label-setup --token xxx --labels @owner/github-label-presets 60 | 61 | See [Label JSON](https://github.com/Financial-Times/github-label-sync#label-json "Label JSON") format. 62 | 63 | ## Default Labels 64 | 65 | These are opinionated labels. 66 | 67 | [![demo](./img/demo.png)](https://github.com/azu/github-label-setup/issues/1) 68 | 69 | - ![#ededed](https://placehold.co/15x15/ededed/ededed.png) duplicate - This issue or Pull Request already exists 70 | - ![#e99695](https://placehold.co/15x15/e99695/e99695.png) help wanted - Extra attention is needed 71 | - ![#7057ff](https://placehold.co/15x15/7057ff/7057ff.png) good first issue - Good for newcomers 72 | - ![#ee0701](https://placehold.co/15x15/ee0701/ee0701.png) Priority: Critical 73 | - ![#d93f0b](https://placehold.co/15x15/d93f0b/d93f0b.png) Priority: High 74 | - ![#fbca04](https://placehold.co/15x15/fbca04/fbca04.png) Priority: Medium 75 | - ![#0e8a16](https://placehold.co/15x15/0e8a16/0e8a16.png) Priority: Low 76 | - ![#000000](https://placehold.co/15x15/000000/000000.png) Status: Abandoned - The issue or Pull Request is wontfix 77 | - ![#ee0701](https://placehold.co/15x15/ee0701/ee0701.png) Status: Blocked - Progress on the issue is Blocked 78 | - ![#cccccc](https://placehold.co/15x15/cccccc/cccccc.png) Status: In Progress - Work in Progress 79 | - ![#d4c5f9](https://placehold.co/15x15/d4c5f9/d4c5f9.png) Status: Proposal - Request for comments 80 | - ![#2E7733](https://placehold.co/15x15/2E7733/2E7733.png) Status: PR Welcome - Welcome to Pull Request 81 | - ![#fbca04](https://placehold.co/15x15/fbca04/fbca04.png) Status: Review Needed - Request for review comments 82 | - ![#F9C90A](https://placehold.co/15x15/F9C90A/F9C90A.png) Status: Need More Info - Lacks enough info to make progress 83 | - ![#b60205](https://placehold.co/15x15/b60205/b60205.png) Type: Breaking Change - Includes breaking changes 84 | - ![#ee0701](https://placehold.co/15x15/ee0701/ee0701.png) Type: Bug - Bug or Bug fixes 85 | - ![#0e8a16](https://placehold.co/15x15/0e8a16/0e8a16.png) Type: Documentation - Documentation only changes 86 | - ![#1d76db](https://placehold.co/15x15/1d76db/1d76db.png) Type: Feature - New Feature 87 | - ![#fbca04](https://placehold.co/15x15/fbca04/fbca04.png) Type: Refactoring - A code change that neither fixes a bug nor adds a feature 88 | - ![#257759](https://placehold.co/15x15/257759/257759.png) Type: Testing - Adding missing tests or correcting existing tests 89 | - ![#abd406](https://placehold.co/15x15/abd406/abd406.png) Type: Maintenance - Repository Maintenance 90 | - ![#ffd412](https://placehold.co/15x15/ffd412/ffd412.png) Type: CI - Changes to CI configuration files and scripts 91 | - ![#cc317c](https://placehold.co/15x15/cc317c/cc317c.png) Type: Question - Further information is requested 92 | - ![#ee0701](https://placehold.co/15x15/ee0701/ee0701.png) Type: Security - Vulnerability disclosure or Fixing security issue 93 | - ![#0366d6](https://placehold.co/15x15/0366d6/0366d6.png) Type: Dependencies - Dependency issues or Changes to dependency files 94 | - ![#0366d6](https://placehold.co/15x15/BFD4F2/BFD4F2.png) Type: Meta - Related to repository itself (This will not be includes in Release Note) 95 | - ![#0366d6](https://placehold.co/15x15/5319E7/5319E7.png) Type: Release - Related to release process (This will not be includes in Release Note) 96 | 97 | ## Integration with GitHub Releases 98 | 99 | GitHub Releases support automatically generate release notes using labels. 100 | `--addReleaseYml` option will add `.github/release.yml` file to your repository. 101 | 102 | ```bash 103 | # Add .github/release.yml to integrate with GitHub Releases 104 | $ github-label-setup --addReleaseYml 105 | ``` 106 | 107 | For more details, see GitHub Releases document. 108 | 109 | - [Configuring automatically generated release notes](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes) 110 | 111 | ## Related 112 | 113 | - [Conventional Commits](https://conventionalcommits.org/ "Conventional Commits") 114 | - [yoshuawuyts/github-standard-labels: Create a standard set of issue labels for a GitHub project](https://github.com/yoshuawuyts/github-standard-labels "yoshuawuyts/github-standard-labels: Create a standard set of issue labels for a GitHub project") 115 | - [Financial-Times/github-label-sync: Synchronise your GitHub labels with as few destructive operations as possible](https://github.com/Financial-Times/github-label-sync "Financial-Times/github-label-sync: Synchronise your GitHub labels with as few destructive operations as possible") 116 | - [MunGell/awesome-for-beginners: A list of awesome beginners-friendly projects.](https://github.com/MunGell/awesome-for-beginners "MunGell/awesome-for-beginners: A list of awesome beginners-friendly projects.") 117 | - [himynameisdave/git-labelmaker: Manage your GitHub labels from the command line!](https://github.com/himynameisdave/git-labelmaker "himynameisdave/git-labelmaker: Manage your GitHub labels from the command line!") 118 | - [Sane GitHub Labels – Dave Lunny – Medium](https://medium.com/@dave_lunny/sane-github-labels-c5d2e6004b63 "Sane GitHub Labels – Dave Lunny – Medium") 119 | 120 | ## Changelog 121 | 122 | See [Releases page](https://github.com/azu/github-label-setup/releases). 123 | 124 | ## Running tests 125 | 126 | Install devDependencies and Run `npm test`: 127 | 128 | npm i -d && npm test 129 | 130 | ## Contributing 131 | 132 | Pull requests and stars are always welcome. 133 | 134 | For bugs and feature requests, [please create an issue](https://github.com/azu/github-label-setup/issues). 135 | 136 | 1. Fork it! 137 | 2. Create your feature branch: `git checkout -b my-new-feature` 138 | 3. Commit your changes: `git commit -am 'Add some feature'` 139 | 4. Push to the branch: `git push origin my-new-feature` 140 | 5. Submit a pull request :D 141 | 142 | ## Author 143 | 144 | - [github/azu](https://github.com/azu) 145 | - [twitter/azu_re](https://twitter.com/azu_re) 146 | 147 | ## License 148 | 149 | MIT © azu 150 | -------------------------------------------------------------------------------- /bin/cmd.mjs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | import meow from "meow"; 4 | import path from "path"; 5 | import { setupLabels } from "../lib/github-label-setup.js"; 6 | import { writeGitHubReleaseYaml } from "../lib/github-release-yml.js"; 7 | 8 | /* 9 | { 10 | input: ['unicorns'], 11 | flags: {rainbow: true}, 12 | ... 13 | } 14 | */ 15 | const cli = meow(` 16 | Usage 17 | $ github-label-setup --token xxx 18 | 19 | Options 20 | 21 | -h, --help [Boolean] output usage information 22 | -l, --labels [Path:String] the path to look for the label configuration in. Default: labels.json 23 | --token [String] a GitHub access token (also settable with a GITHUB_TOKEN or GITHUB_ACCESS_TOKEN environment variable) 24 | -d, --dry-run [Boolean] calculate the required label changes but do not apply them 25 | -A, --allow-added-labels [Boolean] allow additional labels in the repo, and don't delete them 26 | 27 | GitHub Release Options 28 | 29 | --addReleaseYml [Boolean] add a .github/release.yml file 30 | --addReleaseYmlOutputPath [Path:String] the path to write the .github/release.yml file to. Default: .github/release.yml 31 | 32 | Examples 33 | # Overwrite labels in the current repository 34 | $ github-label-setup --token "$GITHUB_TOKEN" 35 | # Add labels to the current repository 36 | $ github-label-setup --token "$GITHUB_TOKEN" --allow-added-labels 37 | # Add .github/release.yml to integrate with GitHub Releases 38 | $ github-label-setup --addReleaseYml 39 | 40 | `, { 41 | 42 | importMeta: import.meta, 43 | flags: { 44 | dryRun: { 45 | type: 'boolean', 46 | alias: 'd' 47 | }, 48 | token: { 49 | type: "string", 50 | }, 51 | labels: { 52 | type: 'string', 53 | alias: 'l' 54 | }, 55 | allowAddedLabels: { 56 | type: 'boolean', 57 | alias: 'A' 58 | }, 59 | addReleaseYml: { 60 | type: "boolean", 61 | default: false 62 | }, 63 | addReleaseYmlOutputPath: { 64 | type: "string", 65 | default: path.join(process.cwd(), ".github/release.yml") 66 | } 67 | } 68 | }); 69 | 70 | if (cli.flags.addReleaseYml) { 71 | const outputPath = cli.flags.addReleaseYmlOutputPath; 72 | if (!outputPath) { 73 | throw new Error("addReleaseYmlOutputPath must not be empty"); 74 | } 75 | writeGitHubReleaseYaml(outputPath).catch(function (error) { 76 | console.error(error); 77 | cli.showHelp(); 78 | }); 79 | } else { 80 | setupLabels(cli.flags).catch(function (error) { 81 | console.error(error); 82 | cli.showHelp(); 83 | }); 84 | } 85 | -------------------------------------------------------------------------------- /img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/github-label-setup/0992f328c623c10e348126439b3b680cb9b7d352/img/demo.png -------------------------------------------------------------------------------- /labels.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "duplicate", 4 | "color": "ededed", 5 | "description": "This issue or Pull Request already exists" 6 | }, 7 | { 8 | "name": "help wanted", 9 | "color": "e99695", 10 | "description": "Extra attention is needed" 11 | }, 12 | { 13 | "name": "good first issue", 14 | "color": "7057ff", 15 | "description": "Good for newcomers", 16 | "aliases": [ 17 | "beginner-friendly", 18 | "beginner", 19 | "good-starter-issue", 20 | "good for beginner", 21 | "Good for beginners", 22 | "starter-issue", 23 | "starter" 24 | ] 25 | }, 26 | { 27 | "name": "Priority: Critical", 28 | "color": "ee0701" 29 | }, 30 | { 31 | "name": "Priority: High", 32 | "color": "d93f0b" 33 | }, 34 | { 35 | "name": "Priority: Medium", 36 | "color": "fbca04" 37 | }, 38 | { 39 | "name": "Priority: Low", 40 | "color": "0e8a16" 41 | }, 42 | { 43 | "name": "Status: Abandoned", 44 | "color": "000000", 45 | "description": "The issue or Pull Request is wontfix", 46 | "aliases": [ 47 | "wontfix", 48 | "invalid" 49 | ] 50 | }, 51 | { 52 | "name": "Status: Blocked", 53 | "color": "ee0701", 54 | "description": "Progress on the issue is Blocked", 55 | "aliases": [ 56 | "blocked" 57 | ] 58 | }, 59 | { 60 | "name": "Status: In Progress", 61 | "description": "Work in Progress", 62 | "color": "cccccc" 63 | }, 64 | { 65 | "name": "Status: Proposal", 66 | "color": "d4c5f9", 67 | "description": "Request for comments", 68 | "aliases": [ 69 | "idea", 70 | "Idea", 71 | "proposal", 72 | "Proposal", 73 | "discussion" 74 | ] 75 | }, 76 | { 77 | "name": "Status: PR Welcome", 78 | "color": "2E7733", 79 | "description": "Welcome to Pull Request", 80 | "aliases": [ 81 | "Patch Welcome", 82 | "Status: Ready for PR" 83 | ] 84 | }, 85 | { 86 | "name": "Status: Review Needed", 87 | "color": "fbca04", 88 | "description": "Request for review comments" 89 | }, 90 | { 91 | "name": "Status: Need More Info", 92 | "color": "F9C90A", 93 | "description": "Lacks enough info to make progress" 94 | }, 95 | { 96 | "name": "Type: Breaking Change", 97 | "color": "b60205", 98 | "description": "Includes breaking changes", 99 | "aliases": [ 100 | "breaking", 101 | "breaking-change" 102 | ] 103 | }, 104 | { 105 | "name": "Type: Bug", 106 | "color": "ee0701", 107 | "description": "Bug or Bug fixes", 108 | "aliases": [ 109 | "bug" 110 | ] 111 | }, 112 | { 113 | "name": "Type: Documentation", 114 | "color": "0e8a16", 115 | "description": "Documentation only changes", 116 | "aliases": [ 117 | "documents", 118 | "document" 119 | ] 120 | }, 121 | { 122 | "name": "Type: Feature", 123 | "color": "1d76db", 124 | "description": "New Feature", 125 | "aliases": [ 126 | "enhancement" 127 | ] 128 | }, 129 | { 130 | "name": "Type: Refactoring", 131 | "color": "fbca04", 132 | "description": "A code change that neither fixes a bug nor adds a feature", 133 | "aliases": [ 134 | "refactor" 135 | ] 136 | }, 137 | { 138 | "name": "Type: Testing", 139 | "color": "257759", 140 | "description": "Adding missing tests or correcting existing tests", 141 | "aliases": [ 142 | "test", 143 | "testing" 144 | ] 145 | }, 146 | { 147 | "name": "Type: Maintenance", 148 | "color": "abd406", 149 | "description": "Repository Maintenance", 150 | "aliases": [ 151 | "greenkeeper", 152 | "maintenance" 153 | ] 154 | }, 155 | { 156 | "name": "Type: CI", 157 | "color": "ffd412", 158 | "description": "Changes to CI configuration files and scripts", 159 | "aliases": [ 160 | "travis", 161 | "ci", 162 | "circleci" 163 | ] 164 | }, 165 | { 166 | "name": "Type: Question", 167 | "color": "cc317c", 168 | "description": "Further information is requested", 169 | "aliases": [ 170 | "question" 171 | ] 172 | }, 173 | { 174 | "name": "Type: Security", 175 | "color": "ee0701", 176 | "description": "Vulnerability disclosure or Fixing security issue", 177 | "aliases": [ 178 | "security" 179 | ] 180 | }, 181 | { 182 | "name": "Type: Dependencies", 183 | "color": "0366d6", 184 | "description": "Dependency issues or Changes to dependency files", 185 | "aliases": [ 186 | "dependencies" 187 | ] 188 | }, 189 | { 190 | "name": "Type: Meta", 191 | "color": "BFD4F2", 192 | "description": "Type: Meta - Related to repository itself", 193 | "aliases": [ 194 | "meta" 195 | ] 196 | }, 197 | { 198 | "name": "Type: Release", 199 | "color": "5319E7", 200 | "description": "Related to release process", 201 | "aliases": [ 202 | "meta" 203 | ] 204 | } 205 | ] 206 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@azu/github-label-setup", 3 | "version": "5.1.0", 4 | "description": "GitHub label setup script.", 5 | "type": "module", 6 | "keywords": [ 7 | "github", 8 | "label" 9 | ], 10 | "homepage": "https://github.com/azu/github-label-setup", 11 | "bugs": { 12 | "url": "https://github.com/azu/github-label-setup/issues" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/azu/github-label-setup.git" 17 | }, 18 | "license": "MIT", 19 | "author": "azu", 20 | "main": "lib/github-label-setup.js", 21 | "types": "lib/github-label-setup.d.ts", 22 | "bin": { 23 | "github-label-setup": "./bin/cmd.mjs" 24 | }, 25 | "directories": { 26 | "test": "test" 27 | }, 28 | "files": [ 29 | "bin/", 30 | "lib/", 31 | "src/", 32 | "labels.json", 33 | ".github/release.yml" 34 | ], 35 | "scripts": { 36 | "build": "tsc -p .", 37 | "prepublishOnly": "npm run build", 38 | "prepublish": "npm run --if-present build", 39 | "watch": "tsc -p . --watch" 40 | }, 41 | "dependencies": { 42 | "git-remote-origin-url": "^4.0.0", 43 | "github-label-sync": "^2.2.0", 44 | "hosted-git-info": "^6.1.1", 45 | "meow": "^11.0.0", 46 | "try-resolve": "^1.0.1" 47 | }, 48 | "devDependencies": { 49 | "@types/github-label-sync": "^2.0.2", 50 | "@types/hosted-git-info": "^3.0.2", 51 | "@types/mocha": "^10.0.1", 52 | "@types/node": "^18.11.18", 53 | "mocha": "^10.2.0", 54 | "ts-node": "^10.9.1", 55 | "ts-node-test-register": "^10.0.0", 56 | "typescript": "^4.9.4" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /scripts/readme-labels.js: -------------------------------------------------------------------------------- 1 | import { createRequire } from "module"; 2 | const require = createRequire(import.meta.url); 3 | const labels = require("../labels.json"); 4 | const toMarkdown = (label) => { 5 | return `- ![#${label.color}](https://placehold.co/15x15/${label.color}/${label.color}.png) ${label.name} ${label.description ? "- " + label.description : ""}`; 6 | }; 7 | 8 | const markdown = labels.map(toMarkdown).join("\n"); 9 | console.log(markdown); 10 | -------------------------------------------------------------------------------- /src/github-label-setup.ts: -------------------------------------------------------------------------------- 1 | import assert from "assert"; 2 | import githubLabelSync, { LabelInfo } from "github-label-sync"; 3 | import getRemoteOriginUrl from "git-remote-origin-url"; 4 | // @ts-expect-error - no type 5 | import tryResolve from "try-resolve"; 6 | import hostGitInto from "hosted-git-info"; 7 | 8 | import url from "node:url"; 9 | import path from "node:path"; 10 | import { createRequire } from "module"; 11 | const require = createRequire(import.meta.url); 12 | const __filename__ = url.fileURLToPath(import.meta.url); 13 | const __dirname = path.dirname(__filename__); 14 | const { fromUrl } = hostGitInto; 15 | 16 | /** 17 | * @returns {Promise.<{ owner: string|null, repo: string|null}>} 18 | */ 19 | const getRepositoryInfo = () => { 20 | return getRemoteOriginUrl().then(url => { 21 | return fromUrl(url); 22 | }).then(result => { 23 | if (!result) { 24 | return; 25 | } 26 | return `${result.user}/${result.project}`; 27 | }); 28 | }; 29 | 30 | /** 31 | * @param token 32 | * @param repo 33 | * @param labels 34 | * @param dryRun 35 | * @param allowAddedLabels 36 | * @returns {Promise} 37 | */ 38 | export async function setupLabels({ 39 | token, 40 | repo, 41 | labels = path.join(__dirname, "..", "labels.json"), 42 | dryRun, 43 | allowAddedLabels 44 | }: { 45 | token: string; 46 | repo: string; 47 | labels: string 48 | dryRun: boolean; 49 | allowAddedLabels: boolean 50 | }) { 51 | const repoPath = await (repo ? Promise.resolve(repo) : getRepositoryInfo()); 52 | assert(repoPath, "repo should be needed."); 53 | const labelFilePath = tryResolve(labels) || tryResolve(path.resolve(process.cwd(), labels)); 54 | if (!labelFilePath) { 55 | throw new Error(`Not found label file: ${labels}`); 56 | } 57 | const labelJSON: LabelInfo[] = require(labelFilePath); 58 | const accessToken = token ?? process.env.GITHUB_TOKEN ?? process.env.GITHUB_ACCESS_TOKEN; 59 | if (!accessToken) { 60 | throw new Error("GitHub Access Token is not defined"); 61 | } 62 | return githubLabelSync({ 63 | accessToken: accessToken, 64 | repo: repoPath, 65 | labels: labelJSON, 66 | dryRun, 67 | allowAddedLabels, 68 | log: console, 69 | }); 70 | } 71 | -------------------------------------------------------------------------------- /src/github-release-yml.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "node:fs/promises"; 2 | import url from "node:url"; 3 | import path from "node:path"; 4 | 5 | const __filename__ = url.fileURLToPath(import.meta.url); 6 | const __dirname = path.dirname(__filename__); 7 | 8 | export const writeGitHubReleaseYaml = async (outputFilePath: string) => { 9 | const releaseYaml = await fs.readFile(path.join(__dirname, "../.github/release.yml")); 10 | await fs.mkdir(path.dirname(outputFilePath), { recursive: true }); 11 | await fs.writeFile(outputFilePath, releaseYaml, "utf-8"); 12 | } 13 | -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "declaration": false, 5 | "noEmit": true 6 | }, 7 | "include": [ 8 | "../src/**/*", 9 | "./**/*" 10 | ] 11 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "module": "ESNext", 5 | "moduleResolution": "node", 6 | "esModuleInterop": true, 7 | "newLine": "LF", 8 | "outDir": "./lib/", 9 | "target": "ES2018", 10 | "sourceMap": true, 11 | "declaration": true, 12 | "jsx": "preserve", 13 | "lib": [ 14 | "esnext", 15 | "dom" 16 | ], 17 | /* Strict Type-Checking Options */ 18 | "strict": true, 19 | /* Additional Checks */ 20 | /* Report errors on unused locals. */ 21 | "noUnusedLocals": true, 22 | /* Report errors on unused parameters. */ 23 | "noUnusedParameters": true, 24 | /* Report error when not all code paths in function return a value. */ 25 | "noImplicitReturns": true, 26 | /* Report errors for fallthrough cases in switch statement. */ 27 | "noFallthroughCasesInSwitch": true 28 | }, 29 | "include": [ 30 | "src/**/*" 31 | ], 32 | "exclude": [ 33 | ".git", 34 | "node_modules" 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /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.18.6" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 8 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 9 | dependencies: 10 | "@babel/highlight" "^7.18.6" 11 | 12 | "@babel/helper-validator-identifier@^7.18.6": 13 | version "7.19.1" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 15 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 16 | 17 | "@babel/highlight@^7.18.6": 18 | version "7.18.6" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 20 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.18.6" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@cspotcode/source-map-support@^0.8.0": 27 | version "0.8.1" 28 | resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" 29 | integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== 30 | dependencies: 31 | "@jridgewell/trace-mapping" "0.3.9" 32 | 33 | "@financial-times/origami-service-makefile@^7.0.3": 34 | version "7.0.3" 35 | resolved "https://registry.yarnpkg.com/@financial-times/origami-service-makefile/-/origami-service-makefile-7.0.3.tgz#96a9913a2e79d7fc4c02b1a6c359d20d94b46a37" 36 | integrity sha512-aKe65sZ3XgZ/0Sm0MDLbGrcO3G4DRv/bVW4Gpmw68cRZV9IBE7h/pwfR3Rs7njNSZMFkjS4rPG/YySv9brQByA== 37 | 38 | "@jridgewell/resolve-uri@^3.0.3": 39 | version "3.1.0" 40 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 41 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 42 | 43 | "@jridgewell/sourcemap-codec@^1.4.10": 44 | version "1.4.14" 45 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 46 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 47 | 48 | "@jridgewell/trace-mapping@0.3.9": 49 | version "0.3.9" 50 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" 51 | integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== 52 | dependencies: 53 | "@jridgewell/resolve-uri" "^3.0.3" 54 | "@jridgewell/sourcemap-codec" "^1.4.10" 55 | 56 | "@sindresorhus/is@^4.0.0": 57 | version "4.6.0" 58 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" 59 | integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== 60 | 61 | "@szmarczak/http-timer@^4.0.5": 62 | version "4.0.6" 63 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" 64 | integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== 65 | dependencies: 66 | defer-to-connect "^2.0.0" 67 | 68 | "@tsconfig/node10@^1.0.7": 69 | version "1.0.9" 70 | resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" 71 | integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== 72 | 73 | "@tsconfig/node12@^1.0.7": 74 | version "1.0.11" 75 | resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" 76 | integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== 77 | 78 | "@tsconfig/node14@^1.0.0": 79 | version "1.0.3" 80 | resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" 81 | integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== 82 | 83 | "@tsconfig/node16@^1.0.2": 84 | version "1.0.3" 85 | resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" 86 | integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== 87 | 88 | "@types/cacheable-request@^6.0.1": 89 | version "6.0.3" 90 | resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" 91 | integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== 92 | dependencies: 93 | "@types/http-cache-semantics" "*" 94 | "@types/keyv" "^3.1.4" 95 | "@types/node" "*" 96 | "@types/responselike" "^1.0.0" 97 | 98 | "@types/github-label-sync@^2.0.2": 99 | version "2.0.2" 100 | resolved "https://registry.yarnpkg.com/@types/github-label-sync/-/github-label-sync-2.0.2.tgz#d950ce96d63cc34794bbc86c7826cfd862352f68" 101 | integrity sha512-zAUzmRZSPc5izEdRUlvfV83ifss35CwD4uFdCJSL7CR1TTxgmrkzDnx+lMiDp0kifHTHE+QPpcoEgGA3xcqV1g== 102 | 103 | "@types/hosted-git-info@^3.0.2": 104 | version "3.0.2" 105 | resolved "https://registry.yarnpkg.com/@types/hosted-git-info/-/hosted-git-info-3.0.2.tgz#aa671076f5edefa4fab1189b467e6c63987be818" 106 | integrity sha512-RURNTeEFUwF+ifnp7kK3WLLlTmBSlRynLNS9jeAsI6RHtSrupV0l0nO6kmpaz75EUJVexy348bR452SvmH98vQ== 107 | 108 | "@types/http-cache-semantics@*": 109 | version "4.0.1" 110 | resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" 111 | integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== 112 | 113 | "@types/keyv@^3.1.4": 114 | version "3.1.4" 115 | resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" 116 | integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== 117 | dependencies: 118 | "@types/node" "*" 119 | 120 | "@types/minimist@^1.2.2": 121 | version "1.2.2" 122 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" 123 | integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== 124 | 125 | "@types/mocha@^10.0.1": 126 | version "10.0.1" 127 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.1.tgz#2f4f65bb08bc368ac39c96da7b2f09140b26851b" 128 | integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q== 129 | 130 | "@types/node@*", "@types/node@^18.11.18": 131 | version "18.11.18" 132 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" 133 | integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== 134 | 135 | "@types/normalize-package-data@^2.4.0", "@types/normalize-package-data@^2.4.1": 136 | version "2.4.1" 137 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 138 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 139 | 140 | "@types/responselike@^1.0.0": 141 | version "1.0.0" 142 | resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" 143 | integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== 144 | dependencies: 145 | "@types/node" "*" 146 | 147 | acorn-walk@^8.1.1: 148 | version "8.2.0" 149 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" 150 | integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== 151 | 152 | acorn@^8.4.1: 153 | version "8.8.1" 154 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" 155 | integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== 156 | 157 | ajv@^6.12.3: 158 | version "6.12.6" 159 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 160 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 161 | dependencies: 162 | fast-deep-equal "^3.1.1" 163 | fast-json-stable-stringify "^2.0.0" 164 | json-schema-traverse "^0.4.1" 165 | uri-js "^4.2.2" 166 | 167 | ajv@^8.6.3: 168 | version "8.12.0" 169 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" 170 | integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== 171 | dependencies: 172 | fast-deep-equal "^3.1.1" 173 | json-schema-traverse "^1.0.0" 174 | require-from-string "^2.0.2" 175 | uri-js "^4.2.2" 176 | 177 | ansi-colors@4.1.1: 178 | version "4.1.1" 179 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 180 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 181 | 182 | ansi-regex@^5.0.1: 183 | version "5.0.1" 184 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 185 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 186 | 187 | ansi-styles@^3.2.1: 188 | version "3.2.1" 189 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 190 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 191 | dependencies: 192 | color-convert "^1.9.0" 193 | 194 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 195 | version "4.3.0" 196 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 197 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 198 | dependencies: 199 | color-convert "^2.0.1" 200 | 201 | anymatch@~3.1.2: 202 | version "3.1.3" 203 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 204 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 205 | dependencies: 206 | normalize-path "^3.0.0" 207 | picomatch "^2.0.4" 208 | 209 | arg@^4.1.0: 210 | version "4.1.3" 211 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 212 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 213 | 214 | argparse@^1.0.7: 215 | version "1.0.10" 216 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 217 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 218 | dependencies: 219 | sprintf-js "~1.0.2" 220 | 221 | argparse@^2.0.1: 222 | version "2.0.1" 223 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 224 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 225 | 226 | array-uniq@1.0.2: 227 | version "1.0.2" 228 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.2.tgz#5fcc373920775723cfd64d65c64bef53bf9eba6d" 229 | integrity sha512-GVYjmpL05al4dNlKJm53mKE4w9OOLiuVHWorsIA3YVz+Hu0hcn6PtE3Ydl0EqU7v+7ABC4mjjWsnLUxbpno+CA== 230 | 231 | arrify@^1.0.1: 232 | version "1.0.1" 233 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 234 | integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== 235 | 236 | asn1@~0.2.3: 237 | version "0.2.6" 238 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" 239 | integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== 240 | dependencies: 241 | safer-buffer "~2.1.0" 242 | 243 | assert-plus@1.0.0, assert-plus@^1.0.0: 244 | version "1.0.0" 245 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 246 | integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== 247 | 248 | asynckit@^0.4.0: 249 | version "0.4.0" 250 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 251 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== 252 | 253 | aws-sign2@~0.7.0: 254 | version "0.7.0" 255 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 256 | integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== 257 | 258 | aws4@^1.8.0: 259 | version "1.12.0" 260 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" 261 | integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== 262 | 263 | balanced-match@^1.0.0: 264 | version "1.0.2" 265 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 266 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 267 | 268 | bcrypt-pbkdf@^1.0.0: 269 | version "1.0.2" 270 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 271 | integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== 272 | dependencies: 273 | tweetnacl "^0.14.3" 274 | 275 | binary-extensions@^2.0.0: 276 | version "2.2.0" 277 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 278 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 279 | 280 | bluebird@^3.5.0: 281 | version "3.7.2" 282 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 283 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 284 | 285 | brace-expansion@^1.1.7: 286 | version "1.1.11" 287 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 288 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 289 | dependencies: 290 | balanced-match "^1.0.0" 291 | concat-map "0.0.1" 292 | 293 | brace-expansion@^2.0.1: 294 | version "2.0.1" 295 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 296 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 297 | dependencies: 298 | balanced-match "^1.0.0" 299 | 300 | braces@~3.0.2: 301 | version "3.0.2" 302 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 303 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 304 | dependencies: 305 | fill-range "^7.0.1" 306 | 307 | browser-stdout@1.3.1: 308 | version "1.3.1" 309 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 310 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 311 | 312 | cacheable-lookup@^5.0.3: 313 | version "5.0.4" 314 | resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" 315 | integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== 316 | 317 | cacheable-request@^7.0.2: 318 | version "7.0.2" 319 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" 320 | integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== 321 | dependencies: 322 | clone-response "^1.0.2" 323 | get-stream "^5.1.0" 324 | http-cache-semantics "^4.0.0" 325 | keyv "^4.0.0" 326 | lowercase-keys "^2.0.0" 327 | normalize-url "^6.0.1" 328 | responselike "^2.0.0" 329 | 330 | camelcase-keys@^8.0.2: 331 | version "8.0.2" 332 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-8.0.2.tgz#a7140ba7c797aea32161d4ce5cdbda11d09eb414" 333 | integrity sha512-qMKdlOfsjlezMqxkUGGMaWWs17i2HoL15tM+wtx8ld4nLrUwU58TFdvyGOz/piNP842KeO8yXvggVQSdQ828NA== 334 | dependencies: 335 | camelcase "^7.0.0" 336 | map-obj "^4.3.0" 337 | quick-lru "^6.1.1" 338 | type-fest "^2.13.0" 339 | 340 | camelcase@^6.0.0: 341 | version "6.3.0" 342 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 343 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 344 | 345 | camelcase@^7.0.0: 346 | version "7.0.1" 347 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" 348 | integrity sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== 349 | 350 | caseless@~0.12.0: 351 | version "0.12.0" 352 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 353 | integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== 354 | 355 | chalk@^2.0.0: 356 | version "2.4.2" 357 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 358 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 359 | dependencies: 360 | ansi-styles "^3.2.1" 361 | escape-string-regexp "^1.0.5" 362 | supports-color "^5.3.0" 363 | 364 | chalk@^4.1.0, chalk@^4.1.2: 365 | version "4.1.2" 366 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 367 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 368 | dependencies: 369 | ansi-styles "^4.1.0" 370 | supports-color "^7.1.0" 371 | 372 | chokidar@3.5.3: 373 | version "3.5.3" 374 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 375 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 376 | dependencies: 377 | anymatch "~3.1.2" 378 | braces "~3.0.2" 379 | glob-parent "~5.1.2" 380 | is-binary-path "~2.1.0" 381 | is-glob "~4.0.1" 382 | normalize-path "~3.0.0" 383 | readdirp "~3.6.0" 384 | optionalDependencies: 385 | fsevents "~2.3.2" 386 | 387 | cliui@^7.0.2: 388 | version "7.0.4" 389 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 390 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 391 | dependencies: 392 | string-width "^4.2.0" 393 | strip-ansi "^6.0.0" 394 | wrap-ansi "^7.0.0" 395 | 396 | clone-response@^1.0.2: 397 | version "1.0.3" 398 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" 399 | integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== 400 | dependencies: 401 | mimic-response "^1.0.0" 402 | 403 | color-convert@^1.9.0: 404 | version "1.9.3" 405 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 406 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 407 | dependencies: 408 | color-name "1.1.3" 409 | 410 | color-convert@^2.0.1: 411 | version "2.0.1" 412 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 413 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 414 | dependencies: 415 | color-name "~1.1.4" 416 | 417 | color-name@1.1.3: 418 | version "1.1.3" 419 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 420 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 421 | 422 | color-name@~1.1.4: 423 | version "1.1.4" 424 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 425 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 426 | 427 | combined-stream@^1.0.6, combined-stream@~1.0.6: 428 | version "1.0.8" 429 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 430 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 431 | dependencies: 432 | delayed-stream "~1.0.0" 433 | 434 | commander@^6.2.1: 435 | version "6.2.1" 436 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 437 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 438 | 439 | concat-map@0.0.1: 440 | version "0.0.1" 441 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 442 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 443 | 444 | core-util-is@1.0.2: 445 | version "1.0.2" 446 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 447 | integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== 448 | 449 | create-require@^1.1.0: 450 | version "1.1.1" 451 | resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" 452 | integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== 453 | 454 | dashdash@^1.12.0: 455 | version "1.14.1" 456 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 457 | integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== 458 | dependencies: 459 | assert-plus "^1.0.0" 460 | 461 | debug@4.3.4: 462 | version "4.3.4" 463 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 464 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 465 | dependencies: 466 | ms "2.1.2" 467 | 468 | decamelize-keys@^1.1.0: 469 | version "1.1.1" 470 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" 471 | integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== 472 | dependencies: 473 | decamelize "^1.1.0" 474 | map-obj "^1.0.0" 475 | 476 | decamelize@^1.1.0: 477 | version "1.2.0" 478 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 479 | integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 480 | 481 | decamelize@^4.0.0: 482 | version "4.0.0" 483 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" 484 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== 485 | 486 | decamelize@^6.0.0: 487 | version "6.0.0" 488 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-6.0.0.tgz#8cad4d916fde5c41a264a43d0ecc56fe3d31749e" 489 | integrity sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA== 490 | 491 | decompress-response@^6.0.0: 492 | version "6.0.0" 493 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" 494 | integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== 495 | dependencies: 496 | mimic-response "^3.1.0" 497 | 498 | deep-extend@^0.6.0: 499 | version "0.6.0" 500 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 501 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 502 | 503 | defer-to-connect@^2.0.0: 504 | version "2.0.1" 505 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" 506 | integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== 507 | 508 | delayed-stream@~1.0.0: 509 | version "1.0.0" 510 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 511 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 512 | 513 | diff@5.0.0: 514 | version "5.0.0" 515 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" 516 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== 517 | 518 | diff@^4.0.1: 519 | version "4.0.2" 520 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 521 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 522 | 523 | ecc-jsbn@~0.1.1: 524 | version "0.1.2" 525 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 526 | integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== 527 | dependencies: 528 | jsbn "~0.1.0" 529 | safer-buffer "^2.1.0" 530 | 531 | emoji-regex@^8.0.0: 532 | version "8.0.0" 533 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 534 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 535 | 536 | end-of-stream@^1.1.0: 537 | version "1.4.4" 538 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 539 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 540 | dependencies: 541 | once "^1.4.0" 542 | 543 | error-ex@^1.3.1: 544 | version "1.3.2" 545 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 546 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 547 | dependencies: 548 | is-arrayish "^0.2.1" 549 | 550 | escalade@^3.1.1: 551 | version "3.1.1" 552 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 553 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 554 | 555 | escape-string-regexp@4.0.0: 556 | version "4.0.0" 557 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 558 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 559 | 560 | escape-string-regexp@^1.0.5: 561 | version "1.0.5" 562 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 563 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 564 | 565 | esprima@^4.0.0: 566 | version "4.0.1" 567 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 568 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 569 | 570 | extend@~3.0.2: 571 | version "3.0.2" 572 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 573 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 574 | 575 | extsprintf@1.3.0: 576 | version "1.3.0" 577 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 578 | integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== 579 | 580 | extsprintf@^1.2.0: 581 | version "1.4.1" 582 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" 583 | integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== 584 | 585 | fast-deep-equal@^3.1.1: 586 | version "3.1.3" 587 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 588 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 589 | 590 | fast-json-stable-stringify@^2.0.0: 591 | version "2.1.0" 592 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 593 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 594 | 595 | fill-range@^7.0.1: 596 | version "7.0.1" 597 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 598 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 599 | dependencies: 600 | to-regex-range "^5.0.1" 601 | 602 | find-up@5.0.0: 603 | version "5.0.0" 604 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 605 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 606 | dependencies: 607 | locate-path "^6.0.0" 608 | path-exists "^4.0.0" 609 | 610 | find-up@^6.3.0: 611 | version "6.3.0" 612 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" 613 | integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== 614 | dependencies: 615 | locate-path "^7.1.0" 616 | path-exists "^5.0.0" 617 | 618 | flat@^5.0.2: 619 | version "5.0.2" 620 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" 621 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== 622 | 623 | forever-agent@~0.6.1: 624 | version "0.6.1" 625 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 626 | integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== 627 | 628 | form-data@~2.3.2: 629 | version "2.3.3" 630 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 631 | integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 632 | dependencies: 633 | asynckit "^0.4.0" 634 | combined-stream "^1.0.6" 635 | mime-types "^2.1.12" 636 | 637 | fs.realpath@^1.0.0: 638 | version "1.0.0" 639 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 640 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 641 | 642 | fsevents@~2.3.2: 643 | version "2.3.2" 644 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 645 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 646 | 647 | function-bind@^1.1.1: 648 | version "1.1.1" 649 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 650 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 651 | 652 | get-caller-file@^2.0.5: 653 | version "2.0.5" 654 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 655 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 656 | 657 | get-stream@^5.1.0: 658 | version "5.2.0" 659 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 660 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 661 | dependencies: 662 | pump "^3.0.0" 663 | 664 | getpass@^0.1.1: 665 | version "0.1.7" 666 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 667 | integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== 668 | dependencies: 669 | assert-plus "^1.0.0" 670 | 671 | git-remote-origin-url@^4.0.0: 672 | version "4.0.0" 673 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-4.0.0.tgz#712649112d88ca42b7d585e1b9fa6cafe22c8f63" 674 | integrity sha512-EAxDksNdjuWgmVW9pVvA9jQDi/dmTaiDONktIy7qiRRhBZUI4FQK1YvBvteuTSX24aNKg9lfgxNYJEeeSXe6DA== 675 | dependencies: 676 | gitconfiglocal "^2.1.0" 677 | 678 | gitconfiglocal@^2.1.0: 679 | version "2.1.0" 680 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-2.1.0.tgz#07c28685c55cc5338b27b5acbcfe34aeb92e43d1" 681 | integrity sha512-qoerOEliJn3z+Zyn1HW2F6eoYJqKwS6MgC9cztTLUB/xLWX8gD/6T60pKn4+t/d6tP7JlybI7Z3z+I572CR/Vg== 682 | dependencies: 683 | ini "^1.3.2" 684 | 685 | github-label-sync@^2.2.0: 686 | version "2.2.0" 687 | resolved "https://registry.yarnpkg.com/github-label-sync/-/github-label-sync-2.2.0.tgz#282e5098f732b229471d5e7b143db5c3a0d72166" 688 | integrity sha512-4FBcwA/6XhQtFWZ/+xkwIAJKn7XJlkLBXA+eA3kjJJ6YTFbTynU6Cg9oUN3RXUCBoV2B7fhyEhqN6IwWO/hf3g== 689 | dependencies: 690 | "@financial-times/origami-service-makefile" "^7.0.3" 691 | ajv "^8.6.3" 692 | chalk "^4.1.2" 693 | commander "^6.2.1" 694 | got "^11.8.2" 695 | js-yaml "^3.14.1" 696 | node.extend "^2.0.2" 697 | octonode "^0.10.2" 698 | 699 | glob-parent@~5.1.2: 700 | version "5.1.2" 701 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 702 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 703 | dependencies: 704 | is-glob "^4.0.1" 705 | 706 | glob@7.2.0: 707 | version "7.2.0" 708 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 709 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 710 | dependencies: 711 | fs.realpath "^1.0.0" 712 | inflight "^1.0.4" 713 | inherits "2" 714 | minimatch "^3.0.4" 715 | once "^1.3.0" 716 | path-is-absolute "^1.0.0" 717 | 718 | got@^11.8.2: 719 | version "11.8.6" 720 | resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" 721 | integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== 722 | dependencies: 723 | "@sindresorhus/is" "^4.0.0" 724 | "@szmarczak/http-timer" "^4.0.5" 725 | "@types/cacheable-request" "^6.0.1" 726 | "@types/responselike" "^1.0.0" 727 | cacheable-lookup "^5.0.3" 728 | cacheable-request "^7.0.2" 729 | decompress-response "^6.0.0" 730 | http2-wrapper "^1.0.0-beta.5.2" 731 | lowercase-keys "^2.0.0" 732 | p-cancelable "^2.0.0" 733 | responselike "^2.0.0" 734 | 735 | har-schema@^2.0.0: 736 | version "2.0.0" 737 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 738 | integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== 739 | 740 | har-validator@~5.1.3: 741 | version "5.1.5" 742 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" 743 | integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== 744 | dependencies: 745 | ajv "^6.12.3" 746 | har-schema "^2.0.0" 747 | 748 | hard-rejection@^2.1.0: 749 | version "2.1.0" 750 | resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 751 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 752 | 753 | has-flag@^3.0.0: 754 | version "3.0.0" 755 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 756 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 757 | 758 | has-flag@^4.0.0: 759 | version "4.0.0" 760 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 761 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 762 | 763 | has@^1.0.3: 764 | version "1.0.3" 765 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 766 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 767 | dependencies: 768 | function-bind "^1.1.1" 769 | 770 | he@1.2.0: 771 | version "1.2.0" 772 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 773 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 774 | 775 | hosted-git-info@^2.1.4: 776 | version "2.8.9" 777 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 778 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 779 | 780 | hosted-git-info@^4.0.1: 781 | version "4.1.0" 782 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" 783 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 784 | dependencies: 785 | lru-cache "^6.0.0" 786 | 787 | hosted-git-info@^5.0.0: 788 | version "5.2.1" 789 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz#0ba1c97178ef91f3ab30842ae63d6a272341156f" 790 | integrity sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw== 791 | dependencies: 792 | lru-cache "^7.5.1" 793 | 794 | hosted-git-info@^6.1.1: 795 | version "6.1.1" 796 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-6.1.1.tgz#629442c7889a69c05de604d52996b74fe6f26d58" 797 | integrity sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w== 798 | dependencies: 799 | lru-cache "^7.5.1" 800 | 801 | http-cache-semantics@^4.0.0: 802 | version "4.1.0" 803 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 804 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 805 | 806 | http-signature@~1.2.0: 807 | version "1.2.0" 808 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 809 | integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== 810 | dependencies: 811 | assert-plus "^1.0.0" 812 | jsprim "^1.2.2" 813 | sshpk "^1.7.0" 814 | 815 | http2-wrapper@^1.0.0-beta.5.2: 816 | version "1.0.3" 817 | resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" 818 | integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== 819 | dependencies: 820 | quick-lru "^5.1.1" 821 | resolve-alpn "^1.0.0" 822 | 823 | indent-string@^5.0.0: 824 | version "5.0.0" 825 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5" 826 | integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== 827 | 828 | inflight@^1.0.4: 829 | version "1.0.6" 830 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 831 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 832 | dependencies: 833 | once "^1.3.0" 834 | wrappy "1" 835 | 836 | inherits@2: 837 | version "2.0.4" 838 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 839 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 840 | 841 | ini@^1.3.2: 842 | version "1.3.8" 843 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 844 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 845 | 846 | is-arrayish@^0.2.1: 847 | version "0.2.1" 848 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 849 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 850 | 851 | is-binary-path@~2.1.0: 852 | version "2.1.0" 853 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 854 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 855 | dependencies: 856 | binary-extensions "^2.0.0" 857 | 858 | is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: 859 | version "2.11.0" 860 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 861 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 862 | dependencies: 863 | has "^1.0.3" 864 | 865 | is-extglob@^2.1.1: 866 | version "2.1.1" 867 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 868 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 869 | 870 | is-fullwidth-code-point@^3.0.0: 871 | version "3.0.0" 872 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 873 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 874 | 875 | is-glob@^4.0.1, is-glob@~4.0.1: 876 | version "4.0.3" 877 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 878 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 879 | dependencies: 880 | is-extglob "^2.1.1" 881 | 882 | is-number@^7.0.0: 883 | version "7.0.0" 884 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 885 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 886 | 887 | is-plain-obj@^1.1.0: 888 | version "1.1.0" 889 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 890 | integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== 891 | 892 | is-plain-obj@^2.1.0: 893 | version "2.1.0" 894 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 895 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== 896 | 897 | is-typedarray@~1.0.0: 898 | version "1.0.0" 899 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 900 | integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== 901 | 902 | is-unicode-supported@^0.1.0: 903 | version "0.1.0" 904 | resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" 905 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== 906 | 907 | is@^3.2.1: 908 | version "3.3.0" 909 | resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" 910 | integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== 911 | 912 | isstream@~0.1.2: 913 | version "0.1.2" 914 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 915 | integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== 916 | 917 | js-tokens@^4.0.0: 918 | version "4.0.0" 919 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 920 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 921 | 922 | js-yaml@4.1.0: 923 | version "4.1.0" 924 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 925 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 926 | dependencies: 927 | argparse "^2.0.1" 928 | 929 | js-yaml@^3.14.1: 930 | version "3.14.1" 931 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 932 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 933 | dependencies: 934 | argparse "^1.0.7" 935 | esprima "^4.0.0" 936 | 937 | jsbn@~0.1.0: 938 | version "0.1.1" 939 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 940 | integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== 941 | 942 | json-buffer@3.0.1: 943 | version "3.0.1" 944 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 945 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 946 | 947 | json-parse-even-better-errors@^2.3.0: 948 | version "2.3.1" 949 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 950 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 951 | 952 | json-schema-traverse@^0.4.1: 953 | version "0.4.1" 954 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 955 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 956 | 957 | json-schema-traverse@^1.0.0: 958 | version "1.0.0" 959 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 960 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 961 | 962 | json-schema@0.4.0: 963 | version "0.4.0" 964 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" 965 | integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== 966 | 967 | json-stringify-safe@~5.0.1: 968 | version "5.0.1" 969 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 970 | integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== 971 | 972 | jsprim@^1.2.2: 973 | version "1.4.2" 974 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" 975 | integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== 976 | dependencies: 977 | assert-plus "1.0.0" 978 | extsprintf "1.3.0" 979 | json-schema "0.4.0" 980 | verror "1.10.0" 981 | 982 | keyv@^4.0.0: 983 | version "4.5.2" 984 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" 985 | integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== 986 | dependencies: 987 | json-buffer "3.0.1" 988 | 989 | kind-of@^6.0.3: 990 | version "6.0.3" 991 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 992 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 993 | 994 | lines-and-columns@^1.1.6: 995 | version "1.2.4" 996 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 997 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 998 | 999 | locate-path@^6.0.0: 1000 | version "6.0.0" 1001 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1002 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1003 | dependencies: 1004 | p-locate "^5.0.0" 1005 | 1006 | locate-path@^7.1.0: 1007 | version "7.1.1" 1008 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.1.1.tgz#8e1e5a75c7343770cef02ff93c4bf1f0aa666374" 1009 | integrity sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg== 1010 | dependencies: 1011 | p-locate "^6.0.0" 1012 | 1013 | log-symbols@4.1.0: 1014 | version "4.1.0" 1015 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 1016 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 1017 | dependencies: 1018 | chalk "^4.1.0" 1019 | is-unicode-supported "^0.1.0" 1020 | 1021 | lowercase-keys@^2.0.0: 1022 | version "2.0.0" 1023 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1024 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1025 | 1026 | lru-cache@^6.0.0: 1027 | version "6.0.0" 1028 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1029 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1030 | dependencies: 1031 | yallist "^4.0.0" 1032 | 1033 | lru-cache@^7.5.1: 1034 | version "7.14.1" 1035 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.1.tgz#8da8d2f5f59827edb388e63e459ac23d6d408fea" 1036 | integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA== 1037 | 1038 | make-error@^1.1.1: 1039 | version "1.3.6" 1040 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1041 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1042 | 1043 | map-obj@^1.0.0: 1044 | version "1.0.1" 1045 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1046 | integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== 1047 | 1048 | map-obj@^4.3.0: 1049 | version "4.3.0" 1050 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" 1051 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 1052 | 1053 | meow@^11.0.0: 1054 | version "11.0.0" 1055 | resolved "https://registry.yarnpkg.com/meow/-/meow-11.0.0.tgz#273a19c12d49d013c56effe9f011994022887157" 1056 | integrity sha512-Cl0yeeIrko6d94KpUo1M+0X1sB14ikoaqlIGuTH1fW4I+E3+YljL54/hb/BWmVfrV9tTV9zU04+xjw08Fh2WkA== 1057 | dependencies: 1058 | "@types/minimist" "^1.2.2" 1059 | camelcase-keys "^8.0.2" 1060 | decamelize "^6.0.0" 1061 | decamelize-keys "^1.1.0" 1062 | hard-rejection "^2.1.0" 1063 | minimist-options "4.1.0" 1064 | normalize-package-data "^4.0.1" 1065 | read-pkg-up "^9.1.0" 1066 | redent "^4.0.0" 1067 | trim-newlines "^4.0.2" 1068 | type-fest "^3.1.0" 1069 | yargs-parser "^21.1.1" 1070 | 1071 | mime-db@1.52.0: 1072 | version "1.52.0" 1073 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 1074 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1075 | 1076 | mime-types@^2.1.12, mime-types@~2.1.19: 1077 | version "2.1.35" 1078 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 1079 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1080 | dependencies: 1081 | mime-db "1.52.0" 1082 | 1083 | mimic-response@^1.0.0: 1084 | version "1.0.1" 1085 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1086 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1087 | 1088 | mimic-response@^3.1.0: 1089 | version "3.1.0" 1090 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" 1091 | integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== 1092 | 1093 | min-indent@^1.0.1: 1094 | version "1.0.1" 1095 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1096 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1097 | 1098 | minimatch@5.0.1: 1099 | version "5.0.1" 1100 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b" 1101 | integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g== 1102 | dependencies: 1103 | brace-expansion "^2.0.1" 1104 | 1105 | minimatch@^3.0.4: 1106 | version "3.1.2" 1107 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1108 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1109 | dependencies: 1110 | brace-expansion "^1.1.7" 1111 | 1112 | minimist-options@4.1.0: 1113 | version "4.1.0" 1114 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1115 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1116 | dependencies: 1117 | arrify "^1.0.1" 1118 | is-plain-obj "^1.1.0" 1119 | kind-of "^6.0.3" 1120 | 1121 | mocha@^10.2.0: 1122 | version "10.2.0" 1123 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8" 1124 | integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg== 1125 | dependencies: 1126 | ansi-colors "4.1.1" 1127 | browser-stdout "1.3.1" 1128 | chokidar "3.5.3" 1129 | debug "4.3.4" 1130 | diff "5.0.0" 1131 | escape-string-regexp "4.0.0" 1132 | find-up "5.0.0" 1133 | glob "7.2.0" 1134 | he "1.2.0" 1135 | js-yaml "4.1.0" 1136 | log-symbols "4.1.0" 1137 | minimatch "5.0.1" 1138 | ms "2.1.3" 1139 | nanoid "3.3.3" 1140 | serialize-javascript "6.0.0" 1141 | strip-json-comments "3.1.1" 1142 | supports-color "8.1.1" 1143 | workerpool "6.2.1" 1144 | yargs "16.2.0" 1145 | yargs-parser "20.2.4" 1146 | yargs-unparser "2.0.0" 1147 | 1148 | ms@2.1.2: 1149 | version "2.1.2" 1150 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1151 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1152 | 1153 | ms@2.1.3: 1154 | version "2.1.3" 1155 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1156 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1157 | 1158 | nanoid@3.3.3: 1159 | version "3.3.3" 1160 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25" 1161 | integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w== 1162 | 1163 | node.extend@^2.0.2: 1164 | version "2.0.2" 1165 | resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-2.0.2.tgz#b4404525494acc99740f3703c496b7d5182cc6cc" 1166 | integrity sha512-pDT4Dchl94/+kkgdwyS2PauDFjZG0Hk0IcHIB+LkW27HLDtdoeMxHTxZh39DYbPP8UflWXWj9JcdDozF+YDOpQ== 1167 | dependencies: 1168 | has "^1.0.3" 1169 | is "^3.2.1" 1170 | 1171 | normalize-package-data@^2.5.0: 1172 | version "2.5.0" 1173 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1174 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1175 | dependencies: 1176 | hosted-git-info "^2.1.4" 1177 | resolve "^1.10.0" 1178 | semver "2 || 3 || 4 || 5" 1179 | validate-npm-package-license "^3.0.1" 1180 | 1181 | normalize-package-data@^3.0.2: 1182 | version "3.0.3" 1183 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" 1184 | integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== 1185 | dependencies: 1186 | hosted-git-info "^4.0.1" 1187 | is-core-module "^2.5.0" 1188 | semver "^7.3.4" 1189 | validate-npm-package-license "^3.0.1" 1190 | 1191 | normalize-package-data@^4.0.1: 1192 | version "4.0.1" 1193 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-4.0.1.tgz#b46b24e0616d06cadf9d5718b29b6d445a82a62c" 1194 | integrity sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg== 1195 | dependencies: 1196 | hosted-git-info "^5.0.0" 1197 | is-core-module "^2.8.1" 1198 | semver "^7.3.5" 1199 | validate-npm-package-license "^3.0.4" 1200 | 1201 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1202 | version "3.0.0" 1203 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1204 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1205 | 1206 | normalize-url@^6.0.1: 1207 | version "6.1.0" 1208 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" 1209 | integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== 1210 | 1211 | oauth-sign@~0.9.0: 1212 | version "0.9.0" 1213 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1214 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 1215 | 1216 | octonode@^0.10.2: 1217 | version "0.10.2" 1218 | resolved "https://registry.yarnpkg.com/octonode/-/octonode-0.10.2.tgz#2b773866f44f03a2c544741d9b0df2d2c1b4f0cf" 1219 | integrity sha512-lxKJxAvrw3BuM0Wu3A/TRyFkYxMFWbMm8p7fDO3EoG9KDgOy53d91bjlGR1mmNk1EoF5LjGBx7BmIB+PfmMKLQ== 1220 | dependencies: 1221 | bluebird "^3.5.0" 1222 | deep-extend "^0.6.0" 1223 | randomstring "^1.1.5" 1224 | request "^2.72.0" 1225 | 1226 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1227 | version "1.4.0" 1228 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1229 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1230 | dependencies: 1231 | wrappy "1" 1232 | 1233 | p-cancelable@^2.0.0: 1234 | version "2.1.1" 1235 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" 1236 | integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== 1237 | 1238 | p-limit@^3.0.2: 1239 | version "3.1.0" 1240 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1241 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1242 | dependencies: 1243 | yocto-queue "^0.1.0" 1244 | 1245 | p-limit@^4.0.0: 1246 | version "4.0.0" 1247 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" 1248 | integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== 1249 | dependencies: 1250 | yocto-queue "^1.0.0" 1251 | 1252 | p-locate@^5.0.0: 1253 | version "5.0.0" 1254 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1255 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1256 | dependencies: 1257 | p-limit "^3.0.2" 1258 | 1259 | p-locate@^6.0.0: 1260 | version "6.0.0" 1261 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" 1262 | integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== 1263 | dependencies: 1264 | p-limit "^4.0.0" 1265 | 1266 | parse-json@^5.0.0, parse-json@^5.2.0: 1267 | version "5.2.0" 1268 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1269 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1270 | dependencies: 1271 | "@babel/code-frame" "^7.0.0" 1272 | error-ex "^1.3.1" 1273 | json-parse-even-better-errors "^2.3.0" 1274 | lines-and-columns "^1.1.6" 1275 | 1276 | path-exists@^4.0.0: 1277 | version "4.0.0" 1278 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1279 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1280 | 1281 | path-exists@^5.0.0: 1282 | version "5.0.0" 1283 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" 1284 | integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== 1285 | 1286 | path-is-absolute@^1.0.0: 1287 | version "1.0.1" 1288 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1289 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1290 | 1291 | path-parse@^1.0.7: 1292 | version "1.0.7" 1293 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1294 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1295 | 1296 | performance-now@^2.1.0: 1297 | version "2.1.0" 1298 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1299 | integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== 1300 | 1301 | picomatch@^2.0.4, picomatch@^2.2.1: 1302 | version "2.3.1" 1303 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1304 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1305 | 1306 | psl@^1.1.28: 1307 | version "1.9.0" 1308 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" 1309 | integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== 1310 | 1311 | pump@^3.0.0: 1312 | version "3.0.0" 1313 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1314 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1315 | dependencies: 1316 | end-of-stream "^1.1.0" 1317 | once "^1.3.1" 1318 | 1319 | punycode@^2.1.0, punycode@^2.1.1: 1320 | version "2.1.1" 1321 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1322 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1323 | 1324 | qs@~6.5.2: 1325 | version "6.5.3" 1326 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" 1327 | integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== 1328 | 1329 | quick-lru@^5.1.1: 1330 | version "5.1.1" 1331 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1332 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1333 | 1334 | quick-lru@^6.1.1: 1335 | version "6.1.1" 1336 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-6.1.1.tgz#f8e5bf9010376c126c80c1a62827a526c0e60adf" 1337 | integrity sha512-S27GBT+F0NTRiehtbrgaSE1idUAJ5bX8dPAQTdylEyNlrdcH5X4Lz7Edz3DYzecbsCluD5zO8ZNEe04z3D3u6Q== 1338 | 1339 | randombytes@2.0.3: 1340 | version "2.0.3" 1341 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 1342 | integrity sha512-lDVjxQQFoCG1jcrP06LNo2lbWp4QTShEXnhActFBwYuHprllQV6VUpwreApsYqCgD+N1mHoqJ/BI/4eV4R2GYg== 1343 | 1344 | randombytes@^2.1.0: 1345 | version "2.1.0" 1346 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1347 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 1348 | dependencies: 1349 | safe-buffer "^5.1.0" 1350 | 1351 | randomstring@^1.1.5: 1352 | version "1.2.3" 1353 | resolved "https://registry.yarnpkg.com/randomstring/-/randomstring-1.2.3.tgz#49d2bc34ff6bc2bd0f6bb8e7d876e1d4433564c8" 1354 | integrity sha512-3dEFySepTzp2CvH6W/ASYGguPPveBuz5MpZ7MuoUkoVehmyNl9+F9c9GFVrz2QPbM9NXTIHGcmJDY/3j4677kQ== 1355 | dependencies: 1356 | array-uniq "1.0.2" 1357 | randombytes "2.0.3" 1358 | 1359 | read-pkg-up@^9.1.0: 1360 | version "9.1.0" 1361 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-9.1.0.tgz#38ca48e0bc6c6b260464b14aad9bcd4e5b1fbdc3" 1362 | integrity sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg== 1363 | dependencies: 1364 | find-up "^6.3.0" 1365 | read-pkg "^7.1.0" 1366 | type-fest "^2.5.0" 1367 | 1368 | read-pkg@^5.2.0: 1369 | version "5.2.0" 1370 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 1371 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 1372 | dependencies: 1373 | "@types/normalize-package-data" "^2.4.0" 1374 | normalize-package-data "^2.5.0" 1375 | parse-json "^5.0.0" 1376 | type-fest "^0.6.0" 1377 | 1378 | read-pkg@^7.1.0: 1379 | version "7.1.0" 1380 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-7.1.0.tgz#438b4caed1ad656ba359b3e00fd094f3c427a43e" 1381 | integrity sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg== 1382 | dependencies: 1383 | "@types/normalize-package-data" "^2.4.1" 1384 | normalize-package-data "^3.0.2" 1385 | parse-json "^5.2.0" 1386 | type-fest "^2.0.0" 1387 | 1388 | readdirp@~3.6.0: 1389 | version "3.6.0" 1390 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1391 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1392 | dependencies: 1393 | picomatch "^2.2.1" 1394 | 1395 | redent@^4.0.0: 1396 | version "4.0.0" 1397 | resolved "https://registry.yarnpkg.com/redent/-/redent-4.0.0.tgz#0c0ba7caabb24257ab3bb7a4fd95dd1d5c5681f9" 1398 | integrity sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag== 1399 | dependencies: 1400 | indent-string "^5.0.0" 1401 | strip-indent "^4.0.0" 1402 | 1403 | request@^2.72.0: 1404 | version "2.88.2" 1405 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 1406 | integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== 1407 | dependencies: 1408 | aws-sign2 "~0.7.0" 1409 | aws4 "^1.8.0" 1410 | caseless "~0.12.0" 1411 | combined-stream "~1.0.6" 1412 | extend "~3.0.2" 1413 | forever-agent "~0.6.1" 1414 | form-data "~2.3.2" 1415 | har-validator "~5.1.3" 1416 | http-signature "~1.2.0" 1417 | is-typedarray "~1.0.0" 1418 | isstream "~0.1.2" 1419 | json-stringify-safe "~5.0.1" 1420 | mime-types "~2.1.19" 1421 | oauth-sign "~0.9.0" 1422 | performance-now "^2.1.0" 1423 | qs "~6.5.2" 1424 | safe-buffer "^5.1.2" 1425 | tough-cookie "~2.5.0" 1426 | tunnel-agent "^0.6.0" 1427 | uuid "^3.3.2" 1428 | 1429 | require-directory@^2.1.1: 1430 | version "2.1.1" 1431 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1432 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 1433 | 1434 | require-from-string@^2.0.2: 1435 | version "2.0.2" 1436 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 1437 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 1438 | 1439 | resolve-alpn@^1.0.0: 1440 | version "1.2.1" 1441 | resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" 1442 | integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== 1443 | 1444 | resolve@^1.10.0: 1445 | version "1.22.1" 1446 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1447 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1448 | dependencies: 1449 | is-core-module "^2.9.0" 1450 | path-parse "^1.0.7" 1451 | supports-preserve-symlinks-flag "^1.0.0" 1452 | 1453 | responselike@^2.0.0: 1454 | version "2.0.1" 1455 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" 1456 | integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== 1457 | dependencies: 1458 | lowercase-keys "^2.0.0" 1459 | 1460 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2: 1461 | version "5.2.1" 1462 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1463 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1464 | 1465 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1466 | version "2.1.2" 1467 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1468 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1469 | 1470 | "semver@2 || 3 || 4 || 5": 1471 | version "5.7.1" 1472 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1473 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1474 | 1475 | semver@^7.3.4, semver@^7.3.5: 1476 | version "7.3.8" 1477 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1478 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1479 | dependencies: 1480 | lru-cache "^6.0.0" 1481 | 1482 | serialize-javascript@6.0.0: 1483 | version "6.0.0" 1484 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" 1485 | integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== 1486 | dependencies: 1487 | randombytes "^2.1.0" 1488 | 1489 | spdx-correct@^3.0.0: 1490 | version "3.1.1" 1491 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1492 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1493 | dependencies: 1494 | spdx-expression-parse "^3.0.0" 1495 | spdx-license-ids "^3.0.0" 1496 | 1497 | spdx-exceptions@^2.1.0: 1498 | version "2.3.0" 1499 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1500 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1501 | 1502 | spdx-expression-parse@^3.0.0: 1503 | version "3.0.1" 1504 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1505 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1506 | dependencies: 1507 | spdx-exceptions "^2.1.0" 1508 | spdx-license-ids "^3.0.0" 1509 | 1510 | spdx-license-ids@^3.0.0: 1511 | version "3.0.12" 1512 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" 1513 | integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== 1514 | 1515 | sprintf-js@~1.0.2: 1516 | version "1.0.3" 1517 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1518 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 1519 | 1520 | sshpk@^1.7.0: 1521 | version "1.17.0" 1522 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" 1523 | integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== 1524 | dependencies: 1525 | asn1 "~0.2.3" 1526 | assert-plus "^1.0.0" 1527 | bcrypt-pbkdf "^1.0.0" 1528 | dashdash "^1.12.0" 1529 | ecc-jsbn "~0.1.1" 1530 | getpass "^0.1.1" 1531 | jsbn "~0.1.0" 1532 | safer-buffer "^2.0.2" 1533 | tweetnacl "~0.14.0" 1534 | 1535 | string-width@^4.1.0, string-width@^4.2.0: 1536 | version "4.2.3" 1537 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1538 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 1539 | dependencies: 1540 | emoji-regex "^8.0.0" 1541 | is-fullwidth-code-point "^3.0.0" 1542 | strip-ansi "^6.0.1" 1543 | 1544 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1545 | version "6.0.1" 1546 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1547 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1548 | dependencies: 1549 | ansi-regex "^5.0.1" 1550 | 1551 | strip-indent@^4.0.0: 1552 | version "4.0.0" 1553 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz#b41379433dd06f5eae805e21d631e07ee670d853" 1554 | integrity sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA== 1555 | dependencies: 1556 | min-indent "^1.0.1" 1557 | 1558 | strip-json-comments@3.1.1: 1559 | version "3.1.1" 1560 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1561 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1562 | 1563 | supports-color@8.1.1: 1564 | version "8.1.1" 1565 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 1566 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 1567 | dependencies: 1568 | has-flag "^4.0.0" 1569 | 1570 | supports-color@^5.3.0: 1571 | version "5.5.0" 1572 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1573 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1574 | dependencies: 1575 | has-flag "^3.0.0" 1576 | 1577 | supports-color@^7.1.0: 1578 | version "7.2.0" 1579 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1580 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1581 | dependencies: 1582 | has-flag "^4.0.0" 1583 | 1584 | supports-preserve-symlinks-flag@^1.0.0: 1585 | version "1.0.0" 1586 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1587 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1588 | 1589 | to-regex-range@^5.0.1: 1590 | version "5.0.1" 1591 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1592 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1593 | dependencies: 1594 | is-number "^7.0.0" 1595 | 1596 | tough-cookie@~2.5.0: 1597 | version "2.5.0" 1598 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 1599 | integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== 1600 | dependencies: 1601 | psl "^1.1.28" 1602 | punycode "^2.1.1" 1603 | 1604 | trim-newlines@^4.0.2: 1605 | version "4.0.2" 1606 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.0.2.tgz#d6aaaf6a0df1b4b536d183879a6b939489808c7c" 1607 | integrity sha512-GJtWyq9InR/2HRiLZgpIKv+ufIKrVrvjQWEj7PxAXNc5dwbNJkqhAUoAGgzRmULAnoOM5EIpveYd3J2VeSAIew== 1608 | 1609 | try-resolve@^1.0.1: 1610 | version "1.0.1" 1611 | resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" 1612 | integrity sha512-yHeaPjCBzVaXwWl5IMUapTaTC2rn/eBYg2fsG2L+CvJd+ttFbk0ylDnpTO3wVhosmE1tQEvcebbBeKLCwScQSQ== 1613 | 1614 | ts-node-test-register@^10.0.0: 1615 | version "10.0.0" 1616 | resolved "https://registry.yarnpkg.com/ts-node-test-register/-/ts-node-test-register-10.0.0.tgz#eb8cbe40954331f2f70c8e5fb83c677965ac14f9" 1617 | integrity sha512-W8yzvufsG7/ulT65G1D218HMPf6uduojDXuSrGAaakkZlUtuLC+3pxphDktBe/N9w5Gi7teAxKCaTpBH5p6fkQ== 1618 | dependencies: 1619 | read-pkg "^5.2.0" 1620 | 1621 | ts-node@^10.9.1: 1622 | version "10.9.1" 1623 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" 1624 | integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== 1625 | dependencies: 1626 | "@cspotcode/source-map-support" "^0.8.0" 1627 | "@tsconfig/node10" "^1.0.7" 1628 | "@tsconfig/node12" "^1.0.7" 1629 | "@tsconfig/node14" "^1.0.0" 1630 | "@tsconfig/node16" "^1.0.2" 1631 | acorn "^8.4.1" 1632 | acorn-walk "^8.1.1" 1633 | arg "^4.1.0" 1634 | create-require "^1.1.0" 1635 | diff "^4.0.1" 1636 | make-error "^1.1.1" 1637 | v8-compile-cache-lib "^3.0.1" 1638 | yn "3.1.1" 1639 | 1640 | tunnel-agent@^0.6.0: 1641 | version "0.6.0" 1642 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1643 | integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== 1644 | dependencies: 1645 | safe-buffer "^5.0.1" 1646 | 1647 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1648 | version "0.14.5" 1649 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1650 | integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== 1651 | 1652 | type-fest@^0.6.0: 1653 | version "0.6.0" 1654 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 1655 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 1656 | 1657 | type-fest@^2.0.0, type-fest@^2.13.0, type-fest@^2.5.0: 1658 | version "2.19.0" 1659 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" 1660 | integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== 1661 | 1662 | type-fest@^3.1.0: 1663 | version "3.5.1" 1664 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.5.1.tgz#9555ae435f560c1b4447b70bdd195bb2c86c6c92" 1665 | integrity sha512-70T99cpILFk2fzwuljwWxmazSphFrdOe3gRHbp6bqs71pxFBbJwFqnmkLO2lQL6aLHxHmYAnP/sL+AJWpT70jA== 1666 | 1667 | typescript@^4.9.4: 1668 | version "4.9.4" 1669 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" 1670 | integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== 1671 | 1672 | uri-js@^4.2.2: 1673 | version "4.4.1" 1674 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1675 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1676 | dependencies: 1677 | punycode "^2.1.0" 1678 | 1679 | uuid@^3.3.2: 1680 | version "3.4.0" 1681 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 1682 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 1683 | 1684 | v8-compile-cache-lib@^3.0.1: 1685 | version "3.0.1" 1686 | resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" 1687 | integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== 1688 | 1689 | validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: 1690 | version "3.0.4" 1691 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1692 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1693 | dependencies: 1694 | spdx-correct "^3.0.0" 1695 | spdx-expression-parse "^3.0.0" 1696 | 1697 | verror@1.10.0: 1698 | version "1.10.0" 1699 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1700 | integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== 1701 | dependencies: 1702 | assert-plus "^1.0.0" 1703 | core-util-is "1.0.2" 1704 | extsprintf "^1.2.0" 1705 | 1706 | workerpool@6.2.1: 1707 | version "6.2.1" 1708 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343" 1709 | integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== 1710 | 1711 | wrap-ansi@^7.0.0: 1712 | version "7.0.0" 1713 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1714 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1715 | dependencies: 1716 | ansi-styles "^4.0.0" 1717 | string-width "^4.1.0" 1718 | strip-ansi "^6.0.0" 1719 | 1720 | wrappy@1: 1721 | version "1.0.2" 1722 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1723 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1724 | 1725 | y18n@^5.0.5: 1726 | version "5.0.8" 1727 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 1728 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 1729 | 1730 | yallist@^4.0.0: 1731 | version "4.0.0" 1732 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1733 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1734 | 1735 | yargs-parser@20.2.4: 1736 | version "20.2.4" 1737 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 1738 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 1739 | 1740 | yargs-parser@^20.2.2: 1741 | version "20.2.9" 1742 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 1743 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 1744 | 1745 | yargs-parser@^21.1.1: 1746 | version "21.1.1" 1747 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 1748 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 1749 | 1750 | yargs-unparser@2.0.0: 1751 | version "2.0.0" 1752 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" 1753 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== 1754 | dependencies: 1755 | camelcase "^6.0.0" 1756 | decamelize "^4.0.0" 1757 | flat "^5.0.2" 1758 | is-plain-obj "^2.1.0" 1759 | 1760 | yargs@16.2.0: 1761 | version "16.2.0" 1762 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 1763 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 1764 | dependencies: 1765 | cliui "^7.0.2" 1766 | escalade "^3.1.1" 1767 | get-caller-file "^2.0.5" 1768 | require-directory "^2.1.1" 1769 | string-width "^4.2.0" 1770 | y18n "^5.0.5" 1771 | yargs-parser "^20.2.2" 1772 | 1773 | yn@3.1.1: 1774 | version "3.1.1" 1775 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 1776 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 1777 | 1778 | yocto-queue@^0.1.0: 1779 | version "0.1.0" 1780 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1781 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1782 | 1783 | yocto-queue@^1.0.0: 1784 | version "1.0.0" 1785 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" 1786 | integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== 1787 | --------------------------------------------------------------------------------