├── .eslintrc.yml ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── eslint.yml │ ├── linuxci.yml │ ├── macosci.yml │ └── windowsci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── dist └── index.js ├── docs └── MAINTAINER.md ├── package-lock.json ├── package.json ├── src └── index.js └── tests ├── index.test.js ├── test-args.py └── test-default.py /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | es2021: true 3 | node: true 4 | extends: eslint:recommended 5 | parserOptions: 6 | ecmaVersion: latest 7 | sourceType: module 8 | rules: {} 9 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ "master" ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ "master" ] 20 | schedule: 21 | - cron: '27 6 * * 0' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: [ 'javascript', 'python' ] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] 37 | # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support 38 | 39 | steps: 40 | - name: Checkout repository 41 | uses: actions/checkout@v3 42 | 43 | # Initializes the CodeQL tools for scanning. 44 | - name: Initialize CodeQL 45 | uses: github/codeql-action/init@v2 46 | with: 47 | languages: ${{ matrix.language }} 48 | # If you wish to specify custom queries, you can do so here or in a config file. 49 | # By default, queries listed here will override any specified in a config file. 50 | # Prefix the list here with "+" to use these queries and those in the config file. 51 | 52 | # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs 53 | # queries: security-extended,security-and-quality 54 | 55 | 56 | # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). 57 | # If this step fails, then you should remove it and run the build manually (see below) 58 | - name: Autobuild 59 | uses: github/codeql-action/autobuild@v2 60 | 61 | # ℹ️ Command-line programs to run using the OS shell. 62 | # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun 63 | 64 | # If the Autobuild fails above, remove it and uncomment the following three lines. 65 | # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. 66 | 67 | # - run: | 68 | # echo "Run, Build Application using script" 69 | # ./location_of_script_within_repo/buildscript.sh 70 | 71 | - name: Perform CodeQL Analysis 72 | uses: github/codeql-action/analyze@v2 73 | with: 74 | category: "/language:${{matrix.language}}" 75 | -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- 1 | name: Lint 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | name: Node 20 eslint run 9 | steps: 10 | - uses: actions/checkout@v3 11 | - name: Setup node 12 | uses: actions/setup-node@v3 13 | with: 14 | node-version: 20 15 | - name: Install eslint 16 | run: npm install eslint 17 | - name: Lint 18 | run: make lint 19 | -------------------------------------------------------------------------------- /.github/workflows/linuxci.yml: -------------------------------------------------------------------------------- 1 | name: Linux CI 2 | 3 | on: 4 | schedule: 5 | - cron: "0 6 * * *" 6 | push: 7 | pull_request: 8 | 9 | jobs: 10 | ci-tests: 11 | runs-on: ubuntu-latest 12 | strategy: 13 | matrix: 14 | python-version: ["3.9", "3.10", "3.11", "3.12"] 15 | name: Linux CI 16 | steps: 17 | - name: Check out source repository 18 | uses: actions/checkout@v3 19 | - name: Set up Python ${{ matrix.python-version }} environment 20 | uses: actions/setup-python@v4 21 | with: 22 | python-version: ${{ matrix.python-version }} 23 | - name: Python environment report 24 | run: python -c "import sys; print(sys.version)" 25 | - name: Run ${{ matrix.python-version }} platform tests (default) 26 | uses: py-actions/flake8@master 27 | with: 28 | path: "tests/test-default.py" # have to restrict because there are other tests with flake8 fails 29 | - name: Run ${{ matrix.python-version }} platform tests (with args) 30 | uses: py-actions/flake8@master 31 | with: 32 | update-pip: "true" 33 | ignore: "F401" 34 | exclude: "tests/test.py" 35 | max-line-length: "100" 36 | args: "--quiet" 37 | path: "tests/test-args.py" 38 | flake8-version: "main" 39 | plugins: "flake8-bugbear==22.1.11 flake8-black" 40 | -------------------------------------------------------------------------------- /.github/workflows/macosci.yml: -------------------------------------------------------------------------------- 1 | name: macOS CI 2 | 3 | on: 4 | schedule: 5 | - cron: "0 6 * * *" 6 | push: 7 | pull_request: 8 | 9 | jobs: 10 | ci-tests: 11 | runs-on: macos-latest 12 | strategy: 13 | matrix: 14 | python-version: ["3.9", "3.10", "3.11", "3.12"] 15 | name: macOS CI 16 | steps: 17 | - name: Check out source repository 18 | uses: actions/checkout@v3 19 | - name: Set up Python ${{ matrix.python-version }} environment 20 | uses: actions/setup-python@v4 21 | with: 22 | python-version: ${{ matrix.python-version }} 23 | - name: Python environment report 24 | run: python -c "import sys; print(sys.version)" 25 | - name: Run ${{ matrix.python-version }} platform tests (default) 26 | uses: py-actions/flake8@master 27 | with: 28 | path: "tests/test-default.py" # have to restrict because there are other tests with flake8 fails 29 | - name: Run ${{ matrix.python-version }} platform tests (with args) 30 | uses: py-actions/flake8@master 31 | with: 32 | update-pip: "true" 33 | ignore: "F401" 34 | exclude: "tests/test.py" 35 | max-line-length: "100" 36 | args: "--quiet" 37 | path: "tests/test-args.py" 38 | flake8-version: "main" 39 | plugins: "flake8-bugbear==22.1.11 flake8-black" 40 | -------------------------------------------------------------------------------- /.github/workflows/windowsci.yml: -------------------------------------------------------------------------------- 1 | name: Windows CI 2 | 3 | on: 4 | schedule: 5 | - cron: "0 6 * * *" 6 | push: 7 | pull_request: 8 | 9 | jobs: 10 | ci-tests: 11 | runs-on: windows-latest 12 | strategy: 13 | matrix: 14 | python-version: ["3.9", "3.10", "3.11", "3.12"] 15 | name: Windows CI 16 | steps: 17 | - name: Check out source repository 18 | uses: actions/checkout@v3 19 | - name: Set up Python ${{ matrix.python-version }} environment 20 | uses: actions/setup-python@v4 21 | with: 22 | python-version: ${{ matrix.python-version }} 23 | # - name: Windows-specific Python environment workaround 24 | # run: python -m pip install --upgrade pip==21.3.1 25 | - name: Python environment report 26 | run: python -c "import sys; print(sys.version)" 27 | - name: Run ${{ matrix.python-version }} platform tests (default) 28 | uses: py-actions/flake8@master 29 | with: 30 | path: "tests/test-default.py" # have to restrict because there are other tests with flake8 fails 31 | - name: Run ${{ matrix.python-version }} platform tests (with args) 32 | uses: py-actions/flake8@master 33 | with: 34 | update-pip: "true" 35 | ignore: "F401" 36 | exclude: "tests/test.py" 37 | max-line-length: "100" 38 | args: "--quiet" 39 | path: "tests/test-args.py" 40 | flake8-version: "main" 41 | plugins: "flake8-bugbear==22.1.11 flake8-black" 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## v2.3.0 4 | 5 | - update the GitHub Action to use node 20 environment from node 16 environment (addresses GitHub Actions node 16 deprecation warnings) 6 | - add cPython 3.12.x interpreter testing support 7 | - drop cPython 3.8.x interpreter testing support (may work, no longer tested) 8 | - development dependency updates 9 | 10 | ## v2.2.1 11 | 12 | - add cPython 3.11.x environment support 13 | - drop cPython 3.7.x environment support (may still function, but will no longer be included in tests) 14 | - dependency updates 15 | - update CodeQL scanning configuration 16 | 17 | ## v2.2.0 18 | 19 | - Add support for flake8 plugin installation prior to flake8 execution 20 | - Add new `plugins` input field that accepts a space-delimited list of flake8 plugin packages 21 | - Remove Windows-specific CI environment pip installation workaround that was required to temporarily address #139 pip bug 22 | 23 | ## v2.1.0 24 | 25 | - Move remote git repository for flake8 default source branch installs to https://github.com/PyCQA/flake8.git (from GitLab) 26 | - Add new `main` branch definition option for the flake8-version input field. Both "main" and "master" now result in the installation of flake8 from the latest commit in the main branch of the new GitHub repository (see above) 27 | - Update npm commands in Makefile update and dev-update targets 28 | - Execute the GitHub Action in a node16 environment (from node12) 29 | - Execute eslint lint tests in a node16 environment (from node12) 30 | - update @actions/core to ^1.9.0 31 | - update @actions/exec to ^1.1.1 32 | - update eslint-config-airbnb-base to ^15.0.0 33 | - update eslint-plugin-import to ^2.26.0 34 | - update eslint-plugin-promise to ^6.0.0 35 | - update eslint-plugin-react to ^7.30.0 36 | - update jest to ^28.1.1 37 | 38 | ## v2.0.0 39 | 40 | - Remove cPython 3.6 GitHub Actions test runner support (all platforms) 41 | - Add cPython 3.10 GitHub Actions test runner support (all platforms) 42 | - update eslint-plugin-import to ^2.25.3 43 | - update eslint-plugin-jsx-a11y to ^6.5.1 44 | - update eslint-plugin-react to ^7.27.1 45 | - update jest to ^27.4.5 46 | 47 | ## v1.2.0 48 | 49 | - Fix: remove custom error string "ERROR: Action failed during execution with error: " in non-zero exit status code reporting. This was not semantically correct when flake8 raises a non-zero exit code for failed lints 50 | - add cPython 3.10 interpreter CI testing 51 | - update @actions/core dependency to v1.6.0 52 | - update @actions/exec dependency to v1.1.0 53 | - update eslint-plugin-import dependency to v2.25.2 54 | - update eslint-plugin-prettier dependency to v3.4.1 55 | - update eslint-plugin-promise depenency to v4.3.1 56 | - update eslint-plugin-react dependency to v7.26.1 57 | - update jest dependency to v27.3.1 58 | 59 | ## v1.1.0 60 | 61 | - add cPython 3.9 interpreter CI testing 62 | - add daily cron schedule CI testing 63 | - update @actions/core dependency to v1.2.6 64 | - update @zeit/ncc dependency to v0.22.3 65 | - update eslint-config-airbnb-base dependency to v14.2.1 66 | - update estlint-plugin-import dependency to v2.22.1 67 | - update eslint-plugin-jsx-a11y dependency to v6.4.1 68 | - update eslint-plugin-prettier dependency to v3.1.4 69 | - update eslint-plugin-react dependency to v7.21.5 70 | - update jest dependency to v26.6.3 71 | 72 | ## v1.0.1 73 | 74 | Auto-updated during Action execution when you use the `v1` action tag 75 | 76 | - Fix typo in README documentation description of `flake8-version` default setting. 77 | 78 | ## v1.0.0 79 | 80 | Auto-updated during Action execution when you use the `v1` action tag 81 | 82 | - Initial release 83 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | dist: src/*.js package*.json 2 | npm i --legacy-peer-deps && NODE_OPTIONS=--openssl-legacy-provider npm run package 3 | 4 | update: 5 | npm update 6 | 7 | dev-update: 8 | npm update --include=dev 9 | 10 | lint: 11 | npm run lint 12 | 13 | .PHONY: dev-update update lint -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # py-actions/flake8 GitHub Action 2 | 3 | ![Version](https://img.shields.io/github/v/release/py-actions/flake8?sort=semver) 4 | [![Linux CI](https://github.com/py-actions/flake8/workflows/Linux%20CI/badge.svg)](https://github.com/py-actions/flake8/actions?query=workflow%3A%22Linux+CI%22) 5 | [![macOS CI](https://github.com/py-actions/flake8/workflows/macOS%20CI/badge.svg)](https://github.com/py-actions/flake8/actions?query=workflow%3A%22macOS+CI%22) 6 | [![Windows CI](https://github.com/py-actions/flake8/workflows/Windows%20CI/badge.svg)](https://github.com/py-actions/flake8/actions?query=workflow%3A%22Windows+CI%22) 7 | [![Lint](https://github.com/py-actions/flake8/workflows/Lint/badge.svg)](https://github.com/py-actions/flake8/actions?query=workflow%3ALint) 8 | [![CodeQL](https://github.com/py-actions/flake8/actions/workflows/codeql.yml/badge.svg)](https://github.com/py-actions/flake8/actions/workflows/codeql.yml) 9 | 10 | This GitHub Action installs the Python [flake8 package](https://pypi.org/project/flake8/) in an environment with a Python interpreter and executes flake8 stylistic and logical linting of Python source files. flake8 installation and execution defaults, and flake8 plugins can be configured with optional Action settings. 11 | 12 | The project is tested against the latest GitHub Actions Linux, macOS, and Windows runner environment cPython versions 3.9.x - 3.12.x interpreters on a nightly basis. 13 | 14 | ## Quick Start 15 | 16 | ### Default 17 | 18 | ```yaml 19 | name: flake8 Lint 20 | 21 | on: [push, pull_request] 22 | 23 | jobs: 24 | flake8-lint: 25 | runs-on: ubuntu-latest 26 | name: Lint 27 | steps: 28 | - name: Check out source repository 29 | uses: actions/checkout@v3 30 | - name: Set up Python environment 31 | uses: actions/setup-python@v4 32 | with: 33 | python-version: "3.11" 34 | - name: flake8 Lint 35 | uses: py-actions/flake8@v2 36 | ``` 37 | 38 | ### With custom settings 39 | 40 | ```yaml 41 | name: flake8 Lint 42 | 43 | on: [push, pull_request] 44 | 45 | jobs: 46 | flake8-lint: 47 | runs-on: ubuntu-latest 48 | name: Lint 49 | steps: 50 | - name: Check out source repository 51 | uses: actions/checkout@v3 52 | - name: Set up Python environment 53 | uses: actions/setup-python@v4 54 | with: 55 | python-version: "3.11" 56 | - name: flake8 Lint 57 | uses: py-actions/flake8@v2 58 | with: 59 | ignore: "F401" 60 | exclude: "src/ignoreme.py" 61 | max-line-length: "100" 62 | path: "src" 63 | plugins: "flake8-bugbear==22.1.11 flake8-black" 64 | ``` 65 | 66 | See the Inputs section below for details on the defaults and optional configuration settings. 67 | 68 | ## Inputs 69 | 70 | Configure the Action with the following *optional* settings: 71 | 72 | ### `flake8-version` 73 | 74 | **Optional** flake8 version for testing. Options: ['latest', 'main', 'master', '[VERSION NUMBER]'].Default = `"latest"`. 75 | 76 | - 'latest' = current PyPI release version 77 | - 'main' = current [GitHub source repository main branch version](https://github.com/PyCQA/flake8) 78 | - '[VERSION NUMBER]' = the version number of the [flake8 PyPI package](https://pypi.org/project/flake8/) (e.g., `"3.7.9"`) 79 | 80 | ### `path` 81 | 82 | **Optional** The path to the Python source file(s) or directory. Default = `"."`. 83 | 84 | ### `args` 85 | 86 | **Optional** Command line arguments to the flake8 executable. Default = None. 87 | 88 | Please note that some command line arguments can be defined with other fields in your configuration. You may combine the `args` setting with the other settings below, or use `args` to configure flake8 without the other Action settings. 89 | 90 | See the inputs below for additional details. 91 | 92 | ### `exclude` 93 | 94 | **Optional** Comma-delimited list of ignored file paths. Default = flake8 default. 95 | 96 | ### `ignore` 97 | 98 | **Optional** Comma-delimited list of ignored flake8 rule codes. Default = flake8 default. 99 | 100 | ### `max-line-length` 101 | 102 | **Optional** Integer value (as string) representing maximum acceptable line length. Default = flake8 default. 103 | 104 | ### `update-pip` 105 | 106 | **Optional** Update `pip` before the flake8 install. Options: [`"true"`, `"false"`]. Default = `"false"`. 107 | 108 | ### `plugins` 109 | 110 | **Optional** Space delimited list of flake8 plugin packages to install with pip prior to flake8 execution. Default = none. 111 | 112 | Use the syntax: 113 | 114 | - `[PACKAGE NAME]`: for current PyPI release version across Action runs 115 | - `[PACKAGE NAME]==[VERSION]`: for a fixed PyPI release version on every Action run 116 | 117 | See the ["With custom settings" example](#with-custom-settings) above. 118 | 119 | ## Outputs 120 | 121 | None 122 | 123 | ## License 124 | 125 | [Apache License, v2.0](LICENSE) 126 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: "Python flake8 Lint" 2 | description: "Logical and stylistic linting of Python source files with the flake8 package" 3 | inputs: 4 | path: # id 5 | description: "Path to source file or directory (default='.')" 6 | required: false 7 | default: "." # default path is the root of the source repository 8 | update-pip: # id 9 | description: "Boolean for pip upgrade prior to flake8 installation (default='false')" 10 | required: false 11 | default: "false" # options "true", "false" 12 | ignore: 13 | description: "Comma delimited list of ignored flake8 rule codes (optional)" 14 | required: false 15 | default: "none" # comma delimited list of ignored rule codes 16 | exclude: 17 | description: "Comma delimited list of excluded paths (optional)" 18 | required: false 19 | default: "none" # comma delimited list of paths 20 | max-line-length: 21 | description: "Integer value representing max acceptable line length (optional)" 22 | required: false 23 | default: "none" # integer value as a string 24 | args: 25 | description: "flake8 arguments for test execution (optional)" 26 | required: false 27 | default: "none" # integer value as a string 28 | flake8-version: 29 | description: "The flake8 version for tests (optional, default='latest')" 30 | required: false 31 | default: "latest" # possible values ['latest', 'master', 'main', '[VERSION NUMBER]'] 32 | plugins: 33 | description: "List of flake8 plugins for pip installation prior to flake8 execution" 34 | required: false 35 | default: "none" # possible values ['[PACKAGE]', '[PACKAGE]==[VERSION NUMBER]'] 36 | 37 | runs: 38 | using: "node20" 39 | main: "dist/index.js" 40 | 41 | branding: 42 | icon: "terminal" 43 | color: "blue" 44 | -------------------------------------------------------------------------------- /docs/MAINTAINER.md: -------------------------------------------------------------------------------- 1 | # Maintainer documentation 2 | 3 | ## Releases 4 | 5 | ### Update version number 6 | 7 | - in `package.json` 8 | 9 | ### Build dist file 10 | 11 | ``` 12 | $ make dist 13 | ``` 14 | 15 | Confirm that this is pushed to the remote as the Action execution is based on `dist/index.js`! 16 | 17 | ### Tag a release 18 | 19 | This project follows semantic versioning. 20 | 21 | The Action is automatically updated across all releases within a major version using a `v[MAJOR VERSION]` git tag. The [recommended approach](https://help.github.com/en/actions/building-actions/about-actions#versioning-your-action) is to move the `v[MAJOR VERSION]` tag to each new within major version release. 22 | 23 | - Push a semver git tag 24 | - Move the major version `v[MAJOR VERSION]` tag to the new release commit 25 | - Create a new `v[MAJOR VERSION]` git tag when the major version changes 26 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flake8", 3 | "version": "2.3.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "flake8", 9 | "version": "2.3.0", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "@actions/core": "^1.10.1", 13 | "@actions/exec": "^1.1.1", 14 | "@actions/glob": "^0.4.0" 15 | }, 16 | "devDependencies": { 17 | "@vercel/ncc": "^0.38.1", 18 | "eslint": "^8.57.0" 19 | } 20 | }, 21 | "node_modules/@aashutoshrathi/word-wrap": { 22 | "version": "1.2.6", 23 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 24 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 25 | "dev": true, 26 | "engines": { 27 | "node": ">=0.10.0" 28 | } 29 | }, 30 | "node_modules/@actions/core": { 31 | "version": "1.10.1", 32 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", 33 | "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", 34 | "dependencies": { 35 | "@actions/http-client": "^2.0.1", 36 | "uuid": "^8.3.2" 37 | } 38 | }, 39 | "node_modules/@actions/exec": { 40 | "version": "1.1.1", 41 | "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.1.1.tgz", 42 | "integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==", 43 | "dependencies": { 44 | "@actions/io": "^1.0.1" 45 | } 46 | }, 47 | "node_modules/@actions/glob": { 48 | "version": "0.4.0", 49 | "resolved": "https://registry.npmjs.org/@actions/glob/-/glob-0.4.0.tgz", 50 | "integrity": "sha512-+eKIGFhsFa4EBwaf/GMyzCdWrXWymGXfFmZU3FHQvYS8mPcHtTtZONbkcqqUMzw9mJ/pImEBFET1JNifhqGsAQ==", 51 | "dependencies": { 52 | "@actions/core": "^1.9.1", 53 | "minimatch": "^3.0.4" 54 | } 55 | }, 56 | "node_modules/@actions/http-client": { 57 | "version": "2.0.1", 58 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", 59 | "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", 60 | "dependencies": { 61 | "tunnel": "^0.0.6" 62 | } 63 | }, 64 | "node_modules/@actions/io": { 65 | "version": "1.1.2", 66 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.2.tgz", 67 | "integrity": "sha512-d+RwPlMp+2qmBfeLYPLXuSRykDIFEwdTA0MMxzS9kh4kvP1ftrc/9fzy6pX6qAjthdXruHQ6/6kjT/DNo5ALuw==" 68 | }, 69 | "node_modules/@eslint-community/eslint-utils": { 70 | "version": "4.4.0", 71 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 72 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 73 | "dev": true, 74 | "dependencies": { 75 | "eslint-visitor-keys": "^3.3.0" 76 | }, 77 | "engines": { 78 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 79 | }, 80 | "peerDependencies": { 81 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 82 | } 83 | }, 84 | "node_modules/@eslint-community/regexpp": { 85 | "version": "4.10.0", 86 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 87 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 88 | "dev": true, 89 | "engines": { 90 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 91 | } 92 | }, 93 | "node_modules/@eslint/eslintrc": { 94 | "version": "2.1.4", 95 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 96 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 97 | "dev": true, 98 | "dependencies": { 99 | "ajv": "^6.12.4", 100 | "debug": "^4.3.2", 101 | "espree": "^9.6.0", 102 | "globals": "^13.19.0", 103 | "ignore": "^5.2.0", 104 | "import-fresh": "^3.2.1", 105 | "js-yaml": "^4.1.0", 106 | "minimatch": "^3.1.2", 107 | "strip-json-comments": "^3.1.1" 108 | }, 109 | "engines": { 110 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 111 | }, 112 | "funding": { 113 | "url": "https://opencollective.com/eslint" 114 | } 115 | }, 116 | "node_modules/@eslint/js": { 117 | "version": "8.57.0", 118 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 119 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 120 | "dev": true, 121 | "engines": { 122 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 123 | } 124 | }, 125 | "node_modules/@humanwhocodes/config-array": { 126 | "version": "0.11.14", 127 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 128 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 129 | "dev": true, 130 | "dependencies": { 131 | "@humanwhocodes/object-schema": "^2.0.2", 132 | "debug": "^4.3.1", 133 | "minimatch": "^3.0.5" 134 | }, 135 | "engines": { 136 | "node": ">=10.10.0" 137 | } 138 | }, 139 | "node_modules/@humanwhocodes/module-importer": { 140 | "version": "1.0.1", 141 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 142 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 143 | "dev": true, 144 | "engines": { 145 | "node": ">=12.22" 146 | }, 147 | "funding": { 148 | "type": "github", 149 | "url": "https://github.com/sponsors/nzakas" 150 | } 151 | }, 152 | "node_modules/@humanwhocodes/object-schema": { 153 | "version": "2.0.2", 154 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", 155 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", 156 | "dev": true 157 | }, 158 | "node_modules/@nodelib/fs.scandir": { 159 | "version": "2.1.5", 160 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 161 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 162 | "dev": true, 163 | "dependencies": { 164 | "@nodelib/fs.stat": "2.0.5", 165 | "run-parallel": "^1.1.9" 166 | }, 167 | "engines": { 168 | "node": ">= 8" 169 | } 170 | }, 171 | "node_modules/@nodelib/fs.stat": { 172 | "version": "2.0.5", 173 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 174 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 175 | "dev": true, 176 | "engines": { 177 | "node": ">= 8" 178 | } 179 | }, 180 | "node_modules/@nodelib/fs.walk": { 181 | "version": "1.2.8", 182 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 183 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 184 | "dev": true, 185 | "dependencies": { 186 | "@nodelib/fs.scandir": "2.1.5", 187 | "fastq": "^1.6.0" 188 | }, 189 | "engines": { 190 | "node": ">= 8" 191 | } 192 | }, 193 | "node_modules/@ungap/structured-clone": { 194 | "version": "1.2.0", 195 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 196 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 197 | "dev": true 198 | }, 199 | "node_modules/@vercel/ncc": { 200 | "version": "0.38.1", 201 | "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.1.tgz", 202 | "integrity": "sha512-IBBb+iI2NLu4VQn3Vwldyi2QwaXt5+hTyh58ggAMoCGE6DJmPvwL3KPBWcJl1m9LYPChBLE980Jw+CS4Wokqxw==", 203 | "dev": true, 204 | "bin": { 205 | "ncc": "dist/ncc/cli.js" 206 | } 207 | }, 208 | "node_modules/acorn": { 209 | "version": "8.11.2", 210 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", 211 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", 212 | "dev": true, 213 | "bin": { 214 | "acorn": "bin/acorn" 215 | }, 216 | "engines": { 217 | "node": ">=0.4.0" 218 | } 219 | }, 220 | "node_modules/acorn-jsx": { 221 | "version": "5.3.2", 222 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 223 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 224 | "dev": true, 225 | "peerDependencies": { 226 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 227 | } 228 | }, 229 | "node_modules/ajv": { 230 | "version": "6.12.6", 231 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 232 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 233 | "dev": true, 234 | "dependencies": { 235 | "fast-deep-equal": "^3.1.1", 236 | "fast-json-stable-stringify": "^2.0.0", 237 | "json-schema-traverse": "^0.4.1", 238 | "uri-js": "^4.2.2" 239 | }, 240 | "funding": { 241 | "type": "github", 242 | "url": "https://github.com/sponsors/epoberezkin" 243 | } 244 | }, 245 | "node_modules/ansi-regex": { 246 | "version": "5.0.1", 247 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 248 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 249 | "dev": true, 250 | "engines": { 251 | "node": ">=8" 252 | } 253 | }, 254 | "node_modules/argparse": { 255 | "version": "2.0.1", 256 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 257 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 258 | "dev": true 259 | }, 260 | "node_modules/balanced-match": { 261 | "version": "1.0.2", 262 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 263 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 264 | }, 265 | "node_modules/brace-expansion": { 266 | "version": "1.1.11", 267 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 268 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 269 | "dependencies": { 270 | "balanced-match": "^1.0.0", 271 | "concat-map": "0.0.1" 272 | } 273 | }, 274 | "node_modules/callsites": { 275 | "version": "3.1.0", 276 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 277 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 278 | "dev": true, 279 | "engines": { 280 | "node": ">=6" 281 | } 282 | }, 283 | "node_modules/concat-map": { 284 | "version": "0.0.1", 285 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 286 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 287 | }, 288 | "node_modules/cross-spawn": { 289 | "version": "7.0.3", 290 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 291 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 292 | "dev": true, 293 | "dependencies": { 294 | "path-key": "^3.1.0", 295 | "shebang-command": "^2.0.0", 296 | "which": "^2.0.1" 297 | }, 298 | "engines": { 299 | "node": ">= 8" 300 | } 301 | }, 302 | "node_modules/debug": { 303 | "version": "4.3.4", 304 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 305 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 306 | "dev": true, 307 | "dependencies": { 308 | "ms": "2.1.2" 309 | }, 310 | "engines": { 311 | "node": ">=6.0" 312 | }, 313 | "peerDependenciesMeta": { 314 | "supports-color": { 315 | "optional": true 316 | } 317 | } 318 | }, 319 | "node_modules/deep-is": { 320 | "version": "0.1.4", 321 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 322 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 323 | "dev": true 324 | }, 325 | "node_modules/doctrine": { 326 | "version": "3.0.0", 327 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 328 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 329 | "dev": true, 330 | "dependencies": { 331 | "esutils": "^2.0.2" 332 | }, 333 | "engines": { 334 | "node": ">=6.0.0" 335 | } 336 | }, 337 | "node_modules/eslint": { 338 | "version": "8.57.0", 339 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 340 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 341 | "dev": true, 342 | "dependencies": { 343 | "@eslint-community/eslint-utils": "^4.2.0", 344 | "@eslint-community/regexpp": "^4.6.1", 345 | "@eslint/eslintrc": "^2.1.4", 346 | "@eslint/js": "8.57.0", 347 | "@humanwhocodes/config-array": "^0.11.14", 348 | "@humanwhocodes/module-importer": "^1.0.1", 349 | "@nodelib/fs.walk": "^1.2.8", 350 | "@ungap/structured-clone": "^1.2.0", 351 | "ajv": "^6.12.4", 352 | "chalk": "^4.0.0", 353 | "cross-spawn": "^7.0.2", 354 | "debug": "^4.3.2", 355 | "doctrine": "^3.0.0", 356 | "escape-string-regexp": "^4.0.0", 357 | "eslint-scope": "^7.2.2", 358 | "eslint-visitor-keys": "^3.4.3", 359 | "espree": "^9.6.1", 360 | "esquery": "^1.4.2", 361 | "esutils": "^2.0.2", 362 | "fast-deep-equal": "^3.1.3", 363 | "file-entry-cache": "^6.0.1", 364 | "find-up": "^5.0.0", 365 | "glob-parent": "^6.0.2", 366 | "globals": "^13.19.0", 367 | "graphemer": "^1.4.0", 368 | "ignore": "^5.2.0", 369 | "imurmurhash": "^0.1.4", 370 | "is-glob": "^4.0.0", 371 | "is-path-inside": "^3.0.3", 372 | "js-yaml": "^4.1.0", 373 | "json-stable-stringify-without-jsonify": "^1.0.1", 374 | "levn": "^0.4.1", 375 | "lodash.merge": "^4.6.2", 376 | "minimatch": "^3.1.2", 377 | "natural-compare": "^1.4.0", 378 | "optionator": "^0.9.3", 379 | "strip-ansi": "^6.0.1", 380 | "text-table": "^0.2.0" 381 | }, 382 | "bin": { 383 | "eslint": "bin/eslint.js" 384 | }, 385 | "engines": { 386 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 387 | }, 388 | "funding": { 389 | "url": "https://opencollective.com/eslint" 390 | } 391 | }, 392 | "node_modules/eslint-visitor-keys": { 393 | "version": "3.4.3", 394 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 395 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 396 | "dev": true, 397 | "engines": { 398 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 399 | }, 400 | "funding": { 401 | "url": "https://opencollective.com/eslint" 402 | } 403 | }, 404 | "node_modules/eslint/node_modules/ansi-styles": { 405 | "version": "4.3.0", 406 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 407 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 408 | "dev": true, 409 | "dependencies": { 410 | "color-convert": "^2.0.1" 411 | }, 412 | "engines": { 413 | "node": ">=8" 414 | }, 415 | "funding": { 416 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 417 | } 418 | }, 419 | "node_modules/eslint/node_modules/chalk": { 420 | "version": "4.1.2", 421 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 422 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 423 | "dev": true, 424 | "dependencies": { 425 | "ansi-styles": "^4.1.0", 426 | "supports-color": "^7.1.0" 427 | }, 428 | "engines": { 429 | "node": ">=10" 430 | }, 431 | "funding": { 432 | "url": "https://github.com/chalk/chalk?sponsor=1" 433 | } 434 | }, 435 | "node_modules/eslint/node_modules/color-convert": { 436 | "version": "2.0.1", 437 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 438 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 439 | "dev": true, 440 | "dependencies": { 441 | "color-name": "~1.1.4" 442 | }, 443 | "engines": { 444 | "node": ">=7.0.0" 445 | } 446 | }, 447 | "node_modules/eslint/node_modules/color-name": { 448 | "version": "1.1.4", 449 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 450 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 451 | "dev": true 452 | }, 453 | "node_modules/eslint/node_modules/escape-string-regexp": { 454 | "version": "4.0.0", 455 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 456 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 457 | "dev": true, 458 | "engines": { 459 | "node": ">=10" 460 | }, 461 | "funding": { 462 | "url": "https://github.com/sponsors/sindresorhus" 463 | } 464 | }, 465 | "node_modules/eslint/node_modules/eslint-scope": { 466 | "version": "7.2.2", 467 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 468 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 469 | "dev": true, 470 | "dependencies": { 471 | "esrecurse": "^4.3.0", 472 | "estraverse": "^5.2.0" 473 | }, 474 | "engines": { 475 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 476 | }, 477 | "funding": { 478 | "url": "https://opencollective.com/eslint" 479 | } 480 | }, 481 | "node_modules/eslint/node_modules/find-up": { 482 | "version": "5.0.0", 483 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 484 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 485 | "dev": true, 486 | "dependencies": { 487 | "locate-path": "^6.0.0", 488 | "path-exists": "^4.0.0" 489 | }, 490 | "engines": { 491 | "node": ">=10" 492 | }, 493 | "funding": { 494 | "url": "https://github.com/sponsors/sindresorhus" 495 | } 496 | }, 497 | "node_modules/eslint/node_modules/has-flag": { 498 | "version": "4.0.0", 499 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 500 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 501 | "dev": true, 502 | "engines": { 503 | "node": ">=8" 504 | } 505 | }, 506 | "node_modules/eslint/node_modules/locate-path": { 507 | "version": "6.0.0", 508 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 509 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 510 | "dev": true, 511 | "dependencies": { 512 | "p-locate": "^5.0.0" 513 | }, 514 | "engines": { 515 | "node": ">=10" 516 | }, 517 | "funding": { 518 | "url": "https://github.com/sponsors/sindresorhus" 519 | } 520 | }, 521 | "node_modules/eslint/node_modules/p-locate": { 522 | "version": "5.0.0", 523 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 524 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 525 | "dev": true, 526 | "dependencies": { 527 | "p-limit": "^3.0.2" 528 | }, 529 | "engines": { 530 | "node": ">=10" 531 | }, 532 | "funding": { 533 | "url": "https://github.com/sponsors/sindresorhus" 534 | } 535 | }, 536 | "node_modules/eslint/node_modules/supports-color": { 537 | "version": "7.2.0", 538 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 539 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 540 | "dev": true, 541 | "dependencies": { 542 | "has-flag": "^4.0.0" 543 | }, 544 | "engines": { 545 | "node": ">=8" 546 | } 547 | }, 548 | "node_modules/espree": { 549 | "version": "9.6.1", 550 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 551 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 552 | "dev": true, 553 | "dependencies": { 554 | "acorn": "^8.9.0", 555 | "acorn-jsx": "^5.3.2", 556 | "eslint-visitor-keys": "^3.4.1" 557 | }, 558 | "engines": { 559 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 560 | }, 561 | "funding": { 562 | "url": "https://opencollective.com/eslint" 563 | } 564 | }, 565 | "node_modules/esquery": { 566 | "version": "1.5.0", 567 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 568 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 569 | "dev": true, 570 | "dependencies": { 571 | "estraverse": "^5.1.0" 572 | }, 573 | "engines": { 574 | "node": ">=0.10" 575 | } 576 | }, 577 | "node_modules/esrecurse": { 578 | "version": "4.3.0", 579 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 580 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 581 | "dev": true, 582 | "dependencies": { 583 | "estraverse": "^5.2.0" 584 | }, 585 | "engines": { 586 | "node": ">=4.0" 587 | } 588 | }, 589 | "node_modules/estraverse": { 590 | "version": "5.3.0", 591 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 592 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 593 | "dev": true, 594 | "engines": { 595 | "node": ">=4.0" 596 | } 597 | }, 598 | "node_modules/esutils": { 599 | "version": "2.0.3", 600 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 601 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 602 | "dev": true, 603 | "engines": { 604 | "node": ">=0.10.0" 605 | } 606 | }, 607 | "node_modules/fast-deep-equal": { 608 | "version": "3.1.3", 609 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 610 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 611 | "dev": true 612 | }, 613 | "node_modules/fast-json-stable-stringify": { 614 | "version": "2.1.0", 615 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 616 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 617 | "dev": true 618 | }, 619 | "node_modules/fast-levenshtein": { 620 | "version": "2.0.6", 621 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 622 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 623 | "dev": true 624 | }, 625 | "node_modules/fastq": { 626 | "version": "1.15.0", 627 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 628 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 629 | "dev": true, 630 | "dependencies": { 631 | "reusify": "^1.0.4" 632 | } 633 | }, 634 | "node_modules/file-entry-cache": { 635 | "version": "6.0.1", 636 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 637 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 638 | "dev": true, 639 | "dependencies": { 640 | "flat-cache": "^3.0.4" 641 | }, 642 | "engines": { 643 | "node": "^10.12.0 || >=12.0.0" 644 | } 645 | }, 646 | "node_modules/flat-cache": { 647 | "version": "3.1.1", 648 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", 649 | "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", 650 | "dev": true, 651 | "dependencies": { 652 | "flatted": "^3.2.9", 653 | "keyv": "^4.5.3", 654 | "rimraf": "^3.0.2" 655 | }, 656 | "engines": { 657 | "node": ">=12.0.0" 658 | } 659 | }, 660 | "node_modules/flatted": { 661 | "version": "3.2.9", 662 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 663 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 664 | "dev": true 665 | }, 666 | "node_modules/fs.realpath": { 667 | "version": "1.0.0", 668 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 669 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 670 | "dev": true 671 | }, 672 | "node_modules/glob": { 673 | "version": "7.2.3", 674 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 675 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 676 | "dev": true, 677 | "dependencies": { 678 | "fs.realpath": "^1.0.0", 679 | "inflight": "^1.0.4", 680 | "inherits": "2", 681 | "minimatch": "^3.1.1", 682 | "once": "^1.3.0", 683 | "path-is-absolute": "^1.0.0" 684 | }, 685 | "engines": { 686 | "node": "*" 687 | }, 688 | "funding": { 689 | "url": "https://github.com/sponsors/isaacs" 690 | } 691 | }, 692 | "node_modules/glob-parent": { 693 | "version": "6.0.2", 694 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 695 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 696 | "dev": true, 697 | "dependencies": { 698 | "is-glob": "^4.0.3" 699 | }, 700 | "engines": { 701 | "node": ">=10.13.0" 702 | } 703 | }, 704 | "node_modules/globals": { 705 | "version": "13.24.0", 706 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 707 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 708 | "dev": true, 709 | "dependencies": { 710 | "type-fest": "^0.20.2" 711 | }, 712 | "engines": { 713 | "node": ">=8" 714 | }, 715 | "funding": { 716 | "url": "https://github.com/sponsors/sindresorhus" 717 | } 718 | }, 719 | "node_modules/graphemer": { 720 | "version": "1.4.0", 721 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 722 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 723 | "dev": true 724 | }, 725 | "node_modules/ignore": { 726 | "version": "5.3.0", 727 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", 728 | "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", 729 | "dev": true, 730 | "engines": { 731 | "node": ">= 4" 732 | } 733 | }, 734 | "node_modules/import-fresh": { 735 | "version": "3.3.0", 736 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 737 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 738 | "dev": true, 739 | "dependencies": { 740 | "parent-module": "^1.0.0", 741 | "resolve-from": "^4.0.0" 742 | }, 743 | "engines": { 744 | "node": ">=6" 745 | }, 746 | "funding": { 747 | "url": "https://github.com/sponsors/sindresorhus" 748 | } 749 | }, 750 | "node_modules/imurmurhash": { 751 | "version": "0.1.4", 752 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 753 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 754 | "dev": true, 755 | "engines": { 756 | "node": ">=0.8.19" 757 | } 758 | }, 759 | "node_modules/inflight": { 760 | "version": "1.0.6", 761 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 762 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 763 | "dev": true, 764 | "dependencies": { 765 | "once": "^1.3.0", 766 | "wrappy": "1" 767 | } 768 | }, 769 | "node_modules/inherits": { 770 | "version": "2.0.4", 771 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 772 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 773 | "dev": true 774 | }, 775 | "node_modules/is-extglob": { 776 | "version": "2.1.1", 777 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 778 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 779 | "dev": true, 780 | "engines": { 781 | "node": ">=0.10.0" 782 | } 783 | }, 784 | "node_modules/is-glob": { 785 | "version": "4.0.3", 786 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 787 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 788 | "dev": true, 789 | "dependencies": { 790 | "is-extglob": "^2.1.1" 791 | }, 792 | "engines": { 793 | "node": ">=0.10.0" 794 | } 795 | }, 796 | "node_modules/is-path-inside": { 797 | "version": "3.0.3", 798 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 799 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 800 | "dev": true, 801 | "engines": { 802 | "node": ">=8" 803 | } 804 | }, 805 | "node_modules/isexe": { 806 | "version": "2.0.0", 807 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 808 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 809 | "dev": true 810 | }, 811 | "node_modules/js-yaml": { 812 | "version": "4.1.0", 813 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 814 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 815 | "dev": true, 816 | "dependencies": { 817 | "argparse": "^2.0.1" 818 | }, 819 | "bin": { 820 | "js-yaml": "bin/js-yaml.js" 821 | } 822 | }, 823 | "node_modules/json-buffer": { 824 | "version": "3.0.1", 825 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 826 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 827 | "dev": true 828 | }, 829 | "node_modules/json-schema-traverse": { 830 | "version": "0.4.1", 831 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 832 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 833 | "dev": true 834 | }, 835 | "node_modules/json-stable-stringify-without-jsonify": { 836 | "version": "1.0.1", 837 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 838 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 839 | "dev": true 840 | }, 841 | "node_modules/keyv": { 842 | "version": "4.5.4", 843 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 844 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 845 | "dev": true, 846 | "dependencies": { 847 | "json-buffer": "3.0.1" 848 | } 849 | }, 850 | "node_modules/levn": { 851 | "version": "0.4.1", 852 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 853 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 854 | "dev": true, 855 | "dependencies": { 856 | "prelude-ls": "^1.2.1", 857 | "type-check": "~0.4.0" 858 | }, 859 | "engines": { 860 | "node": ">= 0.8.0" 861 | } 862 | }, 863 | "node_modules/lodash.merge": { 864 | "version": "4.6.2", 865 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 866 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 867 | "dev": true 868 | }, 869 | "node_modules/minimatch": { 870 | "version": "3.1.2", 871 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 872 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 873 | "dependencies": { 874 | "brace-expansion": "^1.1.7" 875 | }, 876 | "engines": { 877 | "node": "*" 878 | } 879 | }, 880 | "node_modules/ms": { 881 | "version": "2.1.2", 882 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 883 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 884 | "dev": true 885 | }, 886 | "node_modules/natural-compare": { 887 | "version": "1.4.0", 888 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 889 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 890 | "dev": true 891 | }, 892 | "node_modules/once": { 893 | "version": "1.4.0", 894 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 895 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 896 | "dev": true, 897 | "dependencies": { 898 | "wrappy": "1" 899 | } 900 | }, 901 | "node_modules/optionator": { 902 | "version": "0.9.3", 903 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 904 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 905 | "dev": true, 906 | "dependencies": { 907 | "@aashutoshrathi/word-wrap": "^1.2.3", 908 | "deep-is": "^0.1.3", 909 | "fast-levenshtein": "^2.0.6", 910 | "levn": "^0.4.1", 911 | "prelude-ls": "^1.2.1", 912 | "type-check": "^0.4.0" 913 | }, 914 | "engines": { 915 | "node": ">= 0.8.0" 916 | } 917 | }, 918 | "node_modules/p-limit": { 919 | "version": "3.1.0", 920 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 921 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 922 | "dev": true, 923 | "dependencies": { 924 | "yocto-queue": "^0.1.0" 925 | }, 926 | "engines": { 927 | "node": ">=10" 928 | }, 929 | "funding": { 930 | "url": "https://github.com/sponsors/sindresorhus" 931 | } 932 | }, 933 | "node_modules/parent-module": { 934 | "version": "1.0.1", 935 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 936 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 937 | "dev": true, 938 | "dependencies": { 939 | "callsites": "^3.0.0" 940 | }, 941 | "engines": { 942 | "node": ">=6" 943 | } 944 | }, 945 | "node_modules/path-exists": { 946 | "version": "4.0.0", 947 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 948 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 949 | "dev": true, 950 | "engines": { 951 | "node": ">=8" 952 | } 953 | }, 954 | "node_modules/path-is-absolute": { 955 | "version": "1.0.1", 956 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 957 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 958 | "dev": true, 959 | "engines": { 960 | "node": ">=0.10.0" 961 | } 962 | }, 963 | "node_modules/path-key": { 964 | "version": "3.1.1", 965 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 966 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 967 | "dev": true, 968 | "engines": { 969 | "node": ">=8" 970 | } 971 | }, 972 | "node_modules/prelude-ls": { 973 | "version": "1.2.1", 974 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 975 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 976 | "dev": true, 977 | "engines": { 978 | "node": ">= 0.8.0" 979 | } 980 | }, 981 | "node_modules/punycode": { 982 | "version": "2.3.1", 983 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 984 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 985 | "dev": true, 986 | "engines": { 987 | "node": ">=6" 988 | } 989 | }, 990 | "node_modules/queue-microtask": { 991 | "version": "1.2.3", 992 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 993 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 994 | "dev": true, 995 | "funding": [ 996 | { 997 | "type": "github", 998 | "url": "https://github.com/sponsors/feross" 999 | }, 1000 | { 1001 | "type": "patreon", 1002 | "url": "https://www.patreon.com/feross" 1003 | }, 1004 | { 1005 | "type": "consulting", 1006 | "url": "https://feross.org/support" 1007 | } 1008 | ] 1009 | }, 1010 | "node_modules/resolve-from": { 1011 | "version": "4.0.0", 1012 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1013 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1014 | "dev": true, 1015 | "engines": { 1016 | "node": ">=4" 1017 | } 1018 | }, 1019 | "node_modules/reusify": { 1020 | "version": "1.0.4", 1021 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1022 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1023 | "dev": true, 1024 | "engines": { 1025 | "iojs": ">=1.0.0", 1026 | "node": ">=0.10.0" 1027 | } 1028 | }, 1029 | "node_modules/rimraf": { 1030 | "version": "3.0.2", 1031 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1032 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1033 | "dev": true, 1034 | "dependencies": { 1035 | "glob": "^7.1.3" 1036 | }, 1037 | "bin": { 1038 | "rimraf": "bin.js" 1039 | }, 1040 | "funding": { 1041 | "url": "https://github.com/sponsors/isaacs" 1042 | } 1043 | }, 1044 | "node_modules/run-parallel": { 1045 | "version": "1.2.0", 1046 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1047 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1048 | "dev": true, 1049 | "funding": [ 1050 | { 1051 | "type": "github", 1052 | "url": "https://github.com/sponsors/feross" 1053 | }, 1054 | { 1055 | "type": "patreon", 1056 | "url": "https://www.patreon.com/feross" 1057 | }, 1058 | { 1059 | "type": "consulting", 1060 | "url": "https://feross.org/support" 1061 | } 1062 | ], 1063 | "dependencies": { 1064 | "queue-microtask": "^1.2.2" 1065 | } 1066 | }, 1067 | "node_modules/shebang-command": { 1068 | "version": "2.0.0", 1069 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1070 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1071 | "dev": true, 1072 | "dependencies": { 1073 | "shebang-regex": "^3.0.0" 1074 | }, 1075 | "engines": { 1076 | "node": ">=8" 1077 | } 1078 | }, 1079 | "node_modules/shebang-regex": { 1080 | "version": "3.0.0", 1081 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1082 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1083 | "dev": true, 1084 | "engines": { 1085 | "node": ">=8" 1086 | } 1087 | }, 1088 | "node_modules/strip-ansi": { 1089 | "version": "6.0.1", 1090 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1091 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1092 | "dev": true, 1093 | "dependencies": { 1094 | "ansi-regex": "^5.0.1" 1095 | }, 1096 | "engines": { 1097 | "node": ">=8" 1098 | } 1099 | }, 1100 | "node_modules/strip-json-comments": { 1101 | "version": "3.1.1", 1102 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1103 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1104 | "dev": true, 1105 | "engines": { 1106 | "node": ">=8" 1107 | }, 1108 | "funding": { 1109 | "url": "https://github.com/sponsors/sindresorhus" 1110 | } 1111 | }, 1112 | "node_modules/text-table": { 1113 | "version": "0.2.0", 1114 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1115 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1116 | "dev": true 1117 | }, 1118 | "node_modules/tunnel": { 1119 | "version": "0.0.6", 1120 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", 1121 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", 1122 | "engines": { 1123 | "node": ">=0.6.11 <=0.7.0 || >=0.7.3" 1124 | } 1125 | }, 1126 | "node_modules/type-check": { 1127 | "version": "0.4.0", 1128 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1129 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1130 | "dev": true, 1131 | "dependencies": { 1132 | "prelude-ls": "^1.2.1" 1133 | }, 1134 | "engines": { 1135 | "node": ">= 0.8.0" 1136 | } 1137 | }, 1138 | "node_modules/type-fest": { 1139 | "version": "0.20.2", 1140 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 1141 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 1142 | "dev": true, 1143 | "engines": { 1144 | "node": ">=10" 1145 | }, 1146 | "funding": { 1147 | "url": "https://github.com/sponsors/sindresorhus" 1148 | } 1149 | }, 1150 | "node_modules/uri-js": { 1151 | "version": "4.4.1", 1152 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1153 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1154 | "dev": true, 1155 | "dependencies": { 1156 | "punycode": "^2.1.0" 1157 | } 1158 | }, 1159 | "node_modules/uuid": { 1160 | "version": "8.3.2", 1161 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 1162 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", 1163 | "bin": { 1164 | "uuid": "dist/bin/uuid" 1165 | } 1166 | }, 1167 | "node_modules/which": { 1168 | "version": "2.0.2", 1169 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1170 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1171 | "dev": true, 1172 | "dependencies": { 1173 | "isexe": "^2.0.0" 1174 | }, 1175 | "bin": { 1176 | "node-which": "bin/node-which" 1177 | }, 1178 | "engines": { 1179 | "node": ">= 8" 1180 | } 1181 | }, 1182 | "node_modules/wrappy": { 1183 | "version": "1.0.2", 1184 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1185 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 1186 | "dev": true 1187 | }, 1188 | "node_modules/yocto-queue": { 1189 | "version": "0.1.0", 1190 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 1191 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 1192 | "dev": true, 1193 | "engines": { 1194 | "node": ">=10" 1195 | }, 1196 | "funding": { 1197 | "url": "https://github.com/sponsors/sindresorhus" 1198 | } 1199 | } 1200 | }, 1201 | "dependencies": { 1202 | "@aashutoshrathi/word-wrap": { 1203 | "version": "1.2.6", 1204 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 1205 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 1206 | "dev": true 1207 | }, 1208 | "@actions/core": { 1209 | "version": "1.10.1", 1210 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", 1211 | "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", 1212 | "requires": { 1213 | "@actions/http-client": "^2.0.1", 1214 | "uuid": "^8.3.2" 1215 | } 1216 | }, 1217 | "@actions/exec": { 1218 | "version": "1.1.1", 1219 | "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.1.1.tgz", 1220 | "integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==", 1221 | "requires": { 1222 | "@actions/io": "^1.0.1" 1223 | } 1224 | }, 1225 | "@actions/glob": { 1226 | "version": "0.4.0", 1227 | "resolved": "https://registry.npmjs.org/@actions/glob/-/glob-0.4.0.tgz", 1228 | "integrity": "sha512-+eKIGFhsFa4EBwaf/GMyzCdWrXWymGXfFmZU3FHQvYS8mPcHtTtZONbkcqqUMzw9mJ/pImEBFET1JNifhqGsAQ==", 1229 | "requires": { 1230 | "@actions/core": "^1.9.1", 1231 | "minimatch": "^3.0.4" 1232 | } 1233 | }, 1234 | "@actions/http-client": { 1235 | "version": "2.0.1", 1236 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", 1237 | "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", 1238 | "requires": { 1239 | "tunnel": "^0.0.6" 1240 | } 1241 | }, 1242 | "@actions/io": { 1243 | "version": "1.1.2", 1244 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.2.tgz", 1245 | "integrity": "sha512-d+RwPlMp+2qmBfeLYPLXuSRykDIFEwdTA0MMxzS9kh4kvP1ftrc/9fzy6pX6qAjthdXruHQ6/6kjT/DNo5ALuw==" 1246 | }, 1247 | "@eslint-community/eslint-utils": { 1248 | "version": "4.4.0", 1249 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 1250 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 1251 | "dev": true, 1252 | "requires": { 1253 | "eslint-visitor-keys": "^3.3.0" 1254 | } 1255 | }, 1256 | "@eslint-community/regexpp": { 1257 | "version": "4.10.0", 1258 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 1259 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 1260 | "dev": true 1261 | }, 1262 | "@eslint/eslintrc": { 1263 | "version": "2.1.4", 1264 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 1265 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 1266 | "dev": true, 1267 | "requires": { 1268 | "ajv": "^6.12.4", 1269 | "debug": "^4.3.2", 1270 | "espree": "^9.6.0", 1271 | "globals": "^13.19.0", 1272 | "ignore": "^5.2.0", 1273 | "import-fresh": "^3.2.1", 1274 | "js-yaml": "^4.1.0", 1275 | "minimatch": "^3.1.2", 1276 | "strip-json-comments": "^3.1.1" 1277 | } 1278 | }, 1279 | "@eslint/js": { 1280 | "version": "8.57.0", 1281 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 1282 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 1283 | "dev": true 1284 | }, 1285 | "@humanwhocodes/config-array": { 1286 | "version": "0.11.14", 1287 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 1288 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 1289 | "dev": true, 1290 | "requires": { 1291 | "@humanwhocodes/object-schema": "^2.0.2", 1292 | "debug": "^4.3.1", 1293 | "minimatch": "^3.0.5" 1294 | } 1295 | }, 1296 | "@humanwhocodes/module-importer": { 1297 | "version": "1.0.1", 1298 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 1299 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 1300 | "dev": true 1301 | }, 1302 | "@humanwhocodes/object-schema": { 1303 | "version": "2.0.2", 1304 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", 1305 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", 1306 | "dev": true 1307 | }, 1308 | "@nodelib/fs.scandir": { 1309 | "version": "2.1.5", 1310 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1311 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1312 | "dev": true, 1313 | "requires": { 1314 | "@nodelib/fs.stat": "2.0.5", 1315 | "run-parallel": "^1.1.9" 1316 | } 1317 | }, 1318 | "@nodelib/fs.stat": { 1319 | "version": "2.0.5", 1320 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1321 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 1322 | "dev": true 1323 | }, 1324 | "@nodelib/fs.walk": { 1325 | "version": "1.2.8", 1326 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1327 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1328 | "dev": true, 1329 | "requires": { 1330 | "@nodelib/fs.scandir": "2.1.5", 1331 | "fastq": "^1.6.0" 1332 | } 1333 | }, 1334 | "@ungap/structured-clone": { 1335 | "version": "1.2.0", 1336 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 1337 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 1338 | "dev": true 1339 | }, 1340 | "@vercel/ncc": { 1341 | "version": "0.38.1", 1342 | "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.1.tgz", 1343 | "integrity": "sha512-IBBb+iI2NLu4VQn3Vwldyi2QwaXt5+hTyh58ggAMoCGE6DJmPvwL3KPBWcJl1m9LYPChBLE980Jw+CS4Wokqxw==", 1344 | "dev": true 1345 | }, 1346 | "acorn": { 1347 | "version": "8.11.2", 1348 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", 1349 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", 1350 | "dev": true 1351 | }, 1352 | "acorn-jsx": { 1353 | "version": "5.3.2", 1354 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1355 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1356 | "dev": true, 1357 | "requires": {} 1358 | }, 1359 | "ajv": { 1360 | "version": "6.12.6", 1361 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1362 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1363 | "dev": true, 1364 | "requires": { 1365 | "fast-deep-equal": "^3.1.1", 1366 | "fast-json-stable-stringify": "^2.0.0", 1367 | "json-schema-traverse": "^0.4.1", 1368 | "uri-js": "^4.2.2" 1369 | } 1370 | }, 1371 | "ansi-regex": { 1372 | "version": "5.0.1", 1373 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1374 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1375 | "dev": true 1376 | }, 1377 | "argparse": { 1378 | "version": "2.0.1", 1379 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1380 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1381 | "dev": true 1382 | }, 1383 | "balanced-match": { 1384 | "version": "1.0.2", 1385 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1386 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1387 | }, 1388 | "brace-expansion": { 1389 | "version": "1.1.11", 1390 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1391 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1392 | "requires": { 1393 | "balanced-match": "^1.0.0", 1394 | "concat-map": "0.0.1" 1395 | } 1396 | }, 1397 | "callsites": { 1398 | "version": "3.1.0", 1399 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1400 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1401 | "dev": true 1402 | }, 1403 | "concat-map": { 1404 | "version": "0.0.1", 1405 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1406 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1407 | }, 1408 | "cross-spawn": { 1409 | "version": "7.0.3", 1410 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1411 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1412 | "dev": true, 1413 | "requires": { 1414 | "path-key": "^3.1.0", 1415 | "shebang-command": "^2.0.0", 1416 | "which": "^2.0.1" 1417 | } 1418 | }, 1419 | "debug": { 1420 | "version": "4.3.4", 1421 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1422 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1423 | "dev": true, 1424 | "requires": { 1425 | "ms": "2.1.2" 1426 | } 1427 | }, 1428 | "deep-is": { 1429 | "version": "0.1.4", 1430 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1431 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1432 | "dev": true 1433 | }, 1434 | "doctrine": { 1435 | "version": "3.0.0", 1436 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1437 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1438 | "dev": true, 1439 | "requires": { 1440 | "esutils": "^2.0.2" 1441 | } 1442 | }, 1443 | "eslint": { 1444 | "version": "8.57.0", 1445 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 1446 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 1447 | "dev": true, 1448 | "requires": { 1449 | "@eslint-community/eslint-utils": "^4.2.0", 1450 | "@eslint-community/regexpp": "^4.6.1", 1451 | "@eslint/eslintrc": "^2.1.4", 1452 | "@eslint/js": "8.57.0", 1453 | "@humanwhocodes/config-array": "^0.11.14", 1454 | "@humanwhocodes/module-importer": "^1.0.1", 1455 | "@nodelib/fs.walk": "^1.2.8", 1456 | "@ungap/structured-clone": "^1.2.0", 1457 | "ajv": "^6.12.4", 1458 | "chalk": "^4.0.0", 1459 | "cross-spawn": "^7.0.2", 1460 | "debug": "^4.3.2", 1461 | "doctrine": "^3.0.0", 1462 | "escape-string-regexp": "^4.0.0", 1463 | "eslint-scope": "^7.2.2", 1464 | "eslint-visitor-keys": "^3.4.3", 1465 | "espree": "^9.6.1", 1466 | "esquery": "^1.4.2", 1467 | "esutils": "^2.0.2", 1468 | "fast-deep-equal": "^3.1.3", 1469 | "file-entry-cache": "^6.0.1", 1470 | "find-up": "^5.0.0", 1471 | "glob-parent": "^6.0.2", 1472 | "globals": "^13.19.0", 1473 | "graphemer": "^1.4.0", 1474 | "ignore": "^5.2.0", 1475 | "imurmurhash": "^0.1.4", 1476 | "is-glob": "^4.0.0", 1477 | "is-path-inside": "^3.0.3", 1478 | "js-yaml": "^4.1.0", 1479 | "json-stable-stringify-without-jsonify": "^1.0.1", 1480 | "levn": "^0.4.1", 1481 | "lodash.merge": "^4.6.2", 1482 | "minimatch": "^3.1.2", 1483 | "natural-compare": "^1.4.0", 1484 | "optionator": "^0.9.3", 1485 | "strip-ansi": "^6.0.1", 1486 | "text-table": "^0.2.0" 1487 | }, 1488 | "dependencies": { 1489 | "ansi-styles": { 1490 | "version": "4.3.0", 1491 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1492 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1493 | "dev": true, 1494 | "requires": { 1495 | "color-convert": "^2.0.1" 1496 | } 1497 | }, 1498 | "chalk": { 1499 | "version": "4.1.2", 1500 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1501 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1502 | "dev": true, 1503 | "requires": { 1504 | "ansi-styles": "^4.1.0", 1505 | "supports-color": "^7.1.0" 1506 | } 1507 | }, 1508 | "color-convert": { 1509 | "version": "2.0.1", 1510 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1511 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1512 | "dev": true, 1513 | "requires": { 1514 | "color-name": "~1.1.4" 1515 | } 1516 | }, 1517 | "color-name": { 1518 | "version": "1.1.4", 1519 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1520 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1521 | "dev": true 1522 | }, 1523 | "escape-string-regexp": { 1524 | "version": "4.0.0", 1525 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1526 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1527 | "dev": true 1528 | }, 1529 | "eslint-scope": { 1530 | "version": "7.2.2", 1531 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1532 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1533 | "dev": true, 1534 | "requires": { 1535 | "esrecurse": "^4.3.0", 1536 | "estraverse": "^5.2.0" 1537 | } 1538 | }, 1539 | "find-up": { 1540 | "version": "5.0.0", 1541 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1542 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1543 | "dev": true, 1544 | "requires": { 1545 | "locate-path": "^6.0.0", 1546 | "path-exists": "^4.0.0" 1547 | } 1548 | }, 1549 | "has-flag": { 1550 | "version": "4.0.0", 1551 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1552 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1553 | "dev": true 1554 | }, 1555 | "locate-path": { 1556 | "version": "6.0.0", 1557 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1558 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1559 | "dev": true, 1560 | "requires": { 1561 | "p-locate": "^5.0.0" 1562 | } 1563 | }, 1564 | "p-locate": { 1565 | "version": "5.0.0", 1566 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1567 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1568 | "dev": true, 1569 | "requires": { 1570 | "p-limit": "^3.0.2" 1571 | } 1572 | }, 1573 | "supports-color": { 1574 | "version": "7.2.0", 1575 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1576 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1577 | "dev": true, 1578 | "requires": { 1579 | "has-flag": "^4.0.0" 1580 | } 1581 | } 1582 | } 1583 | }, 1584 | "eslint-visitor-keys": { 1585 | "version": "3.4.3", 1586 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1587 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1588 | "dev": true 1589 | }, 1590 | "espree": { 1591 | "version": "9.6.1", 1592 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1593 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1594 | "dev": true, 1595 | "requires": { 1596 | "acorn": "^8.9.0", 1597 | "acorn-jsx": "^5.3.2", 1598 | "eslint-visitor-keys": "^3.4.1" 1599 | } 1600 | }, 1601 | "esquery": { 1602 | "version": "1.5.0", 1603 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1604 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1605 | "dev": true, 1606 | "requires": { 1607 | "estraverse": "^5.1.0" 1608 | } 1609 | }, 1610 | "esrecurse": { 1611 | "version": "4.3.0", 1612 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1613 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1614 | "dev": true, 1615 | "requires": { 1616 | "estraverse": "^5.2.0" 1617 | } 1618 | }, 1619 | "estraverse": { 1620 | "version": "5.3.0", 1621 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1622 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1623 | "dev": true 1624 | }, 1625 | "esutils": { 1626 | "version": "2.0.3", 1627 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1628 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1629 | "dev": true 1630 | }, 1631 | "fast-deep-equal": { 1632 | "version": "3.1.3", 1633 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1634 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1635 | "dev": true 1636 | }, 1637 | "fast-json-stable-stringify": { 1638 | "version": "2.1.0", 1639 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1640 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1641 | "dev": true 1642 | }, 1643 | "fast-levenshtein": { 1644 | "version": "2.0.6", 1645 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1646 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1647 | "dev": true 1648 | }, 1649 | "fastq": { 1650 | "version": "1.15.0", 1651 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1652 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1653 | "dev": true, 1654 | "requires": { 1655 | "reusify": "^1.0.4" 1656 | } 1657 | }, 1658 | "file-entry-cache": { 1659 | "version": "6.0.1", 1660 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1661 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1662 | "dev": true, 1663 | "requires": { 1664 | "flat-cache": "^3.0.4" 1665 | } 1666 | }, 1667 | "flat-cache": { 1668 | "version": "3.1.1", 1669 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", 1670 | "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", 1671 | "dev": true, 1672 | "requires": { 1673 | "flatted": "^3.2.9", 1674 | "keyv": "^4.5.3", 1675 | "rimraf": "^3.0.2" 1676 | } 1677 | }, 1678 | "flatted": { 1679 | "version": "3.2.9", 1680 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 1681 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 1682 | "dev": true 1683 | }, 1684 | "fs.realpath": { 1685 | "version": "1.0.0", 1686 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1687 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1688 | "dev": true 1689 | }, 1690 | "glob": { 1691 | "version": "7.2.3", 1692 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1693 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1694 | "dev": true, 1695 | "requires": { 1696 | "fs.realpath": "^1.0.0", 1697 | "inflight": "^1.0.4", 1698 | "inherits": "2", 1699 | "minimatch": "^3.1.1", 1700 | "once": "^1.3.0", 1701 | "path-is-absolute": "^1.0.0" 1702 | } 1703 | }, 1704 | "glob-parent": { 1705 | "version": "6.0.2", 1706 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1707 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1708 | "dev": true, 1709 | "requires": { 1710 | "is-glob": "^4.0.3" 1711 | } 1712 | }, 1713 | "globals": { 1714 | "version": "13.24.0", 1715 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1716 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1717 | "dev": true, 1718 | "requires": { 1719 | "type-fest": "^0.20.2" 1720 | } 1721 | }, 1722 | "graphemer": { 1723 | "version": "1.4.0", 1724 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1725 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1726 | "dev": true 1727 | }, 1728 | "ignore": { 1729 | "version": "5.3.0", 1730 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", 1731 | "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", 1732 | "dev": true 1733 | }, 1734 | "import-fresh": { 1735 | "version": "3.3.0", 1736 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1737 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1738 | "dev": true, 1739 | "requires": { 1740 | "parent-module": "^1.0.0", 1741 | "resolve-from": "^4.0.0" 1742 | } 1743 | }, 1744 | "imurmurhash": { 1745 | "version": "0.1.4", 1746 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1747 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1748 | "dev": true 1749 | }, 1750 | "inflight": { 1751 | "version": "1.0.6", 1752 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1753 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1754 | "dev": true, 1755 | "requires": { 1756 | "once": "^1.3.0", 1757 | "wrappy": "1" 1758 | } 1759 | }, 1760 | "inherits": { 1761 | "version": "2.0.4", 1762 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1763 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1764 | "dev": true 1765 | }, 1766 | "is-extglob": { 1767 | "version": "2.1.1", 1768 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1769 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1770 | "dev": true 1771 | }, 1772 | "is-glob": { 1773 | "version": "4.0.3", 1774 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1775 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1776 | "dev": true, 1777 | "requires": { 1778 | "is-extglob": "^2.1.1" 1779 | } 1780 | }, 1781 | "is-path-inside": { 1782 | "version": "3.0.3", 1783 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1784 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1785 | "dev": true 1786 | }, 1787 | "isexe": { 1788 | "version": "2.0.0", 1789 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1790 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1791 | "dev": true 1792 | }, 1793 | "js-yaml": { 1794 | "version": "4.1.0", 1795 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1796 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1797 | "dev": true, 1798 | "requires": { 1799 | "argparse": "^2.0.1" 1800 | } 1801 | }, 1802 | "json-buffer": { 1803 | "version": "3.0.1", 1804 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1805 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1806 | "dev": true 1807 | }, 1808 | "json-schema-traverse": { 1809 | "version": "0.4.1", 1810 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1811 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1812 | "dev": true 1813 | }, 1814 | "json-stable-stringify-without-jsonify": { 1815 | "version": "1.0.1", 1816 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1817 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1818 | "dev": true 1819 | }, 1820 | "keyv": { 1821 | "version": "4.5.4", 1822 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1823 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1824 | "dev": true, 1825 | "requires": { 1826 | "json-buffer": "3.0.1" 1827 | } 1828 | }, 1829 | "levn": { 1830 | "version": "0.4.1", 1831 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1832 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1833 | "dev": true, 1834 | "requires": { 1835 | "prelude-ls": "^1.2.1", 1836 | "type-check": "~0.4.0" 1837 | } 1838 | }, 1839 | "lodash.merge": { 1840 | "version": "4.6.2", 1841 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1842 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1843 | "dev": true 1844 | }, 1845 | "minimatch": { 1846 | "version": "3.1.2", 1847 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1848 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1849 | "requires": { 1850 | "brace-expansion": "^1.1.7" 1851 | } 1852 | }, 1853 | "ms": { 1854 | "version": "2.1.2", 1855 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1856 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1857 | "dev": true 1858 | }, 1859 | "natural-compare": { 1860 | "version": "1.4.0", 1861 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1862 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1863 | "dev": true 1864 | }, 1865 | "once": { 1866 | "version": "1.4.0", 1867 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1868 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1869 | "dev": true, 1870 | "requires": { 1871 | "wrappy": "1" 1872 | } 1873 | }, 1874 | "optionator": { 1875 | "version": "0.9.3", 1876 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 1877 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 1878 | "dev": true, 1879 | "requires": { 1880 | "@aashutoshrathi/word-wrap": "^1.2.3", 1881 | "deep-is": "^0.1.3", 1882 | "fast-levenshtein": "^2.0.6", 1883 | "levn": "^0.4.1", 1884 | "prelude-ls": "^1.2.1", 1885 | "type-check": "^0.4.0" 1886 | } 1887 | }, 1888 | "p-limit": { 1889 | "version": "3.1.0", 1890 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1891 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1892 | "dev": true, 1893 | "requires": { 1894 | "yocto-queue": "^0.1.0" 1895 | } 1896 | }, 1897 | "parent-module": { 1898 | "version": "1.0.1", 1899 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1900 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1901 | "dev": true, 1902 | "requires": { 1903 | "callsites": "^3.0.0" 1904 | } 1905 | }, 1906 | "path-exists": { 1907 | "version": "4.0.0", 1908 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1909 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1910 | "dev": true 1911 | }, 1912 | "path-is-absolute": { 1913 | "version": "1.0.1", 1914 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1915 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1916 | "dev": true 1917 | }, 1918 | "path-key": { 1919 | "version": "3.1.1", 1920 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1921 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1922 | "dev": true 1923 | }, 1924 | "prelude-ls": { 1925 | "version": "1.2.1", 1926 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1927 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1928 | "dev": true 1929 | }, 1930 | "punycode": { 1931 | "version": "2.3.1", 1932 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1933 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1934 | "dev": true 1935 | }, 1936 | "queue-microtask": { 1937 | "version": "1.2.3", 1938 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1939 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1940 | "dev": true 1941 | }, 1942 | "resolve-from": { 1943 | "version": "4.0.0", 1944 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1945 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1946 | "dev": true 1947 | }, 1948 | "reusify": { 1949 | "version": "1.0.4", 1950 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1951 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1952 | "dev": true 1953 | }, 1954 | "rimraf": { 1955 | "version": "3.0.2", 1956 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1957 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1958 | "dev": true, 1959 | "requires": { 1960 | "glob": "^7.1.3" 1961 | } 1962 | }, 1963 | "run-parallel": { 1964 | "version": "1.2.0", 1965 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1966 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1967 | "dev": true, 1968 | "requires": { 1969 | "queue-microtask": "^1.2.2" 1970 | } 1971 | }, 1972 | "shebang-command": { 1973 | "version": "2.0.0", 1974 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1975 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1976 | "dev": true, 1977 | "requires": { 1978 | "shebang-regex": "^3.0.0" 1979 | } 1980 | }, 1981 | "shebang-regex": { 1982 | "version": "3.0.0", 1983 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1984 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1985 | "dev": true 1986 | }, 1987 | "strip-ansi": { 1988 | "version": "6.0.1", 1989 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1990 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1991 | "dev": true, 1992 | "requires": { 1993 | "ansi-regex": "^5.0.1" 1994 | } 1995 | }, 1996 | "strip-json-comments": { 1997 | "version": "3.1.1", 1998 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1999 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2000 | "dev": true 2001 | }, 2002 | "text-table": { 2003 | "version": "0.2.0", 2004 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2005 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 2006 | "dev": true 2007 | }, 2008 | "tunnel": { 2009 | "version": "0.0.6", 2010 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", 2011 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" 2012 | }, 2013 | "type-check": { 2014 | "version": "0.4.0", 2015 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2016 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2017 | "dev": true, 2018 | "requires": { 2019 | "prelude-ls": "^1.2.1" 2020 | } 2021 | }, 2022 | "type-fest": { 2023 | "version": "0.20.2", 2024 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2025 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2026 | "dev": true 2027 | }, 2028 | "uri-js": { 2029 | "version": "4.4.1", 2030 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2031 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2032 | "dev": true, 2033 | "requires": { 2034 | "punycode": "^2.1.0" 2035 | } 2036 | }, 2037 | "uuid": { 2038 | "version": "8.3.2", 2039 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 2040 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" 2041 | }, 2042 | "which": { 2043 | "version": "2.0.2", 2044 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2045 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2046 | "dev": true, 2047 | "requires": { 2048 | "isexe": "^2.0.0" 2049 | } 2050 | }, 2051 | "wrappy": { 2052 | "version": "1.0.2", 2053 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2054 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2055 | "dev": true 2056 | }, 2057 | "yocto-queue": { 2058 | "version": "0.1.0", 2059 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2060 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2061 | "dev": true 2062 | } 2063 | } 2064 | } 2065 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flake8", 3 | "version": "2.3.0", 4 | "description": "py-actions Python flake8 linting GitHub Action", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "lint": "eslint src/*.js", 8 | "lint:fix": "eslint src/*.js --fix", 9 | "package": "ncc build src/index.js -o dist", 10 | "test": "eslint src/*.js && jest" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/py-actions/flake8.git" 15 | }, 16 | "keywords": [ 17 | "GitHub", 18 | "Actions", 19 | "python", 20 | "python3", 21 | "linting", 22 | "flake8" 23 | ], 24 | "author": "py-actions Authors", 25 | "license": "Apache-2.0", 26 | "bugs": { 27 | "url": "https://github.com/py-actions/flake8/issues" 28 | }, 29 | "homepage": "https://github.com/py-actions/flake8", 30 | "dependencies": { 31 | "@actions/core": "^1.10.1", 32 | "@actions/exec": "^1.1.1", 33 | "@actions/glob": "^0.4.0" 34 | }, 35 | "devDependencies": { 36 | "@vercel/ncc": "^0.38.1", 37 | "eslint": "^8.57.0" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const core = require("@actions/core"); 2 | const exec = require("@actions/exec"); 3 | 4 | async function run() { 5 | const sourcePath = core.getInput("path"); 6 | const updatePip = core.getInput("update-pip"); 7 | const ignoreRuleCodes = core.getInput("ignore"); 8 | const excludePaths = core.getInput("exclude"); 9 | const maxLineLength = core.getInput("max-line-length"); 10 | const flake8Args = core.getInput("args"); 11 | const flake8Version = core.getInput("flake8-version"); 12 | const flake8Plugins = core.getInput("plugins"); 13 | 14 | // ==================== 15 | // Install dependencies 16 | // ==================== 17 | try { 18 | // update pip 19 | if (updatePip === "true") { 20 | console.log("[*] Updating pip package..."); 21 | await exec.exec("python -m pip install --upgrade pip"); 22 | } 23 | 24 | // install/update flake8 package 25 | console.log(`[*] Installing flake8 package @ ${flake8Version}...`); 26 | if (flake8Version === "latest") { 27 | await exec.exec("python -m pip install --upgrade flake8"); 28 | } else if (flake8Version === "main") { 29 | await exec.exec( 30 | "python -m pip install --upgrade git+https://github.com/PyCQA/flake8.git" 31 | ); 32 | } else if (flake8Version === "master") { 33 | await exec.exec( 34 | "python -m pip install --upgrade git+https://github.com/PyCQA/flake8.git" 35 | ); 36 | } else { 37 | await exec.exec( 38 | `python -m pip install --upgrade flake8==${flake8Version}` 39 | ); 40 | } 41 | // show installed flake8 version that will be used during the tests 42 | console.log("[*] Installed flake8 package version:"); 43 | await exec.exec("flake8 --version"); 44 | 45 | // install plugins if they were requested 46 | if (flake8Plugins !== "none") { 47 | await exec.exec(`python -m pip install --upgrade ${flake8Plugins}`); 48 | } 49 | 50 | // prep flake8 command for execution 51 | let flake8Cmd = "flake8"; 52 | if (ignoreRuleCodes !== "none") { 53 | flake8Cmd += ` --ignore ${ignoreRuleCodes}`; 54 | } 55 | if (excludePaths !== "none") { 56 | flake8Cmd += ` --exclude ${excludePaths}`; 57 | } 58 | if (maxLineLength !== "none") { 59 | flake8Cmd += ` --max-line-length ${maxLineLength}`; 60 | } 61 | if (flake8Args !== "none") { 62 | flake8Cmd += ` ${flake8Args}`; 63 | } 64 | // concatenate test path 65 | flake8Cmd += ` ${sourcePath}`; 66 | 67 | // execute flake8 68 | await exec.exec(`${flake8Cmd}`); 69 | } catch (error) { 70 | core.setFailed(`${error.message}`); 71 | } 72 | } 73 | 74 | run(); 75 | -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- 1 | const process = require("process"); 2 | const cp = require("child_process"); 3 | const path = require("path"); 4 | -------------------------------------------------------------------------------- /tests/test-args.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | 5 | def main(): 6 | sys.stdout.write( 7 | "Hello world! This is an exceedingly long line that exceeds the max limits." 8 | ) 9 | 10 | 11 | if __name__ == "__main__": 12 | main() 13 | -------------------------------------------------------------------------------- /tests/test-default.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | 4 | def main(): 5 | sys.stdout.write("Hello world!") 6 | 7 | 8 | if __name__ == "__main__": 9 | main() 10 | --------------------------------------------------------------------------------