├── .eslintrc.yml
├── .github
├── release-drafter.yml
└── workflows
│ └── release.yml
├── .gitignore
├── LICENSE
├── README.md
├── SUPPORT.md
├── action.yml
├── dist
├── index.js
└── licenses.txt
├── images
├── pc_ci_rule_example.png
├── pc_github_code_scanning.png
├── pc_github_log_output.png
└── pc_ui_result.png
├── index.js
├── package-lock.json
└── package.json
/.eslintrc.yml:
--------------------------------------------------------------------------------
1 | env:
2 | commonjs: true
3 | es2021: true
4 | node: true
5 | extends: 'eslint:recommended'
6 | parserOptions:
7 | ecmaVersion: 12
8 | rules: {}
9 |
--------------------------------------------------------------------------------
/.github/release-drafter.yml:
--------------------------------------------------------------------------------
1 | autolabeler:
2 | - label: 'feature'
3 | branch:
4 | - '/feature\/.+/'
5 | - label: 'bugfix'
6 | branch:
7 | - '/fix\/.+/'
8 |
9 | categories:
10 | - title: 'Features'
11 | labels:
12 | - 'enhancement'
13 | - 'feature'
14 | - title: 'Bug Fixes'
15 | labels:
16 | - 'bug'
17 | - 'bugfix'
18 | - 'fix'
19 |
20 | exclude-labels:
21 | - 'skip-changelog'
22 |
23 | template: |
24 | ## Changes
25 | $CHANGES
26 |
27 | ## Contributors
28 | $CONTRIBUTORS
29 |
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: draft release
2 |
3 | on:
4 | push:
5 | tags:
6 | - 'v[0-9]+.[0-9]+.[0-9]+'
7 |
8 | jobs:
9 | draft-release:
10 | runs-on: ubuntu-latest
11 |
12 | steps:
13 | - uses: release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5
14 | env:
15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # .gitignore template from GitHub
2 | # most of this is unnecessary
3 |
4 | # Logs
5 | logs
6 | *.log
7 | npm-debug.log*
8 | yarn-debug.log*
9 | yarn-error.log*
10 | lerna-debug.log*
11 |
12 | # Diagnostic reports (https://nodejs.org/api/report.html)
13 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
14 |
15 | # Runtime data
16 | pids
17 | *.pid
18 | *.seed
19 | *.pid.lock
20 |
21 | # Directory for instrumented libs generated by jscoverage/JSCover
22 | lib-cov
23 |
24 | # Coverage directory used by tools like istanbul
25 | coverage
26 | *.lcov
27 |
28 | # nyc test coverage
29 | .nyc_output
30 |
31 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
32 | .grunt
33 |
34 | # Bower dependency directory (https://bower.io/)
35 | bower_components
36 |
37 | # node-waf configuration
38 | .lock-wscript
39 |
40 | # Compiled binary addons (https://nodejs.org/api/addons.html)
41 | build/Release
42 |
43 | # Dependency directories
44 | node_modules/
45 | jspm_packages/
46 |
47 | # TypeScript v1 declaration files
48 | typings/
49 |
50 | # TypeScript cache
51 | *.tsbuildinfo
52 |
53 | # Optional npm cache directory
54 | .npm
55 |
56 | # Optional eslint cache
57 | .eslintcache
58 |
59 | # Microbundle cache
60 | .rpt2_cache/
61 | .rts2_cache_cjs/
62 | .rts2_cache_es/
63 | .rts2_cache_umd/
64 |
65 | # Optional REPL history
66 | .node_repl_history
67 |
68 | # Output of 'npm pack'
69 | *.tgz
70 |
71 | # Yarn Integrity file
72 | .yarn-integrity
73 |
74 | # dotenv environment variables file
75 | .env
76 | .env.test
77 |
78 | # parcel-bundler cache (https://parceljs.org/)
79 | .cache
80 |
81 | # Next.js build output
82 | .next
83 |
84 | # Nuxt.js build / generate output
85 | .nuxt
86 |
87 | # Gatsby files
88 | .cache/
89 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
90 | # https://nextjs.org/blog/next-9-1#public-directory-support
91 | # public
92 |
93 | # vuepress build output
94 | .vuepress/dist
95 |
96 | # Serverless directories
97 | .serverless/
98 |
99 | # FuseBox cache
100 | .fusebox/
101 |
102 | # DynamoDB Local files
103 | .dynamodb/
104 |
105 | # TernJS port file
106 | .tern-port
107 |
108 | .DS_Store
--------------------------------------------------------------------------------
/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 2021 Palo Alto Networks
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 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Prisma Cloud Scan Action
2 |
3 | ---
4 |
5 | **IMPORTANT: Please see [SUPPORT.md](SUPPORT.md) for the official support policy for the contents of this repository.**
6 |
7 | ---
8 |
9 | This GitHub Action will scan container images for vulnerabilities and compliance issues using Prisma Cloud by Palo Alto Networks. With it, you can receive immediate feedback about image vulnerabilities and compliance violations both in GitHub and in the Prisma Cloud Console as well as block builds that do not meet your compliance requirements, such as high or critical vulnerabilities.
10 |
11 | This action is a wrapper around [twistcli](https://docs.twistlock.com/docs/compute_edition/tools/twistcli_scan_images.html) which connects to the specified Prisma Cloud Console for vulnerability and compliance policy and metadata.
12 |
13 | ## Usage
14 | ### Example of container image scanning
15 | ```yaml
16 | on: [ push, workflow_dispatch ]
17 |
18 | env:
19 | IMAGE_NAME: ${{ github.repository }}:${{ github.sha }}
20 |
21 | jobs:
22 | build-and-scan:
23 | name: Build and scan image
24 | runs-on: ubuntu-latest
25 |
26 | steps:
27 | - name: Check out the repository
28 | uses: actions/checkout@v2
29 |
30 | - name: Build the image
31 | run: docker build -t $IMAGE_NAME .
32 |
33 | - name: Prisma Cloud image scan
34 | id: scan
35 | uses: PaloAltoNetworks/prisma-cloud-scan@v1.5
36 | with:
37 | pcc_console_url: ${{ secrets.PCC_CONSOLE_URL }}
38 | pcc_user: ${{ secrets.PCC_USER }}
39 | pcc_pass: ${{ secrets.PCC_PASS }}
40 | image_name: ${{ env.IMAGE_NAME }}
41 |
42 | # (Optional) for compatibility with GitHub's code scanning alerts
43 | - name: Upload SARIF file
44 | if: ${{ always() }} # necessary if using failure thresholds in the image scan
45 | uses: github/codeql-action/upload-sarif@v2
46 | with:
47 | sarif_file: ${{ steps.scan.outputs.sarif_file }}
48 | ```
49 |
50 |
51 | ## Properties
52 | ### Environment variables
53 | | Variable | Description | Required? | Default |
54 | |---|---|---|---|
55 | | `DOCKER_ADDRESS` | Address of the Docker daemon (e.g. tcp://localhost:2375) | No | |
56 | | `DOCKER_HOST` | Address of the Docker daemon (e.g. tcp://localhost:2375). `DOCKER_ADDRESS` takes priority. | No | |
57 |
58 | ### Inputs
59 | | Input | Description | Required? | Default |
60 | |---|---|---|---|
61 | | `pcc_console_url` | URL of your Prisma Cloud Compute Console | Yes | |
62 | | `pcc_user` | Username of a user with the CI user role | Yes | |
63 | | `pcc_pass` | Password of a user with the CI user role | Yes | |
64 | | `image_name` | Name (or ID) of the image to be scanned | Yes | |
65 | | `project` | Tenant project context for the command | No | |
66 | | `results_file` | File to which scan results are written in JSON | No | `pcc_scan_results.json` |
67 | | `sarif_file` | File to which scan results are written in SARIF | No | `pcc_scan_results.sarif.json` |
68 | | `docker_address` | Address of the Docker daemon (e.g. tcp://localhost:2375) | No | |
69 | | `docker_tlscacert` | Path to the Docker CA certificate | No | |
70 | | `docker_tlscert` | Path to the Docker client certificate | No | |
71 | | `docker_tlskey` | Path to the Docker client private key | No | |
72 | | `twistcli_debug` | Activate the debug flag for prisma cli (by default deactivated) | No | |
73 | | `twistcli_publish` | Publish the results to Prisma Cloud. Default is true. | No | |
74 |
75 | ### Outputs
76 | | Output | Description |
77 | |---|---|
78 | | `results_file` | File to which scan results are written in JSON |
79 | | `sarif_file` | File to which scan results are written in SARIF |
80 |
81 | ## Control alerting and fail thresholds
82 | You can set the level for alerting and failing builds in the Prisma Cloud UI. For example, setting the alert threshold to Medium will not alert for Low severity vulnerabilities.
83 |
84 |
85 |
86 | ## Results output
87 | The table of discovered vulnerabilities and compliance violations shows up in the GitHub workflow log and in the Prisma Cloud Console in the Monitor section. If you [upload the outputted SARIF file to GitHub](https://docs.github.com/en/code-security/secure-coding/integrating-with-code-scanning/uploading-a-sarif-file-to-github), you will also populate the code scanning alerts section in your repository. While the code-scan-to-image-scan mapping isn't perfect, it does provide all available information of each vulnerability and compliance issue. The alerts will automatically close once the issues are fixed and the workflow is ran again.
88 |
89 | ### GitHub workflow log
90 |
91 |
92 | ### Prisma Cloud Console view
93 |
94 |
95 | ### GitHub code scanning alerts
96 |
97 |
98 | ## Support
99 | Please read [SUPPORT.md](SUPPORT.md) for details on how to get support for this project.
100 |
--------------------------------------------------------------------------------
/SUPPORT.md:
--------------------------------------------------------------------------------
1 | Community Supported
2 |
3 | The software and templates in the repo are released under an as-is, best effort,
4 | support policy. This software should be seen as community supported and Palo
5 | Alto Networks will contribute our expertise as and when possible. We do not
6 | provide technical support or help in using or troubleshooting the components of
7 | the project through our normal support options such as Palo Alto Networks
8 | support teams, or ASC (Authorized Support Centers) partners and backline support
9 | options. The underlying product used (the VM-Series firewall) by the scripts or
10 | templates are still supported, but the support is only for the product
11 | functionality and not for help in deploying or using the template or script
12 | itself. Unless explicitly tagged, all projects or work posted in our GitHub
13 | repository (at https://github.com/PaloAltoNetworks) or sites other than our
14 | official Downloads page on https://support.paloaltonetworks.com are provided
15 | under the best effort policy.
16 |
--------------------------------------------------------------------------------
/action.yml:
--------------------------------------------------------------------------------
1 | name: Prisma Cloud Scan
2 | description: Scan container images for vulnerabilities and compliance issues
3 | branding:
4 | color: orange
5 | icon: search
6 | inputs:
7 | pcc_console_url:
8 | description: URL of your Prisma Cloud Compute Console
9 | required: true
10 | pcc_user:
11 | description: Username of a user with the CI user role
12 | required: true
13 | pcc_pass:
14 | description: Password of a user with the CI user role
15 | required: true
16 | image_name:
17 | description: Name (or ID) of the image to be scanned
18 | required: true
19 | project:
20 | description: Tenant project context for the command
21 | required: false
22 | containerized:
23 | description: Run the scan from inside a running container (must be 'true', 'yes', 'y', or '1')
24 | required: false
25 | results_file:
26 | description: File to which scan results are written
27 | required: false
28 | default: pcc_scan_results.json
29 | sarif_file:
30 | description: File to which scan results are written in SARIF
31 | required: false
32 | default: pcc_scan_results.sarif.json
33 | docker_address:
34 | description: Address of the Docker daemon
35 | required: false
36 | docker_tlscacert:
37 | description: Path to the Docker CA certificate
38 | required: false
39 | docker_tlscert:
40 | description: Path to the Docker client certificate
41 | required: false
42 | docker_tlskey:
43 | description: Path to the Docker client private key
44 | required: false
45 | twistcli_debug:
46 | description: Activate the twistlock debug mode
47 | required: false
48 | twistcli_publish:
49 | description: Publish the results to Prisma Cloud
50 | default: true
51 | required: false
52 | type: boolean
53 | outputs:
54 | results_file:
55 | description: File containing scan results
56 | sarif_file:
57 | description: File containing scan results in SARIF
58 | runs:
59 | using: node20
60 | main: dist/index.js
61 |
--------------------------------------------------------------------------------
/dist/licenses.txt:
--------------------------------------------------------------------------------
1 | @actions/core
2 | MIT
3 | The MIT License (MIT)
4 |
5 | Copyright 2019 GitHub
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8 |
9 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10 |
11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12 |
13 | @actions/exec
14 | MIT
15 | The MIT License (MIT)
16 |
17 | Copyright 2019 GitHub
18 |
19 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
20 |
21 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
22 |
23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 |
25 | @actions/http-client
26 | MIT
27 | Actions Http Client for Node.js
28 |
29 | Copyright (c) GitHub, Inc.
30 |
31 | All rights reserved.
32 |
33 | MIT License
34 |
35 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
36 | associated documentation files (the "Software"), to deal in the Software without restriction,
37 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
38 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
39 | subject to the following conditions:
40 |
41 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
42 |
43 | THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
44 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
45 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
46 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
47 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
48 |
49 |
50 | @actions/io
51 | MIT
52 | The MIT License (MIT)
53 |
54 | Copyright 2019 GitHub
55 |
56 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
57 |
58 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
59 |
60 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
61 |
62 | @actions/tool-cache
63 | MIT
64 | The MIT License (MIT)
65 |
66 | Copyright 2019 GitHub
67 |
68 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
69 |
70 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
71 |
72 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
73 |
74 | agent-base
75 | MIT
76 | (The MIT License)
77 |
78 | Copyright (c) 2013 Nathan Rajlich
79 |
80 | Permission is hereby granted, free of charge, to any person obtaining
81 | a copy of this software and associated documentation files (the
82 | 'Software'), to deal in the Software without restriction, including
83 | without limitation the rights to use, copy, modify, merge, publish,
84 | distribute, sublicense, and/or sell copies of the Software, and to
85 | permit persons to whom the Software is furnished to do so, subject to
86 | the following conditions:
87 |
88 | The above copyright notice and this permission notice shall be
89 | included in all copies or substantial portions of the Software.
90 |
91 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
92 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
93 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
94 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
95 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
96 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
97 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
98 |
99 | asynckit
100 | MIT
101 | The MIT License (MIT)
102 |
103 | Copyright (c) 2016 Alex Indigo
104 |
105 | Permission is hereby granted, free of charge, to any person obtaining a copy
106 | of this software and associated documentation files (the "Software"), to deal
107 | in the Software without restriction, including without limitation the rights
108 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
109 | copies of the Software, and to permit persons to whom the Software is
110 | furnished to do so, subject to the following conditions:
111 |
112 | The above copyright notice and this permission notice shall be included in all
113 | copies or substantial portions of the Software.
114 |
115 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
116 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
117 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
118 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
119 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
120 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
121 | SOFTWARE.
122 |
123 |
124 | axios
125 | MIT
126 | # Copyright (c) 2014-present Matt Zabriskie & Collaborators
127 |
128 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
129 |
130 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
131 |
132 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
133 |
134 |
135 | combined-stream
136 | MIT
137 | Copyright (c) 2011 Debuggable Limited
138 |
139 | Permission is hereby granted, free of charge, to any person obtaining a copy
140 | of this software and associated documentation files (the "Software"), to deal
141 | in the Software without restriction, including without limitation the rights
142 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
143 | copies of the Software, and to permit persons to whom the Software is
144 | furnished to do so, subject to the following conditions:
145 |
146 | The above copyright notice and this permission notice shall be included in
147 | all copies or substantial portions of the Software.
148 |
149 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
150 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
151 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
152 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
153 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
154 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
155 | THE SOFTWARE.
156 |
157 |
158 | debug
159 | MIT
160 | (The MIT License)
161 |
162 | Copyright (c) 2014-2017 TJ Holowaychuk
163 | Copyright (c) 2018-2021 Josh Junon
164 |
165 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software
166 | and associated documentation files (the 'Software'), to deal in the Software without restriction,
167 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
168 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
169 | subject to the following conditions:
170 |
171 | The above copyright notice and this permission notice shall be included in all copies or substantial
172 | portions of the Software.
173 |
174 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
175 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
176 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
177 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
178 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
179 |
180 |
181 |
182 | delayed-stream
183 | MIT
184 | Copyright (c) 2011 Debuggable Limited
185 |
186 | Permission is hereby granted, free of charge, to any person obtaining a copy
187 | of this software and associated documentation files (the "Software"), to deal
188 | in the Software without restriction, including without limitation the rights
189 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
190 | copies of the Software, and to permit persons to whom the Software is
191 | furnished to do so, subject to the following conditions:
192 |
193 | The above copyright notice and this permission notice shall be included in
194 | all copies or substantial portions of the Software.
195 |
196 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
197 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
198 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
199 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
200 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
201 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
202 | THE SOFTWARE.
203 |
204 |
205 | follow-redirects
206 | MIT
207 | Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh
208 |
209 | Permission is hereby granted, free of charge, to any person obtaining a copy of
210 | this software and associated documentation files (the "Software"), to deal in
211 | the Software without restriction, including without limitation the rights to
212 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
213 | of the Software, and to permit persons to whom the Software is furnished to do
214 | so, subject to the following conditions:
215 |
216 | The above copyright notice and this permission notice shall be included in all
217 | copies or substantial portions of the Software.
218 |
219 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
220 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
221 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
222 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
223 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
224 | IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
225 |
226 |
227 | form-data
228 | MIT
229 | Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
230 |
231 | Permission is hereby granted, free of charge, to any person obtaining a copy
232 | of this software and associated documentation files (the "Software"), to deal
233 | in the Software without restriction, including without limitation the rights
234 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
235 | copies of the Software, and to permit persons to whom the Software is
236 | furnished to do so, subject to the following conditions:
237 |
238 | The above copyright notice and this permission notice shall be included in
239 | all copies or substantial portions of the Software.
240 |
241 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
242 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
243 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
244 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
245 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
246 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
247 | THE SOFTWARE.
248 |
249 |
250 | has-flag
251 | MIT
252 | MIT License
253 |
254 | Copyright (c) Sindre Sorhus (sindresorhus.com)
255 |
256 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
257 |
258 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
259 |
260 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
261 |
262 |
263 | https-proxy-agent
264 | MIT
265 | (The MIT License)
266 |
267 | Copyright (c) 2013 Nathan Rajlich
268 |
269 | Permission is hereby granted, free of charge, to any person obtaining
270 | a copy of this software and associated documentation files (the
271 | 'Software'), to deal in the Software without restriction, including
272 | without limitation the rights to use, copy, modify, merge, publish,
273 | distribute, sublicense, and/or sell copies of the Software, and to
274 | permit persons to whom the Software is furnished to do so, subject to
275 | the following conditions:
276 |
277 | The above copyright notice and this permission notice shall be
278 | included in all copies or substantial portions of the Software.
279 |
280 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
281 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
282 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
283 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
284 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
285 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
286 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
287 |
288 | mime-db
289 | MIT
290 | (The MIT License)
291 |
292 | Copyright (c) 2014 Jonathan Ong
293 | Copyright (c) 2015-2022 Douglas Christopher Wilson
294 |
295 | Permission is hereby granted, free of charge, to any person obtaining
296 | a copy of this software and associated documentation files (the
297 | 'Software'), to deal in the Software without restriction, including
298 | without limitation the rights to use, copy, modify, merge, publish,
299 | distribute, sublicense, and/or sell copies of the Software, and to
300 | permit persons to whom the Software is furnished to do so, subject to
301 | the following conditions:
302 |
303 | The above copyright notice and this permission notice shall be
304 | included in all copies or substantial portions of the Software.
305 |
306 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
307 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
308 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
309 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
310 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
311 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
312 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
313 |
314 |
315 | mime-types
316 | MIT
317 | (The MIT License)
318 |
319 | Copyright (c) 2014 Jonathan Ong
320 | Copyright (c) 2015 Douglas Christopher Wilson
321 |
322 | Permission is hereby granted, free of charge, to any person obtaining
323 | a copy of this software and associated documentation files (the
324 | 'Software'), to deal in the Software without restriction, including
325 | without limitation the rights to use, copy, modify, merge, publish,
326 | distribute, sublicense, and/or sell copies of the Software, and to
327 | permit persons to whom the Software is furnished to do so, subject to
328 | the following conditions:
329 |
330 | The above copyright notice and this permission notice shall be
331 | included in all copies or substantial portions of the Software.
332 |
333 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
334 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
335 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
336 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
337 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
338 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
339 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
340 |
341 |
342 | ms
343 | MIT
344 | The MIT License (MIT)
345 |
346 | Copyright (c) 2016 Zeit, Inc.
347 |
348 | Permission is hereby granted, free of charge, to any person obtaining a copy
349 | of this software and associated documentation files (the "Software"), to deal
350 | in the Software without restriction, including without limitation the rights
351 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
352 | copies of the Software, and to permit persons to whom the Software is
353 | furnished to do so, subject to the following conditions:
354 |
355 | The above copyright notice and this permission notice shall be included in all
356 | copies or substantial portions of the Software.
357 |
358 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
359 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
360 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
361 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
362 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
363 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
364 | SOFTWARE.
365 |
366 |
367 | proxy-from-env
368 | MIT
369 | The MIT License
370 |
371 | Copyright (C) 2016-2018 Rob Wu
372 |
373 | Permission is hereby granted, free of charge, to any person obtaining a copy of
374 | this software and associated documentation files (the "Software"), to deal in
375 | the Software without restriction, including without limitation the rights to
376 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
377 | of the Software, and to permit persons to whom the Software is furnished to do
378 | so, subject to the following conditions:
379 |
380 | The above copyright notice and this permission notice shall be included in all
381 | copies or substantial portions of the Software.
382 |
383 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
384 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
385 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
386 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
387 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
388 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
389 |
390 |
391 | semver
392 | ISC
393 | The ISC License
394 |
395 | Copyright (c) Isaac Z. Schlueter and Contributors
396 |
397 | Permission to use, copy, modify, and/or distribute this software for any
398 | purpose with or without fee is hereby granted, provided that the above
399 | copyright notice and this permission notice appear in all copies.
400 |
401 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
402 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
403 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
404 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
405 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
406 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
407 | IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
408 |
409 |
410 | supports-color
411 | MIT
412 | MIT License
413 |
414 | Copyright (c) Sindre Sorhus (sindresorhus.com)
415 |
416 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
417 |
418 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
419 |
420 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
421 |
422 |
423 | tunnel
424 | MIT
425 | The MIT License (MIT)
426 |
427 | Copyright (c) 2012 Koichi Kobayashi
428 |
429 | Permission is hereby granted, free of charge, to any person obtaining a copy
430 | of this software and associated documentation files (the "Software"), to deal
431 | in the Software without restriction, including without limitation the rights
432 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
433 | copies of the Software, and to permit persons to whom the Software is
434 | furnished to do so, subject to the following conditions:
435 |
436 | The above copyright notice and this permission notice shall be included in
437 | all copies or substantial portions of the Software.
438 |
439 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
440 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
441 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
442 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
443 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
444 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
445 | THE SOFTWARE.
446 |
447 |
448 | uuid
449 | MIT
450 | The MIT License (MIT)
451 |
452 | Copyright (c) 2010-2020 Robert Kieffer and other contributors
453 |
454 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
455 |
456 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
457 |
458 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
459 |
--------------------------------------------------------------------------------
/images/pc_ci_rule_example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PaloAltoNetworks/prisma-cloud-scan/bce542ade03e1aa0ef0abbe8dcc6b86d8668cbf1/images/pc_ci_rule_example.png
--------------------------------------------------------------------------------
/images/pc_github_code_scanning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PaloAltoNetworks/prisma-cloud-scan/bce542ade03e1aa0ef0abbe8dcc6b86d8668cbf1/images/pc_github_code_scanning.png
--------------------------------------------------------------------------------
/images/pc_github_log_output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PaloAltoNetworks/prisma-cloud-scan/bce542ade03e1aa0ef0abbe8dcc6b86d8668cbf1/images/pc_github_log_output.png
--------------------------------------------------------------------------------
/images/pc_ui_result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PaloAltoNetworks/prisma-cloud-scan/bce542ade03e1aa0ef0abbe8dcc6b86d8668cbf1/images/pc_ui_result.png
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | const axios = require('axios');
3 | const core = require('@actions/core');
4 | const { exec } = require('@actions/exec');
5 | const tc = require('@actions/tool-cache');
6 | const os = require('os');
7 | const { HttpsProxyAgent } = require('https-proxy-agent');
8 |
9 | const TRUE_VALUES = ['true', 'yes', 'y', '1'];
10 |
11 | function toSentenceCase(string) {
12 | return string[0].toUpperCase() + string.slice(1).toLowerCase();
13 | }
14 |
15 | // https://github.com/nodejs/node/issues/18288#issuecomment-475864601
16 | // Necessary for Console URLs that already have a path (all SaaS Consoles)
17 | function joinUrlPath(...parts) {
18 | // Filter handles cases where Console URL pathname is '/' in order to avoid '//api/v1/etc/' (double slash)
19 | return '/' + parts.filter(part => part !== '/').map(part => part.replace(/(^\/|\/$)/g, '')).join('/');
20 | }
21 |
22 | // Wrapper around 'authenticate' Console API endpoint
23 | async function authenticate(url, user, pass, httpProxy) {
24 | let parsedUrl;
25 | try {
26 | parsedUrl = new URL(url);
27 | } catch (err) {
28 | console.log(`Invalid Console address: ${url}`);
29 | process.exit(1);
30 | }
31 | const endpoint = '/api/v1/authenticate';
32 | parsedUrl.pathname = joinUrlPath(parsedUrl.pathname, endpoint);
33 |
34 | try {
35 | const res = await axios({
36 | method: 'post',
37 | url: parsedUrl.toString(),
38 | headers: {
39 | 'Content-Type': 'application/json',
40 | },
41 | proxy: false,
42 | httpsAgent: new HttpsProxyAgent(httpProxy),
43 | data: {
44 | username: user,
45 | password: pass,
46 | },
47 | });
48 | return res.data.token;
49 | } catch (err) {
50 | core.setFailed(`Failed getting authentication token: ${err.message}`);
51 | process.exit(1);
52 | }
53 | }
54 |
55 | // Wrapper around 'version' Console API endpoint
56 | async function getVersion(url, token, httpProxy) {
57 | let parsedUrl;
58 | try {
59 | parsedUrl = new URL(url);
60 | } catch (err) {
61 | console.log(`Invalid Console address: ${url}`);
62 | process.exit(1);
63 | }
64 | const endpoint = '/api/v1/version';
65 | parsedUrl.pathname = joinUrlPath(parsedUrl.pathname, endpoint);
66 |
67 | try {
68 | const res = await axios({
69 | method: 'get',
70 | url: parsedUrl.toString(),
71 | headers: {
72 | 'Authorization': `Bearer ${token}`,
73 | },
74 | proxy: false,
75 | httpsAgent: new HttpsProxyAgent(httpProxy)
76 | });
77 | return res.data;
78 | } catch (err) {
79 | core.setFailed(`Failed getting version: ${err.message}`);
80 | process.exit(1);
81 | }
82 | }
83 |
84 | // GitHub Action-specific wrapper around 'util/twistcli' Console API endpoint
85 | // Saves twistcli using GitHub Action's tool-cache library
86 | async function getTwistcli(version, url, authToken, platform, architecture) {
87 | let parsedUrl;
88 | try {
89 | parsedUrl = new URL(url);
90 | } catch (err) {
91 | console.log(`Invalid Console address: ${url}`);
92 | process.exit(1);
93 | }
94 | let endpointPrefix = '';
95 | let endpointValue = 'twistcli';
96 |
97 | if(platform === 'win32') {
98 | endpointPrefix = 'windows/';
99 | endpointValue = 'twistcli.exe';
100 | } else if(platform === 'darwin') {
101 | endpointPrefix = 'osx/';
102 | if (architecture === 'arm64') endpointPrefix += 'arm64/';
103 | } else if(platform === 'linux') {
104 | if (architecture === 'arm64') endpointPrefix += 'arm64/';
105 | }
106 |
107 | parsedUrl.pathname = joinUrlPath(parsedUrl.pathname, '/api/v1/util/' + endpointPrefix + endpointValue);
108 |
109 | let twistcli = tc.find('twistcli', version);
110 | if (!twistcli) {
111 | const twistcliPath = await tc.downloadTool(parsedUrl.toString(), undefined, `Bearer ${authToken}`);
112 | if (platform !== 'win32') await exec(`chmod a+x ${twistcliPath}`);
113 | twistcli = await tc.cacheFile(twistcliPath, endpointValue, 'twistcli', version);
114 | }
115 | core.addPath(twistcli);
116 |
117 | return endpointValue;
118 | }
119 |
120 | function formatSarifToolDriverRules(results) {
121 | // Only 1 image can be scanned at a time
122 | const result = results[0];
123 | const vulnerabilities = result.vulnerabilities;
124 | const compliances = result.compliances;
125 |
126 | const vulnerabilitiesFiltered = (vulnerabilities || []).filter(
127 | (thing, index, self) =>
128 | index ===
129 | self.findIndex((t) => t.id === thing.id )
130 | );
131 |
132 |
133 | let vulns = [];
134 | if (vulnerabilitiesFiltered) {
135 | vulns = vulnerabilitiesFiltered.map(vuln => {
136 | return {
137 | id: `${vuln.id}`,
138 | shortDescription: {
139 | text: `[Prisma Cloud] ${vuln.id} in ${vuln.packageName} (${vuln.severity})`,
140 | },
141 | fullDescription: {
142 | text: `${toSentenceCase(vuln.severity)} severity ${vuln.id} found in ${vuln.packageName} version ${vuln.packageVersion}`,
143 | },
144 | help: {
145 | text: '',
146 | markdown: '| CVE | Severity | CVSS | Package | Version | Fix Status | Published | Discovered |\n' +
147 | '| --- | --- | --- | --- | --- | --- | --- | --- |\n' +
148 | '| [' + vuln.id + '](' + vuln.link + ') | ' + vuln.severity + ' | ' + (vuln.cvss || 'N/A') + ' | ' + vuln.packageName + ' | ' + vuln.packageVersion + ' | ' + (vuln.status || 'not fixed') + ' | ' + vuln.publishedDate + ' | ' + vuln.discoveredDate + ' |',
149 | },
150 | };
151 | });
152 | }
153 |
154 | let comps = [];
155 | if (compliances) {
156 | comps = compliances.map(comp => {
157 | return {
158 | id: `${comp.id}`,
159 | shortDescription: {
160 | text: `[Prisma Cloud] Compliance check ${comp.id} violated (${comp.severity})`,
161 | },
162 | fullDescription: {
163 | text: `${toSentenceCase(comp.severity)} severity compliance check "${comp.title}" violated`,
164 | },
165 | help: {
166 | text: '',
167 | markdown: '| Compliance Check | Severity | Title |\n' +
168 | '| --- | --- | --- |\n' +
169 | '| ' + comp.id + ' | ' + comp.severity + ' | ' + comp.title + ' |',
170 | },
171 | };
172 | });
173 | }
174 |
175 | return [...vulns, ...comps];
176 | }
177 |
178 | /**
179 | * convert prima severity to github severity
180 | * @param {string} severity
181 | * @throws {Error} unknown severity
182 | * @returns string
183 | */
184 | function convertPrismaSeverity(severity) {
185 | // prisma: critical, high, important, medium, moderate, unimportant, low
186 | // gh: error, warning, note, none
187 | switch (severity) {
188 | case "critical":
189 | return "error";
190 | case "high":
191 | return "warning";
192 | case "important":
193 | return "warning";
194 | case "medium":
195 | return "note";
196 | case "moderate":
197 | return "note";
198 | case "low":
199 | return "none";
200 | case "unimportant":
201 | case "negligible":
202 | case "unreviewed":
203 | case "unassigned":
204 | return "none";
205 | default:
206 | throw new Error(`Unknown severity: ${severity}`);
207 | }
208 | }
209 |
210 |
211 | function formatSarifResults(results) {
212 | // Only 1 image can be scanned at a time
213 | const result = results[0];
214 | const imageName = result.name;
215 | let findings = [];
216 | if (result.vulnerabilities) {
217 | findings = [...findings, ...result.vulnerabilities];
218 | }
219 | if (result.compliances) {
220 | findings = [...findings, ...result.compliances];
221 | }
222 |
223 | if (findings) {
224 | return findings.map(finding => {
225 | return {
226 | ruleId: `${finding.id}`,
227 | level: `${convertPrismaSeverity(finding.severity)}`,
228 | message: {
229 | text: `Description:\n${finding.description}`,
230 | },
231 | locations: [{
232 | physicalLocation: {
233 | artifactLocation: {
234 | uri: `${imageName}`,
235 | },
236 | region: {
237 | startLine: 1,
238 | startColumn: 1,
239 | endLine: 1,
240 | endColumn: 1,
241 | },
242 | },
243 | }],
244 | };
245 | });
246 | }
247 |
248 | return [];
249 | }
250 |
251 | function formatSarif(twistcliVersion, resultsFile) {
252 | try {
253 | const scan = JSON.parse(fs.readFileSync(resultsFile, 'utf8'));
254 | const sarif = {
255 | $schema: 'https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json',
256 | version: '2.1.0',
257 | runs: [{
258 | tool: {
259 | driver: {
260 | name: 'Prisma Cloud (twistcli)',
261 | version: `${twistcliVersion}`,
262 | rules: formatSarifToolDriverRules(scan.results),
263 | },
264 | },
265 | results: formatSarifResults(scan.results),
266 | }],
267 | };
268 | return sarif;
269 | } catch (err) {
270 | core.setFailed(`Failed formatting SARIF: ${err.message}`);
271 | process.exit(1);
272 | }
273 | }
274 |
275 | async function scan() {
276 | const httpProxy = process.env.https_proxy || process.env.HTTPS_PROXY || process.env.http_proxy || process.env.HTTP_PROXY;
277 | const consoleUrl = core.getInput('pcc_console_url');
278 | const username = core.getInput('pcc_user');
279 | const password = core.getInput('pcc_pass');
280 | const imageName = core.getInput('image_name');
281 | const containerized = core.getInput('containerized').toLowerCase();
282 | const dockerAddress = core.getInput('docker_address') || process.env.DOCKER_ADDRESS || process.env.DOCKER_HOST;
283 | const dockerTlsCaCert = core.getInput('docker_tlscacert');
284 | const dockerTlsCert = core.getInput('docker_tlscert');
285 | const dockerTlsKey = core.getInput('docker_tlskey');
286 | const project = core.getInput('project');
287 | const twistcli_debug = core.getInput('twistcli_debug');
288 | const twistcli_publish = core.getInput('twistcli_publish');
289 | const resultsFile = core.getInput('results_file');
290 | const sarifFile = core.getInput('sarif_file');
291 |
292 | try {
293 | let token;
294 | try {
295 | token = await authenticate(consoleUrl, username, password, httpProxy);
296 | } catch (err) {
297 | core.setFailed(`Failed authenticating: ${err.message}`);
298 | process.exit(1);
299 | }
300 |
301 | let twistcliVersion;
302 | try {
303 | twistcliVersion = await getVersion(consoleUrl, token, httpProxy);
304 | } catch (err) {
305 | core.setFailed(`Failed getting version: ${err.message}`);
306 | process.exit(1);
307 | }
308 | twistcliVersion = twistcliVersion.replace(/"/g, '');
309 |
310 | let twistcliCmd = await getTwistcli(twistcliVersion, consoleUrl, token, os.platform(), os.arch());
311 | twistcliCmd = [twistcliCmd];
312 | if (httpProxy) {
313 | twistcliCmd = twistcliCmd.concat([`--http-proxy ${httpProxy}`]);
314 | }
315 | if (TRUE_VALUES.includes(twistcli_debug)) {
316 | twistcliCmd = twistcliCmd.concat(['--debug']);
317 | }
318 | twistcliCmd = twistcliCmd.concat([
319 | 'images', 'scan',
320 | `--address ${consoleUrl}`,
321 | `--user ${username}`, `--password ${password}`,
322 | `--output-file ${resultsFile}`,
323 | '--details',
324 | ]);
325 | if (dockerAddress) {
326 | twistcliCmd = twistcliCmd.concat([`--docker-address ${dockerAddress}`]);
327 | }
328 | if (dockerTlsCaCert) {
329 | twistcliCmd = twistcliCmd.concat([`--docker-tlscacert ${dockerTlsCaCert}`]);
330 | }
331 | if (dockerTlsCert) {
332 | twistcliCmd = twistcliCmd.concat([`--docker-tlscert ${dockerTlsCert}`]);
333 | }
334 | if (dockerTlsKey) {
335 | twistcliCmd = twistcliCmd.concat([`--docker-tlskey ${dockerTlsKey}`]);
336 | }
337 | if (project) {
338 | twistcliCmd = twistcliCmd.concat([`--project ${project}`]);
339 | }
340 | if (TRUE_VALUES.includes(containerized)) {
341 | twistcliCmd = twistcliCmd.concat(['--containerized']);
342 | }
343 | if (twistcli_publish) {
344 | twistcliCmd = twistcliCmd.concat([`--publish=${twistcli_publish}`]);
345 | }
346 |
347 | twistcliCmd = twistcliCmd.concat([imageName]);
348 | const exitCode = await exec(twistcliCmd.join(' '), undefined, {
349 | ignoreReturnCode: true,
350 | });
351 | if (exitCode > 0) {
352 | core.setFailed('Image scan failed');
353 | }
354 |
355 | fs.writeFileSync(sarifFile, JSON.stringify(formatSarif(twistcliVersion, resultsFile)));
356 |
357 | core.setOutput('results_file', resultsFile);
358 | core.setOutput('sarif_file', sarifFile);
359 | } catch (err) {
360 | core.setFailed(`Image scan failed: ${err.message}`);
361 | process.exit(1);
362 | }
363 | }
364 |
365 | if (require.main === module) {
366 | scan().catch((err) => core.setFailed(err.message));
367 | }
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "prisma-cloud-scan",
3 | "lockfileVersion": 2,
4 | "requires": true,
5 | "packages": {
6 | "": {
7 | "name": "prisma-cloud-scan",
8 | "license": "Apache-2.0",
9 | "dependencies": {
10 | "@actions/core": "^1.10.0",
11 | "@actions/exec": "^1.1.1",
12 | "@actions/tool-cache": "^2.0.1",
13 | "axios": "^1.1.3",
14 | "https-proxy-agent": "^7.0.5"
15 | },
16 | "devDependencies": {
17 | "@vercel/ncc": "^0.34.0",
18 | "eslint": "^8.26.0"
19 | }
20 | },
21 | "node_modules/@actions/core": {
22 | "version": "1.10.0",
23 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz",
24 | "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==",
25 | "dependencies": {
26 | "@actions/http-client": "^2.0.1",
27 | "uuid": "^8.3.2"
28 | }
29 | },
30 | "node_modules/@actions/core/node_modules/uuid": {
31 | "version": "8.3.2",
32 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
33 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
34 | "bin": {
35 | "uuid": "dist/bin/uuid"
36 | }
37 | },
38 | "node_modules/@actions/exec": {
39 | "version": "1.1.1",
40 | "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.1.1.tgz",
41 | "integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==",
42 | "dependencies": {
43 | "@actions/io": "^1.0.1"
44 | }
45 | },
46 | "node_modules/@actions/http-client": {
47 | "version": "2.0.1",
48 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz",
49 | "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==",
50 | "dependencies": {
51 | "tunnel": "^0.0.6"
52 | }
53 | },
54 | "node_modules/@actions/io": {
55 | "version": "1.1.2",
56 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.2.tgz",
57 | "integrity": "sha512-d+RwPlMp+2qmBfeLYPLXuSRykDIFEwdTA0MMxzS9kh4kvP1ftrc/9fzy6pX6qAjthdXruHQ6/6kjT/DNo5ALuw=="
58 | },
59 | "node_modules/@actions/tool-cache": {
60 | "version": "2.0.1",
61 | "resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-2.0.1.tgz",
62 | "integrity": "sha512-iPU+mNwrbA8jodY8eyo/0S/QqCKDajiR8OxWTnSk/SnYg0sj8Hp4QcUEVC1YFpHWXtrfbQrE13Jz4k4HXJQKcA==",
63 | "dependencies": {
64 | "@actions/core": "^1.2.6",
65 | "@actions/exec": "^1.0.0",
66 | "@actions/http-client": "^2.0.1",
67 | "@actions/io": "^1.1.1",
68 | "semver": "^6.1.0",
69 | "uuid": "^3.3.2"
70 | }
71 | },
72 | "node_modules/@eslint/eslintrc": {
73 | "version": "1.3.3",
74 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
75 | "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
76 | "dev": true,
77 | "dependencies": {
78 | "ajv": "^6.12.4",
79 | "debug": "^4.3.2",
80 | "espree": "^9.4.0",
81 | "globals": "^13.15.0",
82 | "ignore": "^5.2.0",
83 | "import-fresh": "^3.2.1",
84 | "js-yaml": "^4.1.0",
85 | "minimatch": "^3.1.2",
86 | "strip-json-comments": "^3.1.1"
87 | },
88 | "engines": {
89 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
90 | },
91 | "funding": {
92 | "url": "https://opencollective.com/eslint"
93 | }
94 | },
95 | "node_modules/@humanwhocodes/config-array": {
96 | "version": "0.11.7",
97 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz",
98 | "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==",
99 | "dev": true,
100 | "dependencies": {
101 | "@humanwhocodes/object-schema": "^1.2.1",
102 | "debug": "^4.1.1",
103 | "minimatch": "^3.0.5"
104 | },
105 | "engines": {
106 | "node": ">=10.10.0"
107 | }
108 | },
109 | "node_modules/@humanwhocodes/module-importer": {
110 | "version": "1.0.1",
111 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
112 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
113 | "dev": true,
114 | "engines": {
115 | "node": ">=12.22"
116 | },
117 | "funding": {
118 | "type": "github",
119 | "url": "https://github.com/sponsors/nzakas"
120 | }
121 | },
122 | "node_modules/@humanwhocodes/object-schema": {
123 | "version": "1.2.1",
124 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
125 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
126 | "dev": true
127 | },
128 | "node_modules/@nodelib/fs.scandir": {
129 | "version": "2.1.5",
130 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
131 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
132 | "dev": true,
133 | "dependencies": {
134 | "@nodelib/fs.stat": "2.0.5",
135 | "run-parallel": "^1.1.9"
136 | },
137 | "engines": {
138 | "node": ">= 8"
139 | }
140 | },
141 | "node_modules/@nodelib/fs.stat": {
142 | "version": "2.0.5",
143 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
144 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
145 | "dev": true,
146 | "engines": {
147 | "node": ">= 8"
148 | }
149 | },
150 | "node_modules/@nodelib/fs.walk": {
151 | "version": "1.2.8",
152 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
153 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
154 | "dev": true,
155 | "dependencies": {
156 | "@nodelib/fs.scandir": "2.1.5",
157 | "fastq": "^1.6.0"
158 | },
159 | "engines": {
160 | "node": ">= 8"
161 | }
162 | },
163 | "node_modules/@vercel/ncc": {
164 | "version": "0.34.0",
165 | "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.34.0.tgz",
166 | "integrity": "sha512-G9h5ZLBJ/V57Ou9vz5hI8pda/YQX5HQszCs3AmIus3XzsmRn/0Ptic5otD3xVST8QLKk7AMk7AqpsyQGN7MZ9A==",
167 | "dev": true,
168 | "bin": {
169 | "ncc": "dist/ncc/cli.js"
170 | }
171 | },
172 | "node_modules/acorn": {
173 | "version": "8.8.1",
174 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz",
175 | "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==",
176 | "dev": true,
177 | "bin": {
178 | "acorn": "bin/acorn"
179 | },
180 | "engines": {
181 | "node": ">=0.4.0"
182 | }
183 | },
184 | "node_modules/acorn-jsx": {
185 | "version": "5.3.2",
186 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
187 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
188 | "dev": true,
189 | "peerDependencies": {
190 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
191 | }
192 | },
193 | "node_modules/agent-base": {
194 | "version": "7.1.1",
195 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz",
196 | "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==",
197 | "license": "MIT",
198 | "dependencies": {
199 | "debug": "^4.3.4"
200 | },
201 | "engines": {
202 | "node": ">= 14"
203 | }
204 | },
205 | "node_modules/ajv": {
206 | "version": "6.12.6",
207 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
208 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
209 | "dev": true,
210 | "dependencies": {
211 | "fast-deep-equal": "^3.1.1",
212 | "fast-json-stable-stringify": "^2.0.0",
213 | "json-schema-traverse": "^0.4.1",
214 | "uri-js": "^4.2.2"
215 | },
216 | "funding": {
217 | "type": "github",
218 | "url": "https://github.com/sponsors/epoberezkin"
219 | }
220 | },
221 | "node_modules/ansi-regex": {
222 | "version": "5.0.1",
223 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
224 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
225 | "dev": true,
226 | "engines": {
227 | "node": ">=8"
228 | }
229 | },
230 | "node_modules/ansi-styles": {
231 | "version": "4.3.0",
232 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
233 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
234 | "dev": true,
235 | "dependencies": {
236 | "color-convert": "^2.0.1"
237 | },
238 | "engines": {
239 | "node": ">=8"
240 | },
241 | "funding": {
242 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
243 | }
244 | },
245 | "node_modules/argparse": {
246 | "version": "2.0.1",
247 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
248 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
249 | "dev": true
250 | },
251 | "node_modules/asynckit": {
252 | "version": "0.4.0",
253 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
254 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
255 | },
256 | "node_modules/axios": {
257 | "version": "1.1.3",
258 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.1.3.tgz",
259 | "integrity": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==",
260 | "dependencies": {
261 | "follow-redirects": "^1.15.0",
262 | "form-data": "^4.0.0",
263 | "proxy-from-env": "^1.1.0"
264 | }
265 | },
266 | "node_modules/balanced-match": {
267 | "version": "1.0.2",
268 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
269 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
270 | "dev": true
271 | },
272 | "node_modules/brace-expansion": {
273 | "version": "1.1.11",
274 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
275 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
276 | "dev": true,
277 | "dependencies": {
278 | "balanced-match": "^1.0.0",
279 | "concat-map": "0.0.1"
280 | }
281 | },
282 | "node_modules/callsites": {
283 | "version": "3.1.0",
284 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
285 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
286 | "dev": true,
287 | "engines": {
288 | "node": ">=6"
289 | }
290 | },
291 | "node_modules/chalk": {
292 | "version": "4.1.0",
293 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
294 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
295 | "dev": true,
296 | "dependencies": {
297 | "ansi-styles": "^4.1.0",
298 | "supports-color": "^7.1.0"
299 | },
300 | "engines": {
301 | "node": ">=10"
302 | },
303 | "funding": {
304 | "url": "https://github.com/chalk/chalk?sponsor=1"
305 | }
306 | },
307 | "node_modules/color-convert": {
308 | "version": "2.0.1",
309 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
310 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
311 | "dev": true,
312 | "dependencies": {
313 | "color-name": "~1.1.4"
314 | },
315 | "engines": {
316 | "node": ">=7.0.0"
317 | }
318 | },
319 | "node_modules/color-name": {
320 | "version": "1.1.4",
321 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
322 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
323 | "dev": true
324 | },
325 | "node_modules/combined-stream": {
326 | "version": "1.0.8",
327 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
328 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
329 | "dependencies": {
330 | "delayed-stream": "~1.0.0"
331 | },
332 | "engines": {
333 | "node": ">= 0.8"
334 | }
335 | },
336 | "node_modules/concat-map": {
337 | "version": "0.0.1",
338 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
339 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
340 | "dev": true
341 | },
342 | "node_modules/cross-spawn": {
343 | "version": "7.0.3",
344 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
345 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
346 | "dev": true,
347 | "dependencies": {
348 | "path-key": "^3.1.0",
349 | "shebang-command": "^2.0.0",
350 | "which": "^2.0.1"
351 | },
352 | "engines": {
353 | "node": ">= 8"
354 | }
355 | },
356 | "node_modules/debug": {
357 | "version": "4.3.4",
358 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
359 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
360 | "dependencies": {
361 | "ms": "2.1.2"
362 | },
363 | "engines": {
364 | "node": ">=6.0"
365 | },
366 | "peerDependenciesMeta": {
367 | "supports-color": {
368 | "optional": true
369 | }
370 | }
371 | },
372 | "node_modules/deep-is": {
373 | "version": "0.1.3",
374 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
375 | "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
376 | "dev": true
377 | },
378 | "node_modules/delayed-stream": {
379 | "version": "1.0.0",
380 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
381 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
382 | "engines": {
383 | "node": ">=0.4.0"
384 | }
385 | },
386 | "node_modules/doctrine": {
387 | "version": "3.0.0",
388 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
389 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
390 | "dev": true,
391 | "dependencies": {
392 | "esutils": "^2.0.2"
393 | },
394 | "engines": {
395 | "node": ">=6.0.0"
396 | }
397 | },
398 | "node_modules/escape-string-regexp": {
399 | "version": "4.0.0",
400 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
401 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
402 | "dev": true,
403 | "engines": {
404 | "node": ">=10"
405 | },
406 | "funding": {
407 | "url": "https://github.com/sponsors/sindresorhus"
408 | }
409 | },
410 | "node_modules/eslint": {
411 | "version": "8.26.0",
412 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz",
413 | "integrity": "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==",
414 | "dev": true,
415 | "dependencies": {
416 | "@eslint/eslintrc": "^1.3.3",
417 | "@humanwhocodes/config-array": "^0.11.6",
418 | "@humanwhocodes/module-importer": "^1.0.1",
419 | "@nodelib/fs.walk": "^1.2.8",
420 | "ajv": "^6.10.0",
421 | "chalk": "^4.0.0",
422 | "cross-spawn": "^7.0.2",
423 | "debug": "^4.3.2",
424 | "doctrine": "^3.0.0",
425 | "escape-string-regexp": "^4.0.0",
426 | "eslint-scope": "^7.1.1",
427 | "eslint-utils": "^3.0.0",
428 | "eslint-visitor-keys": "^3.3.0",
429 | "espree": "^9.4.0",
430 | "esquery": "^1.4.0",
431 | "esutils": "^2.0.2",
432 | "fast-deep-equal": "^3.1.3",
433 | "file-entry-cache": "^6.0.1",
434 | "find-up": "^5.0.0",
435 | "glob-parent": "^6.0.2",
436 | "globals": "^13.15.0",
437 | "grapheme-splitter": "^1.0.4",
438 | "ignore": "^5.2.0",
439 | "import-fresh": "^3.0.0",
440 | "imurmurhash": "^0.1.4",
441 | "is-glob": "^4.0.0",
442 | "is-path-inside": "^3.0.3",
443 | "js-sdsl": "^4.1.4",
444 | "js-yaml": "^4.1.0",
445 | "json-stable-stringify-without-jsonify": "^1.0.1",
446 | "levn": "^0.4.1",
447 | "lodash.merge": "^4.6.2",
448 | "minimatch": "^3.1.2",
449 | "natural-compare": "^1.4.0",
450 | "optionator": "^0.9.1",
451 | "regexpp": "^3.2.0",
452 | "strip-ansi": "^6.0.1",
453 | "strip-json-comments": "^3.1.0",
454 | "text-table": "^0.2.0"
455 | },
456 | "bin": {
457 | "eslint": "bin/eslint.js"
458 | },
459 | "engines": {
460 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
461 | },
462 | "funding": {
463 | "url": "https://opencollective.com/eslint"
464 | }
465 | },
466 | "node_modules/eslint-scope": {
467 | "version": "7.1.1",
468 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
469 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
470 | "dev": true,
471 | "dependencies": {
472 | "esrecurse": "^4.3.0",
473 | "estraverse": "^5.2.0"
474 | },
475 | "engines": {
476 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
477 | }
478 | },
479 | "node_modules/eslint-utils": {
480 | "version": "3.0.0",
481 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
482 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
483 | "dev": true,
484 | "dependencies": {
485 | "eslint-visitor-keys": "^2.0.0"
486 | },
487 | "engines": {
488 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
489 | },
490 | "funding": {
491 | "url": "https://github.com/sponsors/mysticatea"
492 | },
493 | "peerDependencies": {
494 | "eslint": ">=5"
495 | }
496 | },
497 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
498 | "version": "2.1.0",
499 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
500 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
501 | "dev": true,
502 | "engines": {
503 | "node": ">=10"
504 | }
505 | },
506 | "node_modules/eslint-visitor-keys": {
507 | "version": "3.3.0",
508 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
509 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
510 | "dev": true,
511 | "engines": {
512 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
513 | }
514 | },
515 | "node_modules/espree": {
516 | "version": "9.4.0",
517 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz",
518 | "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==",
519 | "dev": true,
520 | "dependencies": {
521 | "acorn": "^8.8.0",
522 | "acorn-jsx": "^5.3.2",
523 | "eslint-visitor-keys": "^3.3.0"
524 | },
525 | "engines": {
526 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
527 | },
528 | "funding": {
529 | "url": "https://opencollective.com/eslint"
530 | }
531 | },
532 | "node_modules/esquery": {
533 | "version": "1.4.0",
534 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
535 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
536 | "dev": true,
537 | "dependencies": {
538 | "estraverse": "^5.1.0"
539 | },
540 | "engines": {
541 | "node": ">=0.10"
542 | }
543 | },
544 | "node_modules/esrecurse": {
545 | "version": "4.3.0",
546 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
547 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
548 | "dev": true,
549 | "dependencies": {
550 | "estraverse": "^5.2.0"
551 | },
552 | "engines": {
553 | "node": ">=4.0"
554 | }
555 | },
556 | "node_modules/estraverse": {
557 | "version": "5.3.0",
558 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
559 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
560 | "dev": true,
561 | "engines": {
562 | "node": ">=4.0"
563 | }
564 | },
565 | "node_modules/esutils": {
566 | "version": "2.0.3",
567 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
568 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
569 | "dev": true,
570 | "engines": {
571 | "node": ">=0.10.0"
572 | }
573 | },
574 | "node_modules/fast-deep-equal": {
575 | "version": "3.1.3",
576 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
577 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
578 | "dev": true
579 | },
580 | "node_modules/fast-json-stable-stringify": {
581 | "version": "2.1.0",
582 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
583 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
584 | "dev": true
585 | },
586 | "node_modules/fast-levenshtein": {
587 | "version": "2.0.6",
588 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
589 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
590 | "dev": true
591 | },
592 | "node_modules/fastq": {
593 | "version": "1.13.0",
594 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
595 | "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
596 | "dev": true,
597 | "dependencies": {
598 | "reusify": "^1.0.4"
599 | }
600 | },
601 | "node_modules/file-entry-cache": {
602 | "version": "6.0.1",
603 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
604 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
605 | "dev": true,
606 | "dependencies": {
607 | "flat-cache": "^3.0.4"
608 | },
609 | "engines": {
610 | "node": "^10.12.0 || >=12.0.0"
611 | }
612 | },
613 | "node_modules/find-up": {
614 | "version": "5.0.0",
615 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
616 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
617 | "dev": true,
618 | "dependencies": {
619 | "locate-path": "^6.0.0",
620 | "path-exists": "^4.0.0"
621 | },
622 | "engines": {
623 | "node": ">=10"
624 | },
625 | "funding": {
626 | "url": "https://github.com/sponsors/sindresorhus"
627 | }
628 | },
629 | "node_modules/flat-cache": {
630 | "version": "3.0.4",
631 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
632 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
633 | "dev": true,
634 | "dependencies": {
635 | "flatted": "^3.1.0",
636 | "rimraf": "^3.0.2"
637 | },
638 | "engines": {
639 | "node": "^10.12.0 || >=12.0.0"
640 | }
641 | },
642 | "node_modules/flatted": {
643 | "version": "3.1.1",
644 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz",
645 | "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==",
646 | "dev": true
647 | },
648 | "node_modules/follow-redirects": {
649 | "version": "1.15.2",
650 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
651 | "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==",
652 | "funding": [
653 | {
654 | "type": "individual",
655 | "url": "https://github.com/sponsors/RubenVerborgh"
656 | }
657 | ],
658 | "engines": {
659 | "node": ">=4.0"
660 | },
661 | "peerDependenciesMeta": {
662 | "debug": {
663 | "optional": true
664 | }
665 | }
666 | },
667 | "node_modules/form-data": {
668 | "version": "4.0.0",
669 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
670 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
671 | "dependencies": {
672 | "asynckit": "^0.4.0",
673 | "combined-stream": "^1.0.8",
674 | "mime-types": "^2.1.12"
675 | },
676 | "engines": {
677 | "node": ">= 6"
678 | }
679 | },
680 | "node_modules/fs.realpath": {
681 | "version": "1.0.0",
682 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
683 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
684 | "dev": true
685 | },
686 | "node_modules/glob": {
687 | "version": "7.1.6",
688 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
689 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
690 | "dev": true,
691 | "dependencies": {
692 | "fs.realpath": "^1.0.0",
693 | "inflight": "^1.0.4",
694 | "inherits": "2",
695 | "minimatch": "^3.0.4",
696 | "once": "^1.3.0",
697 | "path-is-absolute": "^1.0.0"
698 | },
699 | "engines": {
700 | "node": "*"
701 | },
702 | "funding": {
703 | "url": "https://github.com/sponsors/isaacs"
704 | }
705 | },
706 | "node_modules/glob-parent": {
707 | "version": "6.0.2",
708 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
709 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
710 | "dev": true,
711 | "dependencies": {
712 | "is-glob": "^4.0.3"
713 | },
714 | "engines": {
715 | "node": ">=10.13.0"
716 | }
717 | },
718 | "node_modules/globals": {
719 | "version": "13.17.0",
720 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
721 | "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
722 | "dev": true,
723 | "dependencies": {
724 | "type-fest": "^0.20.2"
725 | },
726 | "engines": {
727 | "node": ">=8"
728 | },
729 | "funding": {
730 | "url": "https://github.com/sponsors/sindresorhus"
731 | }
732 | },
733 | "node_modules/grapheme-splitter": {
734 | "version": "1.0.4",
735 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
736 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
737 | "dev": true
738 | },
739 | "node_modules/has-flag": {
740 | "version": "4.0.0",
741 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
742 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
743 | "dev": true,
744 | "engines": {
745 | "node": ">=8"
746 | }
747 | },
748 | "node_modules/https-proxy-agent": {
749 | "version": "7.0.5",
750 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz",
751 | "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==",
752 | "license": "MIT",
753 | "dependencies": {
754 | "agent-base": "^7.0.2",
755 | "debug": "4"
756 | },
757 | "engines": {
758 | "node": ">= 14"
759 | }
760 | },
761 | "node_modules/ignore": {
762 | "version": "5.2.0",
763 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
764 | "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
765 | "dev": true,
766 | "engines": {
767 | "node": ">= 4"
768 | }
769 | },
770 | "node_modules/import-fresh": {
771 | "version": "3.3.0",
772 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
773 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
774 | "dev": true,
775 | "dependencies": {
776 | "parent-module": "^1.0.0",
777 | "resolve-from": "^4.0.0"
778 | },
779 | "engines": {
780 | "node": ">=6"
781 | },
782 | "funding": {
783 | "url": "https://github.com/sponsors/sindresorhus"
784 | }
785 | },
786 | "node_modules/imurmurhash": {
787 | "version": "0.1.4",
788 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
789 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
790 | "dev": true,
791 | "engines": {
792 | "node": ">=0.8.19"
793 | }
794 | },
795 | "node_modules/inflight": {
796 | "version": "1.0.6",
797 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
798 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
799 | "dev": true,
800 | "dependencies": {
801 | "once": "^1.3.0",
802 | "wrappy": "1"
803 | }
804 | },
805 | "node_modules/inherits": {
806 | "version": "2.0.4",
807 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
808 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
809 | "dev": true
810 | },
811 | "node_modules/is-extglob": {
812 | "version": "2.1.1",
813 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
814 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
815 | "dev": true,
816 | "engines": {
817 | "node": ">=0.10.0"
818 | }
819 | },
820 | "node_modules/is-glob": {
821 | "version": "4.0.3",
822 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
823 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
824 | "dev": true,
825 | "dependencies": {
826 | "is-extglob": "^2.1.1"
827 | },
828 | "engines": {
829 | "node": ">=0.10.0"
830 | }
831 | },
832 | "node_modules/is-path-inside": {
833 | "version": "3.0.3",
834 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
835 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
836 | "dev": true,
837 | "engines": {
838 | "node": ">=8"
839 | }
840 | },
841 | "node_modules/isexe": {
842 | "version": "2.0.0",
843 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
844 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
845 | "dev": true
846 | },
847 | "node_modules/js-sdsl": {
848 | "version": "4.1.5",
849 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz",
850 | "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==",
851 | "dev": true
852 | },
853 | "node_modules/js-yaml": {
854 | "version": "4.1.0",
855 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
856 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
857 | "dev": true,
858 | "dependencies": {
859 | "argparse": "^2.0.1"
860 | },
861 | "bin": {
862 | "js-yaml": "bin/js-yaml.js"
863 | }
864 | },
865 | "node_modules/json-schema-traverse": {
866 | "version": "0.4.1",
867 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
868 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
869 | "dev": true
870 | },
871 | "node_modules/json-stable-stringify-without-jsonify": {
872 | "version": "1.0.1",
873 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
874 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
875 | "dev": true
876 | },
877 | "node_modules/levn": {
878 | "version": "0.4.1",
879 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
880 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
881 | "dev": true,
882 | "dependencies": {
883 | "prelude-ls": "^1.2.1",
884 | "type-check": "~0.4.0"
885 | },
886 | "engines": {
887 | "node": ">= 0.8.0"
888 | }
889 | },
890 | "node_modules/locate-path": {
891 | "version": "6.0.0",
892 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
893 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
894 | "dev": true,
895 | "dependencies": {
896 | "p-locate": "^5.0.0"
897 | },
898 | "engines": {
899 | "node": ">=10"
900 | },
901 | "funding": {
902 | "url": "https://github.com/sponsors/sindresorhus"
903 | }
904 | },
905 | "node_modules/lodash.merge": {
906 | "version": "4.6.2",
907 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
908 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
909 | "dev": true
910 | },
911 | "node_modules/mime-db": {
912 | "version": "1.52.0",
913 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
914 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
915 | "engines": {
916 | "node": ">= 0.6"
917 | }
918 | },
919 | "node_modules/mime-types": {
920 | "version": "2.1.35",
921 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
922 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
923 | "dependencies": {
924 | "mime-db": "1.52.0"
925 | },
926 | "engines": {
927 | "node": ">= 0.6"
928 | }
929 | },
930 | "node_modules/minimatch": {
931 | "version": "3.1.2",
932 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
933 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
934 | "dev": true,
935 | "dependencies": {
936 | "brace-expansion": "^1.1.7"
937 | },
938 | "engines": {
939 | "node": "*"
940 | }
941 | },
942 | "node_modules/ms": {
943 | "version": "2.1.2",
944 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
945 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
946 | },
947 | "node_modules/natural-compare": {
948 | "version": "1.4.0",
949 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
950 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
951 | "dev": true
952 | },
953 | "node_modules/once": {
954 | "version": "1.4.0",
955 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
956 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
957 | "dev": true,
958 | "dependencies": {
959 | "wrappy": "1"
960 | }
961 | },
962 | "node_modules/optionator": {
963 | "version": "0.9.1",
964 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
965 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
966 | "dev": true,
967 | "dependencies": {
968 | "deep-is": "^0.1.3",
969 | "fast-levenshtein": "^2.0.6",
970 | "levn": "^0.4.1",
971 | "prelude-ls": "^1.2.1",
972 | "type-check": "^0.4.0",
973 | "word-wrap": "^1.2.3"
974 | },
975 | "engines": {
976 | "node": ">= 0.8.0"
977 | }
978 | },
979 | "node_modules/p-limit": {
980 | "version": "3.1.0",
981 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
982 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
983 | "dev": true,
984 | "dependencies": {
985 | "yocto-queue": "^0.1.0"
986 | },
987 | "engines": {
988 | "node": ">=10"
989 | },
990 | "funding": {
991 | "url": "https://github.com/sponsors/sindresorhus"
992 | }
993 | },
994 | "node_modules/p-locate": {
995 | "version": "5.0.0",
996 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
997 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
998 | "dev": true,
999 | "dependencies": {
1000 | "p-limit": "^3.0.2"
1001 | },
1002 | "engines": {
1003 | "node": ">=10"
1004 | },
1005 | "funding": {
1006 | "url": "https://github.com/sponsors/sindresorhus"
1007 | }
1008 | },
1009 | "node_modules/parent-module": {
1010 | "version": "1.0.1",
1011 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
1012 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
1013 | "dev": true,
1014 | "dependencies": {
1015 | "callsites": "^3.0.0"
1016 | },
1017 | "engines": {
1018 | "node": ">=6"
1019 | }
1020 | },
1021 | "node_modules/path-exists": {
1022 | "version": "4.0.0",
1023 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
1024 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
1025 | "dev": true,
1026 | "engines": {
1027 | "node": ">=8"
1028 | }
1029 | },
1030 | "node_modules/path-is-absolute": {
1031 | "version": "1.0.1",
1032 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1033 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
1034 | "dev": true,
1035 | "engines": {
1036 | "node": ">=0.10.0"
1037 | }
1038 | },
1039 | "node_modules/path-key": {
1040 | "version": "3.1.1",
1041 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
1042 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
1043 | "dev": true,
1044 | "engines": {
1045 | "node": ">=8"
1046 | }
1047 | },
1048 | "node_modules/prelude-ls": {
1049 | "version": "1.2.1",
1050 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
1051 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
1052 | "dev": true,
1053 | "engines": {
1054 | "node": ">= 0.8.0"
1055 | }
1056 | },
1057 | "node_modules/proxy-from-env": {
1058 | "version": "1.1.0",
1059 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
1060 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
1061 | },
1062 | "node_modules/punycode": {
1063 | "version": "2.1.1",
1064 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
1065 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
1066 | "dev": true,
1067 | "engines": {
1068 | "node": ">=6"
1069 | }
1070 | },
1071 | "node_modules/queue-microtask": {
1072 | "version": "1.2.3",
1073 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
1074 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
1075 | "dev": true,
1076 | "funding": [
1077 | {
1078 | "type": "github",
1079 | "url": "https://github.com/sponsors/feross"
1080 | },
1081 | {
1082 | "type": "patreon",
1083 | "url": "https://www.patreon.com/feross"
1084 | },
1085 | {
1086 | "type": "consulting",
1087 | "url": "https://feross.org/support"
1088 | }
1089 | ]
1090 | },
1091 | "node_modules/regexpp": {
1092 | "version": "3.2.0",
1093 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
1094 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
1095 | "dev": true,
1096 | "engines": {
1097 | "node": ">=8"
1098 | },
1099 | "funding": {
1100 | "url": "https://github.com/sponsors/mysticatea"
1101 | }
1102 | },
1103 | "node_modules/resolve-from": {
1104 | "version": "4.0.0",
1105 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
1106 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
1107 | "dev": true,
1108 | "engines": {
1109 | "node": ">=4"
1110 | }
1111 | },
1112 | "node_modules/reusify": {
1113 | "version": "1.0.4",
1114 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
1115 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
1116 | "dev": true,
1117 | "engines": {
1118 | "iojs": ">=1.0.0",
1119 | "node": ">=0.10.0"
1120 | }
1121 | },
1122 | "node_modules/rimraf": {
1123 | "version": "3.0.2",
1124 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
1125 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
1126 | "dev": true,
1127 | "dependencies": {
1128 | "glob": "^7.1.3"
1129 | },
1130 | "bin": {
1131 | "rimraf": "bin.js"
1132 | },
1133 | "funding": {
1134 | "url": "https://github.com/sponsors/isaacs"
1135 | }
1136 | },
1137 | "node_modules/run-parallel": {
1138 | "version": "1.2.0",
1139 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
1140 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
1141 | "dev": true,
1142 | "funding": [
1143 | {
1144 | "type": "github",
1145 | "url": "https://github.com/sponsors/feross"
1146 | },
1147 | {
1148 | "type": "patreon",
1149 | "url": "https://www.patreon.com/feross"
1150 | },
1151 | {
1152 | "type": "consulting",
1153 | "url": "https://feross.org/support"
1154 | }
1155 | ],
1156 | "dependencies": {
1157 | "queue-microtask": "^1.2.2"
1158 | }
1159 | },
1160 | "node_modules/semver": {
1161 | "version": "6.3.0",
1162 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1163 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1164 | "bin": {
1165 | "semver": "bin/semver.js"
1166 | }
1167 | },
1168 | "node_modules/shebang-command": {
1169 | "version": "2.0.0",
1170 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
1171 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
1172 | "dev": true,
1173 | "dependencies": {
1174 | "shebang-regex": "^3.0.0"
1175 | },
1176 | "engines": {
1177 | "node": ">=8"
1178 | }
1179 | },
1180 | "node_modules/shebang-regex": {
1181 | "version": "3.0.0",
1182 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
1183 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
1184 | "dev": true,
1185 | "engines": {
1186 | "node": ">=8"
1187 | }
1188 | },
1189 | "node_modules/strip-ansi": {
1190 | "version": "6.0.1",
1191 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1192 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
1193 | "dev": true,
1194 | "dependencies": {
1195 | "ansi-regex": "^5.0.1"
1196 | },
1197 | "engines": {
1198 | "node": ">=8"
1199 | }
1200 | },
1201 | "node_modules/strip-json-comments": {
1202 | "version": "3.1.1",
1203 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
1204 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
1205 | "dev": true,
1206 | "engines": {
1207 | "node": ">=8"
1208 | },
1209 | "funding": {
1210 | "url": "https://github.com/sponsors/sindresorhus"
1211 | }
1212 | },
1213 | "node_modules/supports-color": {
1214 | "version": "7.2.0",
1215 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
1216 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
1217 | "dev": true,
1218 | "dependencies": {
1219 | "has-flag": "^4.0.0"
1220 | },
1221 | "engines": {
1222 | "node": ">=8"
1223 | }
1224 | },
1225 | "node_modules/text-table": {
1226 | "version": "0.2.0",
1227 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
1228 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
1229 | "dev": true
1230 | },
1231 | "node_modules/tunnel": {
1232 | "version": "0.0.6",
1233 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
1234 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
1235 | "engines": {
1236 | "node": ">=0.6.11 <=0.7.0 || >=0.7.3"
1237 | }
1238 | },
1239 | "node_modules/type-check": {
1240 | "version": "0.4.0",
1241 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
1242 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
1243 | "dev": true,
1244 | "dependencies": {
1245 | "prelude-ls": "^1.2.1"
1246 | },
1247 | "engines": {
1248 | "node": ">= 0.8.0"
1249 | }
1250 | },
1251 | "node_modules/type-fest": {
1252 | "version": "0.20.2",
1253 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
1254 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
1255 | "dev": true,
1256 | "engines": {
1257 | "node": ">=10"
1258 | },
1259 | "funding": {
1260 | "url": "https://github.com/sponsors/sindresorhus"
1261 | }
1262 | },
1263 | "node_modules/uri-js": {
1264 | "version": "4.4.1",
1265 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
1266 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
1267 | "dev": true,
1268 | "dependencies": {
1269 | "punycode": "^2.1.0"
1270 | }
1271 | },
1272 | "node_modules/uuid": {
1273 | "version": "3.4.0",
1274 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
1275 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
1276 | "bin": {
1277 | "uuid": "bin/uuid"
1278 | }
1279 | },
1280 | "node_modules/which": {
1281 | "version": "2.0.2",
1282 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1283 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1284 | "dev": true,
1285 | "dependencies": {
1286 | "isexe": "^2.0.0"
1287 | },
1288 | "bin": {
1289 | "node-which": "bin/node-which"
1290 | },
1291 | "engines": {
1292 | "node": ">= 8"
1293 | }
1294 | },
1295 | "node_modules/word-wrap": {
1296 | "version": "1.2.3",
1297 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
1298 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
1299 | "dev": true,
1300 | "engines": {
1301 | "node": ">=0.10.0"
1302 | }
1303 | },
1304 | "node_modules/wrappy": {
1305 | "version": "1.0.2",
1306 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1307 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
1308 | "dev": true
1309 | },
1310 | "node_modules/yocto-queue": {
1311 | "version": "0.1.0",
1312 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
1313 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
1314 | "dev": true,
1315 | "engines": {
1316 | "node": ">=10"
1317 | },
1318 | "funding": {
1319 | "url": "https://github.com/sponsors/sindresorhus"
1320 | }
1321 | }
1322 | },
1323 | "dependencies": {
1324 | "@actions/core": {
1325 | "version": "1.10.0",
1326 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz",
1327 | "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==",
1328 | "requires": {
1329 | "@actions/http-client": "^2.0.1",
1330 | "uuid": "^8.3.2"
1331 | },
1332 | "dependencies": {
1333 | "uuid": {
1334 | "version": "8.3.2",
1335 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
1336 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
1337 | }
1338 | }
1339 | },
1340 | "@actions/exec": {
1341 | "version": "1.1.1",
1342 | "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.1.1.tgz",
1343 | "integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==",
1344 | "requires": {
1345 | "@actions/io": "^1.0.1"
1346 | }
1347 | },
1348 | "@actions/http-client": {
1349 | "version": "2.0.1",
1350 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz",
1351 | "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==",
1352 | "requires": {
1353 | "tunnel": "^0.0.6"
1354 | }
1355 | },
1356 | "@actions/io": {
1357 | "version": "1.1.2",
1358 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.2.tgz",
1359 | "integrity": "sha512-d+RwPlMp+2qmBfeLYPLXuSRykDIFEwdTA0MMxzS9kh4kvP1ftrc/9fzy6pX6qAjthdXruHQ6/6kjT/DNo5ALuw=="
1360 | },
1361 | "@actions/tool-cache": {
1362 | "version": "2.0.1",
1363 | "resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-2.0.1.tgz",
1364 | "integrity": "sha512-iPU+mNwrbA8jodY8eyo/0S/QqCKDajiR8OxWTnSk/SnYg0sj8Hp4QcUEVC1YFpHWXtrfbQrE13Jz4k4HXJQKcA==",
1365 | "requires": {
1366 | "@actions/core": "^1.2.6",
1367 | "@actions/exec": "^1.0.0",
1368 | "@actions/http-client": "^2.0.1",
1369 | "@actions/io": "^1.1.1",
1370 | "semver": "^6.1.0",
1371 | "uuid": "^3.3.2"
1372 | }
1373 | },
1374 | "@eslint/eslintrc": {
1375 | "version": "1.3.3",
1376 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
1377 | "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
1378 | "dev": true,
1379 | "requires": {
1380 | "ajv": "^6.12.4",
1381 | "debug": "^4.3.2",
1382 | "espree": "^9.4.0",
1383 | "globals": "^13.15.0",
1384 | "ignore": "^5.2.0",
1385 | "import-fresh": "^3.2.1",
1386 | "js-yaml": "^4.1.0",
1387 | "minimatch": "^3.1.2",
1388 | "strip-json-comments": "^3.1.1"
1389 | }
1390 | },
1391 | "@humanwhocodes/config-array": {
1392 | "version": "0.11.7",
1393 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz",
1394 | "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==",
1395 | "dev": true,
1396 | "requires": {
1397 | "@humanwhocodes/object-schema": "^1.2.1",
1398 | "debug": "^4.1.1",
1399 | "minimatch": "^3.0.5"
1400 | }
1401 | },
1402 | "@humanwhocodes/module-importer": {
1403 | "version": "1.0.1",
1404 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
1405 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
1406 | "dev": true
1407 | },
1408 | "@humanwhocodes/object-schema": {
1409 | "version": "1.2.1",
1410 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
1411 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
1412 | "dev": true
1413 | },
1414 | "@nodelib/fs.scandir": {
1415 | "version": "2.1.5",
1416 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
1417 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
1418 | "dev": true,
1419 | "requires": {
1420 | "@nodelib/fs.stat": "2.0.5",
1421 | "run-parallel": "^1.1.9"
1422 | }
1423 | },
1424 | "@nodelib/fs.stat": {
1425 | "version": "2.0.5",
1426 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
1427 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
1428 | "dev": true
1429 | },
1430 | "@nodelib/fs.walk": {
1431 | "version": "1.2.8",
1432 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
1433 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
1434 | "dev": true,
1435 | "requires": {
1436 | "@nodelib/fs.scandir": "2.1.5",
1437 | "fastq": "^1.6.0"
1438 | }
1439 | },
1440 | "@vercel/ncc": {
1441 | "version": "0.34.0",
1442 | "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.34.0.tgz",
1443 | "integrity": "sha512-G9h5ZLBJ/V57Ou9vz5hI8pda/YQX5HQszCs3AmIus3XzsmRn/0Ptic5otD3xVST8QLKk7AMk7AqpsyQGN7MZ9A==",
1444 | "dev": true
1445 | },
1446 | "acorn": {
1447 | "version": "8.8.1",
1448 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz",
1449 | "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==",
1450 | "dev": true
1451 | },
1452 | "acorn-jsx": {
1453 | "version": "5.3.2",
1454 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1455 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1456 | "dev": true,
1457 | "requires": {}
1458 | },
1459 | "agent-base": {
1460 | "version": "7.1.1",
1461 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz",
1462 | "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==",
1463 | "requires": {
1464 | "debug": "^4.3.4"
1465 | }
1466 | },
1467 | "ajv": {
1468 | "version": "6.12.6",
1469 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1470 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1471 | "dev": true,
1472 | "requires": {
1473 | "fast-deep-equal": "^3.1.1",
1474 | "fast-json-stable-stringify": "^2.0.0",
1475 | "json-schema-traverse": "^0.4.1",
1476 | "uri-js": "^4.2.2"
1477 | }
1478 | },
1479 | "ansi-regex": {
1480 | "version": "5.0.1",
1481 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1482 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1483 | "dev": true
1484 | },
1485 | "ansi-styles": {
1486 | "version": "4.3.0",
1487 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1488 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1489 | "dev": true,
1490 | "requires": {
1491 | "color-convert": "^2.0.1"
1492 | }
1493 | },
1494 | "argparse": {
1495 | "version": "2.0.1",
1496 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1497 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1498 | "dev": true
1499 | },
1500 | "asynckit": {
1501 | "version": "0.4.0",
1502 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
1503 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
1504 | },
1505 | "axios": {
1506 | "version": "1.1.3",
1507 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.1.3.tgz",
1508 | "integrity": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==",
1509 | "requires": {
1510 | "follow-redirects": "^1.15.0",
1511 | "form-data": "^4.0.0",
1512 | "proxy-from-env": "^1.1.0"
1513 | }
1514 | },
1515 | "balanced-match": {
1516 | "version": "1.0.2",
1517 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1518 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1519 | "dev": true
1520 | },
1521 | "brace-expansion": {
1522 | "version": "1.1.11",
1523 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1524 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1525 | "dev": true,
1526 | "requires": {
1527 | "balanced-match": "^1.0.0",
1528 | "concat-map": "0.0.1"
1529 | }
1530 | },
1531 | "callsites": {
1532 | "version": "3.1.0",
1533 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1534 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1535 | "dev": true
1536 | },
1537 | "chalk": {
1538 | "version": "4.1.0",
1539 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
1540 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
1541 | "dev": true,
1542 | "requires": {
1543 | "ansi-styles": "^4.1.0",
1544 | "supports-color": "^7.1.0"
1545 | }
1546 | },
1547 | "color-convert": {
1548 | "version": "2.0.1",
1549 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1550 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1551 | "dev": true,
1552 | "requires": {
1553 | "color-name": "~1.1.4"
1554 | }
1555 | },
1556 | "color-name": {
1557 | "version": "1.1.4",
1558 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1559 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1560 | "dev": true
1561 | },
1562 | "combined-stream": {
1563 | "version": "1.0.8",
1564 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1565 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1566 | "requires": {
1567 | "delayed-stream": "~1.0.0"
1568 | }
1569 | },
1570 | "concat-map": {
1571 | "version": "0.0.1",
1572 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1573 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
1574 | "dev": true
1575 | },
1576 | "cross-spawn": {
1577 | "version": "7.0.3",
1578 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1579 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1580 | "dev": true,
1581 | "requires": {
1582 | "path-key": "^3.1.0",
1583 | "shebang-command": "^2.0.0",
1584 | "which": "^2.0.1"
1585 | }
1586 | },
1587 | "debug": {
1588 | "version": "4.3.4",
1589 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1590 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1591 | "requires": {
1592 | "ms": "2.1.2"
1593 | }
1594 | },
1595 | "deep-is": {
1596 | "version": "0.1.3",
1597 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
1598 | "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
1599 | "dev": true
1600 | },
1601 | "delayed-stream": {
1602 | "version": "1.0.0",
1603 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1604 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
1605 | },
1606 | "doctrine": {
1607 | "version": "3.0.0",
1608 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
1609 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
1610 | "dev": true,
1611 | "requires": {
1612 | "esutils": "^2.0.2"
1613 | }
1614 | },
1615 | "escape-string-regexp": {
1616 | "version": "4.0.0",
1617 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1618 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1619 | "dev": true
1620 | },
1621 | "eslint": {
1622 | "version": "8.26.0",
1623 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz",
1624 | "integrity": "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==",
1625 | "dev": true,
1626 | "requires": {
1627 | "@eslint/eslintrc": "^1.3.3",
1628 | "@humanwhocodes/config-array": "^0.11.6",
1629 | "@humanwhocodes/module-importer": "^1.0.1",
1630 | "@nodelib/fs.walk": "^1.2.8",
1631 | "ajv": "^6.10.0",
1632 | "chalk": "^4.0.0",
1633 | "cross-spawn": "^7.0.2",
1634 | "debug": "^4.3.2",
1635 | "doctrine": "^3.0.0",
1636 | "escape-string-regexp": "^4.0.0",
1637 | "eslint-scope": "^7.1.1",
1638 | "eslint-utils": "^3.0.0",
1639 | "eslint-visitor-keys": "^3.3.0",
1640 | "espree": "^9.4.0",
1641 | "esquery": "^1.4.0",
1642 | "esutils": "^2.0.2",
1643 | "fast-deep-equal": "^3.1.3",
1644 | "file-entry-cache": "^6.0.1",
1645 | "find-up": "^5.0.0",
1646 | "glob-parent": "^6.0.2",
1647 | "globals": "^13.15.0",
1648 | "grapheme-splitter": "^1.0.4",
1649 | "ignore": "^5.2.0",
1650 | "import-fresh": "^3.0.0",
1651 | "imurmurhash": "^0.1.4",
1652 | "is-glob": "^4.0.0",
1653 | "is-path-inside": "^3.0.3",
1654 | "js-sdsl": "^4.1.4",
1655 | "js-yaml": "^4.1.0",
1656 | "json-stable-stringify-without-jsonify": "^1.0.1",
1657 | "levn": "^0.4.1",
1658 | "lodash.merge": "^4.6.2",
1659 | "minimatch": "^3.1.2",
1660 | "natural-compare": "^1.4.0",
1661 | "optionator": "^0.9.1",
1662 | "regexpp": "^3.2.0",
1663 | "strip-ansi": "^6.0.1",
1664 | "strip-json-comments": "^3.1.0",
1665 | "text-table": "^0.2.0"
1666 | }
1667 | },
1668 | "eslint-scope": {
1669 | "version": "7.1.1",
1670 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
1671 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
1672 | "dev": true,
1673 | "requires": {
1674 | "esrecurse": "^4.3.0",
1675 | "estraverse": "^5.2.0"
1676 | }
1677 | },
1678 | "eslint-utils": {
1679 | "version": "3.0.0",
1680 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
1681 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
1682 | "dev": true,
1683 | "requires": {
1684 | "eslint-visitor-keys": "^2.0.0"
1685 | },
1686 | "dependencies": {
1687 | "eslint-visitor-keys": {
1688 | "version": "2.1.0",
1689 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
1690 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
1691 | "dev": true
1692 | }
1693 | }
1694 | },
1695 | "eslint-visitor-keys": {
1696 | "version": "3.3.0",
1697 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
1698 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
1699 | "dev": true
1700 | },
1701 | "espree": {
1702 | "version": "9.4.0",
1703 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz",
1704 | "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==",
1705 | "dev": true,
1706 | "requires": {
1707 | "acorn": "^8.8.0",
1708 | "acorn-jsx": "^5.3.2",
1709 | "eslint-visitor-keys": "^3.3.0"
1710 | }
1711 | },
1712 | "esquery": {
1713 | "version": "1.4.0",
1714 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
1715 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
1716 | "dev": true,
1717 | "requires": {
1718 | "estraverse": "^5.1.0"
1719 | }
1720 | },
1721 | "esrecurse": {
1722 | "version": "4.3.0",
1723 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1724 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1725 | "dev": true,
1726 | "requires": {
1727 | "estraverse": "^5.2.0"
1728 | }
1729 | },
1730 | "estraverse": {
1731 | "version": "5.3.0",
1732 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1733 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1734 | "dev": true
1735 | },
1736 | "esutils": {
1737 | "version": "2.0.3",
1738 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1739 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1740 | "dev": true
1741 | },
1742 | "fast-deep-equal": {
1743 | "version": "3.1.3",
1744 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1745 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1746 | "dev": true
1747 | },
1748 | "fast-json-stable-stringify": {
1749 | "version": "2.1.0",
1750 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1751 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1752 | "dev": true
1753 | },
1754 | "fast-levenshtein": {
1755 | "version": "2.0.6",
1756 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1757 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
1758 | "dev": true
1759 | },
1760 | "fastq": {
1761 | "version": "1.13.0",
1762 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
1763 | "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
1764 | "dev": true,
1765 | "requires": {
1766 | "reusify": "^1.0.4"
1767 | }
1768 | },
1769 | "file-entry-cache": {
1770 | "version": "6.0.1",
1771 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
1772 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
1773 | "dev": true,
1774 | "requires": {
1775 | "flat-cache": "^3.0.4"
1776 | }
1777 | },
1778 | "find-up": {
1779 | "version": "5.0.0",
1780 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1781 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1782 | "dev": true,
1783 | "requires": {
1784 | "locate-path": "^6.0.0",
1785 | "path-exists": "^4.0.0"
1786 | }
1787 | },
1788 | "flat-cache": {
1789 | "version": "3.0.4",
1790 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
1791 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
1792 | "dev": true,
1793 | "requires": {
1794 | "flatted": "^3.1.0",
1795 | "rimraf": "^3.0.2"
1796 | }
1797 | },
1798 | "flatted": {
1799 | "version": "3.1.1",
1800 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz",
1801 | "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==",
1802 | "dev": true
1803 | },
1804 | "follow-redirects": {
1805 | "version": "1.15.2",
1806 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
1807 | "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="
1808 | },
1809 | "form-data": {
1810 | "version": "4.0.0",
1811 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
1812 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
1813 | "requires": {
1814 | "asynckit": "^0.4.0",
1815 | "combined-stream": "^1.0.8",
1816 | "mime-types": "^2.1.12"
1817 | }
1818 | },
1819 | "fs.realpath": {
1820 | "version": "1.0.0",
1821 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1822 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
1823 | "dev": true
1824 | },
1825 | "glob": {
1826 | "version": "7.1.6",
1827 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
1828 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
1829 | "dev": true,
1830 | "requires": {
1831 | "fs.realpath": "^1.0.0",
1832 | "inflight": "^1.0.4",
1833 | "inherits": "2",
1834 | "minimatch": "^3.0.4",
1835 | "once": "^1.3.0",
1836 | "path-is-absolute": "^1.0.0"
1837 | }
1838 | },
1839 | "glob-parent": {
1840 | "version": "6.0.2",
1841 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1842 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1843 | "dev": true,
1844 | "requires": {
1845 | "is-glob": "^4.0.3"
1846 | }
1847 | },
1848 | "globals": {
1849 | "version": "13.17.0",
1850 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
1851 | "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
1852 | "dev": true,
1853 | "requires": {
1854 | "type-fest": "^0.20.2"
1855 | }
1856 | },
1857 | "grapheme-splitter": {
1858 | "version": "1.0.4",
1859 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
1860 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
1861 | "dev": true
1862 | },
1863 | "has-flag": {
1864 | "version": "4.0.0",
1865 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1866 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1867 | "dev": true
1868 | },
1869 | "https-proxy-agent": {
1870 | "version": "7.0.5",
1871 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz",
1872 | "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==",
1873 | "requires": {
1874 | "agent-base": "^7.0.2",
1875 | "debug": "4"
1876 | }
1877 | },
1878 | "ignore": {
1879 | "version": "5.2.0",
1880 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
1881 | "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
1882 | "dev": true
1883 | },
1884 | "import-fresh": {
1885 | "version": "3.3.0",
1886 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
1887 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
1888 | "dev": true,
1889 | "requires": {
1890 | "parent-module": "^1.0.0",
1891 | "resolve-from": "^4.0.0"
1892 | }
1893 | },
1894 | "imurmurhash": {
1895 | "version": "0.1.4",
1896 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1897 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
1898 | "dev": true
1899 | },
1900 | "inflight": {
1901 | "version": "1.0.6",
1902 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1903 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
1904 | "dev": true,
1905 | "requires": {
1906 | "once": "^1.3.0",
1907 | "wrappy": "1"
1908 | }
1909 | },
1910 | "inherits": {
1911 | "version": "2.0.4",
1912 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1913 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1914 | "dev": true
1915 | },
1916 | "is-extglob": {
1917 | "version": "2.1.1",
1918 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1919 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1920 | "dev": true
1921 | },
1922 | "is-glob": {
1923 | "version": "4.0.3",
1924 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1925 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1926 | "dev": true,
1927 | "requires": {
1928 | "is-extglob": "^2.1.1"
1929 | }
1930 | },
1931 | "is-path-inside": {
1932 | "version": "3.0.3",
1933 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
1934 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
1935 | "dev": true
1936 | },
1937 | "isexe": {
1938 | "version": "2.0.0",
1939 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1940 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
1941 | "dev": true
1942 | },
1943 | "js-sdsl": {
1944 | "version": "4.1.5",
1945 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz",
1946 | "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==",
1947 | "dev": true
1948 | },
1949 | "js-yaml": {
1950 | "version": "4.1.0",
1951 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
1952 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
1953 | "dev": true,
1954 | "requires": {
1955 | "argparse": "^2.0.1"
1956 | }
1957 | },
1958 | "json-schema-traverse": {
1959 | "version": "0.4.1",
1960 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1961 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1962 | "dev": true
1963 | },
1964 | "json-stable-stringify-without-jsonify": {
1965 | "version": "1.0.1",
1966 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1967 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
1968 | "dev": true
1969 | },
1970 | "levn": {
1971 | "version": "0.4.1",
1972 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1973 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1974 | "dev": true,
1975 | "requires": {
1976 | "prelude-ls": "^1.2.1",
1977 | "type-check": "~0.4.0"
1978 | }
1979 | },
1980 | "locate-path": {
1981 | "version": "6.0.0",
1982 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
1983 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
1984 | "dev": true,
1985 | "requires": {
1986 | "p-locate": "^5.0.0"
1987 | }
1988 | },
1989 | "lodash.merge": {
1990 | "version": "4.6.2",
1991 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
1992 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
1993 | "dev": true
1994 | },
1995 | "mime-db": {
1996 | "version": "1.52.0",
1997 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1998 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
1999 | },
2000 | "mime-types": {
2001 | "version": "2.1.35",
2002 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
2003 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
2004 | "requires": {
2005 | "mime-db": "1.52.0"
2006 | }
2007 | },
2008 | "minimatch": {
2009 | "version": "3.1.2",
2010 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2011 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2012 | "dev": true,
2013 | "requires": {
2014 | "brace-expansion": "^1.1.7"
2015 | }
2016 | },
2017 | "ms": {
2018 | "version": "2.1.2",
2019 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2020 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2021 | },
2022 | "natural-compare": {
2023 | "version": "1.4.0",
2024 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2025 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
2026 | "dev": true
2027 | },
2028 | "once": {
2029 | "version": "1.4.0",
2030 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2031 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
2032 | "dev": true,
2033 | "requires": {
2034 | "wrappy": "1"
2035 | }
2036 | },
2037 | "optionator": {
2038 | "version": "0.9.1",
2039 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
2040 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
2041 | "dev": true,
2042 | "requires": {
2043 | "deep-is": "^0.1.3",
2044 | "fast-levenshtein": "^2.0.6",
2045 | "levn": "^0.4.1",
2046 | "prelude-ls": "^1.2.1",
2047 | "type-check": "^0.4.0",
2048 | "word-wrap": "^1.2.3"
2049 | }
2050 | },
2051 | "p-limit": {
2052 | "version": "3.1.0",
2053 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2054 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2055 | "dev": true,
2056 | "requires": {
2057 | "yocto-queue": "^0.1.0"
2058 | }
2059 | },
2060 | "p-locate": {
2061 | "version": "5.0.0",
2062 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2063 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2064 | "dev": true,
2065 | "requires": {
2066 | "p-limit": "^3.0.2"
2067 | }
2068 | },
2069 | "parent-module": {
2070 | "version": "1.0.1",
2071 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2072 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2073 | "dev": true,
2074 | "requires": {
2075 | "callsites": "^3.0.0"
2076 | }
2077 | },
2078 | "path-exists": {
2079 | "version": "4.0.0",
2080 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2081 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2082 | "dev": true
2083 | },
2084 | "path-is-absolute": {
2085 | "version": "1.0.1",
2086 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2087 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
2088 | "dev": true
2089 | },
2090 | "path-key": {
2091 | "version": "3.1.1",
2092 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2093 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2094 | "dev": true
2095 | },
2096 | "prelude-ls": {
2097 | "version": "1.2.1",
2098 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2099 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2100 | "dev": true
2101 | },
2102 | "proxy-from-env": {
2103 | "version": "1.1.0",
2104 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
2105 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
2106 | },
2107 | "punycode": {
2108 | "version": "2.1.1",
2109 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
2110 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
2111 | "dev": true
2112 | },
2113 | "queue-microtask": {
2114 | "version": "1.2.3",
2115 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2116 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2117 | "dev": true
2118 | },
2119 | "regexpp": {
2120 | "version": "3.2.0",
2121 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
2122 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
2123 | "dev": true
2124 | },
2125 | "resolve-from": {
2126 | "version": "4.0.0",
2127 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2128 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2129 | "dev": true
2130 | },
2131 | "reusify": {
2132 | "version": "1.0.4",
2133 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
2134 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
2135 | "dev": true
2136 | },
2137 | "rimraf": {
2138 | "version": "3.0.2",
2139 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
2140 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
2141 | "dev": true,
2142 | "requires": {
2143 | "glob": "^7.1.3"
2144 | }
2145 | },
2146 | "run-parallel": {
2147 | "version": "1.2.0",
2148 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2149 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2150 | "dev": true,
2151 | "requires": {
2152 | "queue-microtask": "^1.2.2"
2153 | }
2154 | },
2155 | "semver": {
2156 | "version": "6.3.0",
2157 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
2158 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
2159 | },
2160 | "shebang-command": {
2161 | "version": "2.0.0",
2162 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2163 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2164 | "dev": true,
2165 | "requires": {
2166 | "shebang-regex": "^3.0.0"
2167 | }
2168 | },
2169 | "shebang-regex": {
2170 | "version": "3.0.0",
2171 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2172 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2173 | "dev": true
2174 | },
2175 | "strip-ansi": {
2176 | "version": "6.0.1",
2177 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2178 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2179 | "dev": true,
2180 | "requires": {
2181 | "ansi-regex": "^5.0.1"
2182 | }
2183 | },
2184 | "strip-json-comments": {
2185 | "version": "3.1.1",
2186 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2187 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2188 | "dev": true
2189 | },
2190 | "supports-color": {
2191 | "version": "7.2.0",
2192 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2193 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2194 | "dev": true,
2195 | "requires": {
2196 | "has-flag": "^4.0.0"
2197 | }
2198 | },
2199 | "text-table": {
2200 | "version": "0.2.0",
2201 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
2202 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
2203 | "dev": true
2204 | },
2205 | "tunnel": {
2206 | "version": "0.0.6",
2207 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
2208 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg=="
2209 | },
2210 | "type-check": {
2211 | "version": "0.4.0",
2212 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2213 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2214 | "dev": true,
2215 | "requires": {
2216 | "prelude-ls": "^1.2.1"
2217 | }
2218 | },
2219 | "type-fest": {
2220 | "version": "0.20.2",
2221 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
2222 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
2223 | "dev": true
2224 | },
2225 | "uri-js": {
2226 | "version": "4.4.1",
2227 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2228 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2229 | "dev": true,
2230 | "requires": {
2231 | "punycode": "^2.1.0"
2232 | }
2233 | },
2234 | "uuid": {
2235 | "version": "3.4.0",
2236 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
2237 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
2238 | },
2239 | "which": {
2240 | "version": "2.0.2",
2241 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2242 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2243 | "dev": true,
2244 | "requires": {
2245 | "isexe": "^2.0.0"
2246 | }
2247 | },
2248 | "word-wrap": {
2249 | "version": "1.2.3",
2250 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
2251 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
2252 | "dev": true
2253 | },
2254 | "wrappy": {
2255 | "version": "1.0.2",
2256 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2257 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
2258 | "dev": true
2259 | },
2260 | "yocto-queue": {
2261 | "version": "0.1.0",
2262 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2263 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2264 | "dev": true
2265 | }
2266 | }
2267 | }
2268 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "prisma-cloud-scan",
3 | "description": "Scan with Prisma Cloud",
4 | "author": "Palo Alto Networks",
5 | "license": "Apache-2.0",
6 | "scripts": {
7 | "lint": "eslint index.js",
8 | "build": "ncc build index.js --license licenses.txt"
9 | },
10 | "homepage": "https://github.com/paloaltonetworks/prisma-cloud-scan#readme",
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/paloaltonetworks/prisma-cloud-scan.git"
14 | },
15 | "bugs": {
16 | "url": "https://github.com/paloaltonetworks/prisma-cloud-scan/issues"
17 | },
18 | "keywords": [
19 | "prisma",
20 | "cloud",
21 | "compute",
22 | "twistlock",
23 | "docker",
24 | "container",
25 | "image",
26 | "vulnerability",
27 | "compliance",
28 | "scan"
29 | ],
30 | "dependencies": {
31 | "@actions/core": "^1.10.0",
32 | "@actions/exec": "^1.1.1",
33 | "@actions/tool-cache": "^2.0.1",
34 | "axios": "^1.1.3",
35 | "https-proxy-agent": "^7.0.5"
36 | },
37 | "devDependencies": {
38 | "@vercel/ncc": "^0.34.0",
39 | "eslint": "^8.26.0"
40 | }
41 | }
42 |
--------------------------------------------------------------------------------