From 43040219676c393d06b26d87ea901a93d9e12077 Mon Sep 17 00:00:00 2001 From: Matthias Kleine Date: Tue, 16 May 2023 12:16:05 +0200 Subject: [PATCH] Initial commit --- .create-adapter.json | 35 + .eslintignore | 2 + .eslintrc.json | 42 + .github/ISSUE_TEMPLATE/bug_report.md | 32 + .github/auto-merge.yml | 17 + .github/dependabot.yml | 22 + .github/workflows/dependabot-auto-merge.yml | 27 + .github/workflows/test-and-release.yml | 92 + .gitignore | 17 + .prettierignore | 2 + .prettierrc.js | 9 + .releaseconfig.json | 3 + .vscode/extensions.json | 3 + .vscode/settings.json | 15 + LICENSE | 21 + README.md | 123 + admin/awtrix-light.png | Bin 0 -> 62376 bytes admin/i18n/de/translations.json | 5 + admin/i18n/en/translations.json | 5 + admin/i18n/es/translations.json | 5 + admin/i18n/fr/translations.json | 5 + admin/i18n/it/translations.json | 5 + admin/i18n/nl/translations.json | 5 + admin/i18n/pl/translations.json | 5 + admin/i18n/pt/translations.json | 5 + admin/i18n/ru/translations.json | 5 + admin/i18n/uk/translations.json | 5 + admin/i18n/zh-cn/translations.json | 5 + admin/jsonConfig.json | 16 + io-package.json | 104 + lib/adapter-config.d.ts | 19 + main.js | 168 + main.test.js | 29 + package-lock.json | 4655 +++++++++++++++++++ package.json | 78 + test/integration.js | 5 + test/mocha.setup.js | 14 + test/mocharc.custom.json | 4 + test/package.js | 5 + test/tsconfig.json | 7 + tsconfig.check.json | 7 + tsconfig.json | 30 + 42 files changed, 5658 insertions(+) create mode 100644 .create-adapter.json create mode 100644 .eslintignore create mode 100644 .eslintrc.json create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/auto-merge.yml create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/dependabot-auto-merge.yml create mode 100644 .github/workflows/test-and-release.yml create mode 100644 .gitignore create mode 100644 .prettierignore create mode 100644 .prettierrc.js create mode 100644 .releaseconfig.json create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json create mode 100644 LICENSE create mode 100644 README.md create mode 100644 admin/awtrix-light.png create mode 100644 admin/i18n/de/translations.json create mode 100644 admin/i18n/en/translations.json create mode 100644 admin/i18n/es/translations.json create mode 100644 admin/i18n/fr/translations.json create mode 100644 admin/i18n/it/translations.json create mode 100644 admin/i18n/nl/translations.json create mode 100644 admin/i18n/pl/translations.json create mode 100644 admin/i18n/pt/translations.json create mode 100644 admin/i18n/ru/translations.json create mode 100644 admin/i18n/uk/translations.json create mode 100644 admin/i18n/zh-cn/translations.json create mode 100644 admin/jsonConfig.json create mode 100644 io-package.json create mode 100644 lib/adapter-config.d.ts create mode 100644 main.js create mode 100644 main.test.js create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 test/integration.js create mode 100644 test/mocha.setup.js create mode 100644 test/mocharc.custom.json create mode 100644 test/package.js create mode 100644 test/tsconfig.json create mode 100644 tsconfig.check.json create mode 100644 tsconfig.json diff --git a/.create-adapter.json b/.create-adapter.json new file mode 100644 index 0000000..97959e0 --- /dev/null +++ b/.create-adapter.json @@ -0,0 +1,35 @@ +{ + "cli": true, + "target": "directory", + "adapterName": "awtrix-light", + "title": "Awtrix Light", + "description": "Integrates your Ulanzi TC001 via HTTP", + "keywords": ["awtrix", "ulanzi", "tc001", "pixel-clock"], + "expert": "yes", + "features": ["adapter"], + "adminFeatures": [], + "type": "hardware", + "startMode": "daemon", + "connectionType": "local", + "dataSource": "poll", + "connectionIndicator": "yes", + "language": "JavaScript", + "nodeVersion": "14", + "adminUi": "json", + "tools": ["ESLint", "type checking", "Prettier"], + "releaseScript": "yes", + "devServer": "yes", + "devServerPort": 8081, + "indentation": "Space (4)", + "quotes": "single", + "es6class": "yes", + "authorName": "Matthias Kleine", + "authorGithub": "klein0r", + "authorEmail": "info@haus-automatisierung.com", + "gitRemoteProtocol": "SSH", + "gitCommit": "yes", + "defaultBranch": "master", + "license": "MIT License", + "dependabot": "yes", + "creatorVersion": "2.4.0" +} diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..478d05a --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +.prettierrc.js +**/.eslintrc.js \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..f2ea181 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,42 @@ +{ + "root": true, + "env": { + "es6": true, + "node": true, + "mocha": true + }, + "extends": ["eslint:recommended"], + "plugins": [], + "rules": { + "indent": [ + "error", + 4, + { + "SwitchCase": 1 + } + ], + "no-console": "off", + "no-unused-vars": [ + "error", + { + "ignoreRestSiblings": true, + "argsIgnorePattern": "^_" + } + ], + "no-var": "error", + "no-trailing-spaces": "error", + "prefer-const": "error", + "quotes": [ + "error", + "single", + { + "avoidEscape": true, + "allowTemplateLiterals": true + } + ], + "semi": ["error", "always"] + }, + "parserOptions": { + "ecmaVersion": 2020 + } +} diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..8956139 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Something is not working as it should +title: '' +labels: '' +assignees: '' +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '...' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots & Logfiles** +If applicable, add screenshots and logfiles to help explain your problem. + +**Versions:** + - Adapter version: + - JS-Controller version: + - Node version: + - Operating system: + +**Additional context** +Add any other context about the problem here. diff --git a/.github/auto-merge.yml b/.github/auto-merge.yml new file mode 100644 index 0000000..4f6d185 --- /dev/null +++ b/.github/auto-merge.yml @@ -0,0 +1,17 @@ +# Configure here which dependency updates should be merged automatically. +# The recommended configuration is the following: +- match: + # Only merge patches for production dependencies + dependency_type: production + update_type: "semver:patch" +- match: + # Except for security fixes, here we allow minor patches + dependency_type: production + update_type: "security:minor" +- match: + # and development dependencies can have a minor update, too + dependency_type: development + update_type: "semver:minor" + +# The syntax is based on the legacy dependabot v1 automerged_updates syntax, see: +# https://dependabot.com/docs/config-file/#automerged_updates diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f2d5c29 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: npm + directory: "/" + schedule: + interval: monthly + time: "04:00" + timezone: Europe/Berlin + open-pull-requests-limit: 5 + assignees: + - klein0r + versioning-strategy: increase + + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: monthly + time: "04:00" + timezone: Europe/Berlin + open-pull-requests-limit: 5 + assignees: + - klein0r diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..c9b5329 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,27 @@ +# Automatically merge Dependabot PRs when version comparison is within the range +# that is configured in .github/auto-merge.yml + +name: Auto-Merge Dependabot PRs + +on: + # WARNING: This needs to be run in the PR base, DO NOT build untrusted code in this action + # details under https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/ + pull_request_target: + +jobs: + auto-merge: + if: github.actor == 'dependabot[bot]' + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Check if PR should be auto-merged + uses: ahmadnassri/action-dependabot-auto-merge@v2 + with: + # In order to use this, you need to go to https://github.com/settings/tokens and + # create a Personal Access Token with the permission "public_repo". + # Enter this token in your repository settings under "Secrets" and name it AUTO_MERGE_TOKEN + github-token: ${{ secrets.AUTO_MERGE_TOKEN }} + # By default, squash and merge, so Github chooses nice commit messages + command: squash and merge diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml new file mode 100644 index 0000000..f427325 --- /dev/null +++ b/.github/workflows/test-and-release.yml @@ -0,0 +1,92 @@ +name: Test and Release + +# Run this job on all pushes and pull requests +# as well as tags with a semantic version +on: + push: + branches: + - "master" + tags: + # normal versions + - "v[0-9]+.[0-9]+.[0-9]+" + # pre-releases + - "v[0-9]+.[0-9]+.[0-9]+-**" + pull_request: {} + +# Cancel previous PR/branch runs when a new commit is pushed +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true + +jobs: + # Performs quick checks before the expensive test runs + check-and-lint: + if: contains(github.event.head_commit.message, '[skip ci]') == false + + runs-on: ubuntu-latest + + steps: + - uses: ioBroker/testing-action-check@v1 + with: + node-version: '16.x' + # Uncomment the following line if your adapter cannot be installed using 'npm ci' + # install-command: 'npm install' + lint: true + + # Runs adapter tests on all supported node versions and OSes + adapter-tests: + if: contains(github.event.head_commit.message, '[skip ci]') == false + + runs-on: ${{ matrix.os }} + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + os: [ubuntu-latest, windows-latest, macos-latest] + + steps: + - uses: ioBroker/testing-action-adapter@v1 + with: + node-version: ${{ matrix.node-version }} + os: ${{ matrix.os }} + # Uncomment the following line if your adapter cannot be installed using 'npm ci' + # install-command: 'npm install' + +# TODO: To enable automatic npm releases, create a token on npmjs.org +# Enter this token as a GitHub secret (with name NPM_TOKEN) in the repository options +# Then uncomment the following block: + +# # Deploys the final package to NPM +# deploy: +# needs: [check-and-lint, adapter-tests] +# +# # Trigger this step only when a commit on any branch is tagged with a version number +# if: | +# contains(github.event.head_commit.message, '[skip ci]') == false && +# github.event_name == 'push' && +# startsWith(github.ref, 'refs/tags/v') +# +# runs-on: ubuntu-latest +# +# # Write permissions are required to create Github releases +# permissions: +# contents: write +# +# steps: +# - uses: ioBroker/testing-action-deploy@v1 +# with: +# node-version: '16.x' +# # Uncomment the following line if your adapter cannot be installed using 'npm ci' +# # install-command: 'npm install' +# npm-token: ${{ secrets.NPM_TOKEN }} +# github-token: ${{ secrets.GITHUB_TOKEN }} +# +# # When using Sentry for error reporting, Sentry can be informed about new releases +# # To enable create a API-Token in Sentry (User settings, API keys) +# # Enter this token as a GitHub secret (with name SENTRY_AUTH_TOKEN) in the repository options +# # Then uncomment and customize the following block: +# sentry: true +# sentry-token: ${{ secrets.SENTRY_AUTH_TOKEN }} +# sentry-project: "iobroker-awtrix-light" +# sentry-version-prefix: "iobroker.awtrix-light" +# # If your sentry project is linked to a GitHub repository, you can enable the following option +# # sentry-github-integration: true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3bf582b --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# No dot-directories except github/vscode +.*/ +!.vscode/ +!.github/ + +*.code-workspace +node_modules +nbproject + +# npm package files +iobroker.*.tgz + +Thumbs.db + +# i18n intermediate files +admin/i18n/flat.txt +admin/i18n/*/flat.txt \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..515bcd4 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,2 @@ +package.json +package-lock.json \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..164ee34 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,9 @@ +module.exports = { + semi: true, + trailingComma: 'all', + singleQuote: true, + printWidth: 120, + useTabs: false, + tabWidth: 4, + endOfLine: 'lf', +}; diff --git a/.releaseconfig.json b/.releaseconfig.json new file mode 100644 index 0000000..e7d09e2 --- /dev/null +++ b/.releaseconfig.json @@ -0,0 +1,3 @@ +{ + "plugins": ["iobroker", "license", "manual-review"] +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..d824444 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..bc3396a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "eslint.enable": true, + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "json.schemas": [ + { + "fileMatch": ["io-package.json"], + "url": "https://raw.githubusercontent.com/ioBroker/ioBroker.js-controller/master/schemas/io-package.json" + }, + { + "fileMatch": ["admin/jsonConfig.json", "admin/jsonCustom.json", "admin/jsonTab.json"], + "url": "https://raw.githubusercontent.com/ioBroker/adapter-react-v5/main/schemas/jsonConfig.json" + } + ] +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0832fe9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Matthias Kleine + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..2cfc141 --- /dev/null +++ b/README.md @@ -0,0 +1,123 @@ +![Logo](admin/awtrix-light.png) +# ioBroker.awtrix-light + +[![NPM version](https://img.shields.io/npm/v/iobroker.awtrix-light.svg)](https://www.npmjs.com/package/iobroker.awtrix-light) +[![Downloads](https://img.shields.io/npm/dm/iobroker.awtrix-light.svg)](https://www.npmjs.com/package/iobroker.awtrix-light) +![Number of Installations](https://iobroker.live/badges/awtrix-light-installed.svg) +![Current version in stable repository](https://iobroker.live/badges/awtrix-light-stable.svg) + +[![NPM](https://nodei.co/npm/iobroker.awtrix-light.png?downloads=true)](https://nodei.co/npm/iobroker.awtrix-light/) + +**Tests:** ![Test and Release](https://github.com/klein0r/ioBroker.awtrix-light/workflows/Test%20and%20Release/badge.svg) + +## awtrix-light adapter for ioBroker + +Integrates your Ulanzi TC001 via HTTP + +## Developer manual +This section is intended for the developer. It can be deleted later. + +### DISCLAIMER + +Please make sure that you consider copyrights and trademarks when you use names or logos of a company and add a disclaimer to your README. +You can check other adapters for examples or ask in the developer community. Using a name or logo of a company without permission may cause legal problems for you. + +### Getting started + +You are almost done, only a few steps left: +1. Create a new repository on GitHub with the name `ioBroker.awtrix-light` + +1. Push all files to the GitHub repo. The creator has already set up the local repository for you: + ```bash + git push origin master + ``` +1. Add a new secret under https://github.com/klein0r/ioBroker.awtrix-light/settings/secrets. It must be named `AUTO_MERGE_TOKEN` and contain a personal access token with push access to the repository, e.g. yours. You can create a new token under https://github.com/settings/tokens. + +1. Head over to [main.js](main.js) and start programming! + +### Best Practices +We've collected some [best practices](https://github.com/ioBroker/ioBroker.repositories#development-and-coding-best-practices) regarding ioBroker development and coding in general. If you're new to ioBroker or Node.js, you should +check them out. If you're already experienced, you should also take a look at them - you might learn something new :) + +### Scripts in `package.json` +Several npm scripts are predefined for your convenience. You can run them using `npm run ` +| Script name | Description | +|-------------|-------------| +| `test:js` | Executes the tests you defined in `*.test.js` files. | +| `test:package` | Ensures your `package.json` and `io-package.json` are valid. | +| `test:integration` | Tests the adapter startup with an actual instance of ioBroker. | +| `test` | Performs a minimal test run on package files and your tests. | +| `check` | Performs a type-check on your code (without compiling anything). | +| `lint` | Runs `ESLint` to check your code for formatting errors and potential bugs. | +| `translate` | Translates texts in your adapter to all required languages, see [`@iobroker/adapter-dev`](https://github.com/ioBroker/adapter-dev#manage-translations) for more details. | +| `release` | Creates a new release, see [`@alcalzone/release-script`](https://github.com/AlCalzone/release-script#usage) for more details. | + +### Writing tests +When done right, testing code is invaluable, because it gives you the +confidence to change your code while knowing exactly if and when +something breaks. A good read on the topic of test-driven development +is https://hackernoon.com/introduction-to-test-driven-development-tdd-61a13bc92d92. +Although writing tests before the code might seem strange at first, but it has very +clear upsides. + +The template provides you with basic tests for the adapter startup and package files. +It is recommended that you add your own tests into the mix. + +### Publishing the adapter +Using GitHub Actions, you can enable automatic releases on npm whenever you push a new git tag that matches the form +`v..`. We **strongly recommend** that you do. The necessary steps are described in `.github/workflows/test-and-release.yml`. + +Since you installed the release script, you can create a new +release simply by calling: +```bash +npm run release +``` +Additional command line options for the release script are explained in the +[release-script documentation](https://github.com/AlCalzone/release-script#command-line). + +To get your adapter released in ioBroker, please refer to the documentation +of [ioBroker.repositories](https://github.com/ioBroker/ioBroker.repositories#requirements-for-adapter-to-get-added-to-the-latest-repository). + +### Test the adapter manually with dev-server +Since you set up `dev-server`, you can use it to run, test and debug your adapter. + +You may start `dev-server` by calling from your dev directory: +```bash +dev-server watch +``` + +The ioBroker.admin interface will then be available at http://localhost:8081/ + +Please refer to the [`dev-server` documentation](https://github.com/ioBroker/dev-server#command-line) for more details. + +## Changelog + + +### **WORK IN PROGRESS** +* (Matthias Kleine) initial release + +## License +MIT License + +Copyright (c) 2023 Matthias Kleine + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. \ No newline at end of file diff --git a/admin/awtrix-light.png b/admin/awtrix-light.png new file mode 100644 index 0000000000000000000000000000000000000000..094ebd97c36dbe2386a63dbce290c9ad6a148079 GIT binary patch literal 62376 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%0DGz6 zyl7fq5kK_OTB5a+j%#*OqHtMgmMFAPfM%z1y`n*X-04|c~XNtbq*59PL zf2GK(^`44LhR@%s*209os!^-XK1;F{M*IZtESo=}65To~n+-bu0+>z?fZnkVoW}$_ zstfB}2u}&7L#c0_Qg^2;} z@gmc!u&D{a-Sk8a)1*Chcx+8~_M64opd2kxtHB|6*!4W&cOrWX;Yw>1GmvfN@nFO$k&$he)RKxo(&m zmF!n>4Y$>igYg0$%*vf6XAlg%u=W>lZr*&`_JyS?Qqf|(d#rIqm-Q+bvDD6`E^Yg! zCA@nJ@*O;Lp9NU-Q#KY#ME2A^kx^vHZXmc#(4jcbti!v_B%%%N@|q{z#cN2rxd7uE zDS;G&(m*%4MYSXuokFeyQS{I{6O4v&@v{hDbb4J?0ftY(dI z%St%e+#=VPIyA5VF9`5)D3bY&tL9gpe{Xha)$de%8pXLvHB( zu+0=Wc6d1^KBxb%4tv#uqG^B_>&ZHIJQN>7!}krzA!iGj%=dq0lHKGFRI$Ah-NT8N RBrxDlMnX}%QuJ%k{{yPv^Xvcs literal 0 HcmV?d00001 diff --git a/admin/i18n/de/translations.json b/admin/i18n/de/translations.json new file mode 100644 index 0000000..803fa1a --- /dev/null +++ b/admin/i18n/de/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Adaptereinstellungen für awtrix-light", + "option1": "Option 1", + "option2": "Option 2" +} diff --git a/admin/i18n/en/translations.json b/admin/i18n/en/translations.json new file mode 100644 index 0000000..773fb05 --- /dev/null +++ b/admin/i18n/en/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Adapter settings for awtrix-light", + "option1": "option1", + "option2": "option2" +} diff --git a/admin/i18n/es/translations.json b/admin/i18n/es/translations.json new file mode 100644 index 0000000..62806a9 --- /dev/null +++ b/admin/i18n/es/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Ajustes del adaptador para awtrix-light", + "option1": "Opción 1", + "option2": "opcion 2" +} diff --git a/admin/i18n/fr/translations.json b/admin/i18n/fr/translations.json new file mode 100644 index 0000000..59916be --- /dev/null +++ b/admin/i18n/fr/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Paramètres d'adaptateur pour awtrix-light", + "option1": "Option 1", + "option2": "Option 2" +} diff --git a/admin/i18n/it/translations.json b/admin/i18n/it/translations.json new file mode 100644 index 0000000..db99122 --- /dev/null +++ b/admin/i18n/it/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Impostazioni dell'adattatore per awtrix-light", + "option1": "opzione 1", + "option2": "opzione 2" +} diff --git a/admin/i18n/nl/translations.json b/admin/i18n/nl/translations.json new file mode 100644 index 0000000..5d979ac --- /dev/null +++ b/admin/i18n/nl/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Adapterinstellingen voor awtrix-light", + "option1": "Optie 1", + "option2": "Optie 2" +} diff --git a/admin/i18n/pl/translations.json b/admin/i18n/pl/translations.json new file mode 100644 index 0000000..8523085 --- /dev/null +++ b/admin/i18n/pl/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Ustawienia adaptera dla awtrix-light", + "option1": "opcja 1", + "option2": "Opcja 2" +} diff --git a/admin/i18n/pt/translations.json b/admin/i18n/pt/translations.json new file mode 100644 index 0000000..c01e925 --- /dev/null +++ b/admin/i18n/pt/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Configurações do adaptador para awtrix-light", + "option1": "Opção 1", + "option2": "opção 2" +} diff --git a/admin/i18n/ru/translations.json b/admin/i18n/ru/translations.json new file mode 100644 index 0000000..c8b76d3 --- /dev/null +++ b/admin/i18n/ru/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Настройки адаптера для awtrix-light", + "option1": "Опция 1", + "option2": "вариант 2" +} diff --git a/admin/i18n/uk/translations.json b/admin/i18n/uk/translations.json new file mode 100644 index 0000000..7ad46c6 --- /dev/null +++ b/admin/i18n/uk/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "Налаштування адаптера для awtrix-light", + "option1": "варіант1", + "option2": "варіант2" +} diff --git a/admin/i18n/zh-cn/translations.json b/admin/i18n/zh-cn/translations.json new file mode 100644 index 0000000..654b035 --- /dev/null +++ b/admin/i18n/zh-cn/translations.json @@ -0,0 +1,5 @@ +{ + "awtrix-light adapter settings": "awtrix-light的适配器设置", + "option1": "选项1", + "option2": "选项2" +} diff --git a/admin/jsonConfig.json b/admin/jsonConfig.json new file mode 100644 index 0000000..ed8761a --- /dev/null +++ b/admin/jsonConfig.json @@ -0,0 +1,16 @@ +{ + "i18n": true, + "type": "panel", + "items": { + "option1": { + "type": "checkbox", + "label": "option1", + "newLine": true + }, + "option2": { + "type": "text", + "label": "option2", + "newLine": true + } + } +} diff --git a/io-package.json b/io-package.json new file mode 100644 index 0000000..e70fb1d --- /dev/null +++ b/io-package.json @@ -0,0 +1,104 @@ +{ + "common": { + "name": "awtrix-light", + "version": "0.0.1", + "news": { + "0.0.1": { + "en": "initial release", + "de": "Erstveröffentlichung", + "ru": "Начальная версия", + "pt": "lançamento inicial", + "nl": "Eerste uitgave", + "fr": "Première version", + "it": "Versione iniziale", + "es": "Versión inicial", + "pl": "Pierwsze wydanie", + "uk": "Початкова версія", + "zh-cn": "首次出版" + } + }, + "title": "Awtrix Light", + "titleLang": { + "en": "Awtrix Light", + "de": "Awtrix Licht", + "ru": "Автрикс Лайт", + "pt": "Luz Awtrix", + "nl": "Awtrix licht", + "fr": "Lumière Awtrix", + "it": "Awtrix Luce", + "es": "luz awtrix", + "pl": "Światło Awtrixa", + "uk": "Awtrix Light", + "zh-cn": "Awtrix 光" + }, + "desc": { + "en": "Integrates your Ulanzi TC001 via HTTP", + "de": "Integriert Ihr Ulanzi TC001 über HTTP", + "ru": "Интегрирует ваш Ulanzi TC001 через HTTP", + "pt": "Integra seu Ulanzi TC001 via HTTP", + "nl": "Integreert uw Ulanzi TC001 via HTTP", + "fr": "Intègre votre Ulanzi TC001 via HTTP", + "it": "Integra il tuo Ulanzi TC001 tramite HTTP", + "es": "Integra tu Ulanzi TC001 vía HTTP", + "pl": "Integruje twój Ulanzi TC001 przez HTTP", + "uk": "Інтегрує ваш Ulanzi TC001 через HTTP", + "zh-cn": "通过 HTTP 集成您的乌兰子 TC001" + }, + "authors": ["Matthias Kleine "], + "keywords": ["awtrix", "ulanzi", "tc001", "pixel-clock"], + "license": "MIT", + "platform": "Javascript/Node.js", + "main": "main.js", + "icon": "awtrix-light.png", + "enabled": true, + "extIcon": "https://raw.githubusercontent.com/klein0r/ioBroker.awtrix-light/master/admin/awtrix-light.png", + "readme": "https://github.com/klein0r/ioBroker.awtrix-light/blob/master/README.md", + "loglevel": "info", + "mode": "daemon", + "type": "hardware", + "compact": true, + "connectionType": "local", + "dataSource": "poll", + "adminUI": { + "config": "json" + }, + "dependencies": [ + { + "js-controller": ">=3.3.22" + } + ], + "globalDependencies": [ + { + "admin": ">=5.1.13" + } + ] + }, + "native": { + "option1": true, + "option2": "42" + }, + "objects": [], + "instanceObjects": [ + { + "_id": "info", + "type": "channel", + "common": { + "name": "Information" + }, + "native": {} + }, + { + "_id": "info.connection", + "type": "state", + "common": { + "role": "indicator.connected", + "name": "Device or service connected", + "type": "boolean", + "read": true, + "write": false, + "def": false + }, + "native": {} + } + ] +} diff --git a/lib/adapter-config.d.ts b/lib/adapter-config.d.ts new file mode 100644 index 0000000..c1ac892 --- /dev/null +++ b/lib/adapter-config.d.ts @@ -0,0 +1,19 @@ +// This file extends the AdapterConfig type from "@types/iobroker" +// using the actual properties present in io-package.json +// in order to provide typings for adapter.config properties + +import { native } from '../io-package.json'; + +type _AdapterConfig = typeof native; + +// Augment the globally declared type ioBroker.AdapterConfig +declare global { + namespace ioBroker { + interface AdapterConfig extends _AdapterConfig { + // Do not enter anything here! + } + } +} + +// this is required so the above AdapterConfig is found by TypeScript / type checking +export {}; diff --git a/main.js b/main.js new file mode 100644 index 0000000..30d5267 --- /dev/null +++ b/main.js @@ -0,0 +1,168 @@ +'use strict'; + +/* + * Created with @iobroker/create-adapter v2.4.0 + */ + +// The adapter-core module gives you access to the core ioBroker functions +// you need to create an adapter +const utils = require('@iobroker/adapter-core'); + +// Load your modules here, e.g.: +// const fs = require("fs"); + +class AwtrixLight extends utils.Adapter { + /** + * @param {Partial} [options={}] + */ + constructor(options) { + super({ + ...options, + name: 'awtrix-light', + }); + this.on('ready', this.onReady.bind(this)); + this.on('stateChange', this.onStateChange.bind(this)); + // this.on('objectChange', this.onObjectChange.bind(this)); + // this.on('message', this.onMessage.bind(this)); + this.on('unload', this.onUnload.bind(this)); + } + + /** + * Is called when databases are connected and adapter received configuration. + */ + async onReady() { + // Initialize your adapter here + + // Reset the connection indicator during startup + this.setState('info.connection', false, true); + + // The adapters config (in the instance object everything under the attribute "native") is accessible via + // this.config: + this.log.info('config option1: ' + this.config.option1); + this.log.info('config option2: ' + this.config.option2); + + /* + For every state in the system there has to be also an object of type state + Here a simple template for a boolean variable named "testVariable" + Because every adapter instance uses its own unique namespace variable names can't collide with other adapters variables + */ + await this.setObjectNotExistsAsync('testVariable', { + type: 'state', + common: { + name: 'testVariable', + type: 'boolean', + role: 'indicator', + read: true, + write: true, + }, + native: {}, + }); + + // In order to get state updates, you need to subscribe to them. The following line adds a subscription for our variable we have created above. + this.subscribeStates('testVariable'); + // You can also add a subscription for multiple states. The following line watches all states starting with "lights." + // this.subscribeStates('lights.*'); + // Or, if you really must, you can also watch all states. Don't do this if you don't need to. Otherwise this will cause a lot of unnecessary load on the system: + // this.subscribeStates('*'); + + /* + setState examples + you will notice that each setState will cause the stateChange event to fire (because of above subscribeStates cmd) + */ + // the variable testVariable is set to true as command (ack=false) + await this.setStateAsync('testVariable', true); + + // same thing, but the value is flagged "ack" + // ack should be always set to true if the value is received from or acknowledged from the target system + await this.setStateAsync('testVariable', { val: true, ack: true }); + + // same thing, but the state is deleted after 30s (getState will return null afterwards) + await this.setStateAsync('testVariable', { val: true, ack: true, expire: 30 }); + + // examples for the checkPassword/checkGroup functions + let result = await this.checkPasswordAsync('admin', 'iobroker'); + this.log.info('check user admin pw iobroker: ' + result); + + result = await this.checkGroupAsync('admin', 'admin'); + this.log.info('check group user admin group admin: ' + result); + } + + /** + * Is called when adapter shuts down - callback has to be called under any circumstances! + * @param {() => void} callback + */ + onUnload(callback) { + try { + // Here you must clear all timeouts or intervals that may still be active + // clearTimeout(timeout1); + // clearTimeout(timeout2); + // ... + // clearInterval(interval1); + + callback(); + } catch (e) { + callback(); + } + } + + // If you need to react to object changes, uncomment the following block and the corresponding line in the constructor. + // You also need to subscribe to the objects with `this.subscribeObjects`, similar to `this.subscribeStates`. + // /** + // * Is called if a subscribed object changes + // * @param {string} id + // * @param {ioBroker.Object | null | undefined} obj + // */ + // onObjectChange(id, obj) { + // if (obj) { + // // The object was changed + // this.log.info(`object ${id} changed: ${JSON.stringify(obj)}`); + // } else { + // // The object was deleted + // this.log.info(`object ${id} deleted`); + // } + // } + + /** + * Is called if a subscribed state changes + * @param {string} id + * @param {ioBroker.State | null | undefined} state + */ + onStateChange(id, state) { + if (state) { + // The state was changed + this.log.info(`state ${id} changed: ${state.val} (ack = ${state.ack})`); + } else { + // The state was deleted + this.log.info(`state ${id} deleted`); + } + } + + // If you need to accept messages in your adapter, uncomment the following block and the corresponding line in the constructor. + // /** + // * Some message was sent to this instance over message box. Used by email, pushover, text2speech, ... + // * Using this method requires "common.messagebox" property to be set to true in io-package.json + // * @param {ioBroker.Message} obj + // */ + // onMessage(obj) { + // if (typeof obj === 'object' && obj.message) { + // if (obj.command === 'send') { + // // e.g. send email or pushover or whatever + // this.log.info('send command'); + + // // Send response in callback if required + // if (obj.callback) this.sendTo(obj.from, obj.command, 'Message received', obj.callback); + // } + // } + // } +} + +if (require.main !== module) { + // Export the constructor in compact mode + /** + * @param {Partial} [options={}] + */ + module.exports = (options) => new AwtrixLight(options); +} else { + // otherwise start the instance directly + new AwtrixLight(); +} diff --git a/main.test.js b/main.test.js new file mode 100644 index 0000000..85f2fc1 --- /dev/null +++ b/main.test.js @@ -0,0 +1,29 @@ +'use strict'; + +/** + * This is a dummy TypeScript test file using chai and mocha + * + * It's automatically excluded from npm and its build output is excluded from both git and npm. + * It is advised to test all your modules with accompanying *.test.js-files + */ + +// tslint:disable:no-unused-expression + +const { expect } = require('chai'); +// import { functionToTest } from "./moduleToTest"; + +describe('module to test => function to test', () => { + // initializing logic + const expected = 5; + + it(`should return ${expected}`, () => { + const result = 5; + // assign result a value from functionToTest + expect(result).to.equal(expected); + // or using the should() syntax + result.should.equal(expected); + }); + // ... more tests => it +}); + +// ... more test suites => describe diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..9a1cbdc --- /dev/null +++ b/package-lock.json @@ -0,0 +1,4655 @@ +{ + "name": "iobroker.awtrix-light", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "iobroker.awtrix-light", + "version": "0.0.1", + "license": "MIT", + "dependencies": { + "@iobroker/adapter-core": "^2.6.8" + }, + "devDependencies": { + "@alcalzone/release-script": "^3.5.9", + "@alcalzone/release-script-plugin-iobroker": "^3.5.9", + "@alcalzone/release-script-plugin-license": "^3.5.9", + "@alcalzone/release-script-plugin-manual-review": "^3.5.9", + "@iobroker/adapter-dev": "^1.2.0", + "@iobroker/testing": "^4.1.0", + "@tsconfig/node14": "^1.0.3", + "@types/chai": "^4.3.5", + "@types/chai-as-promised": "^7.1.5", + "@types/mocha": "^10.0.1", + "@types/node": "^14.18.47", + "@types/proxyquire": "^1.3.28", + "@types/sinon": "^10.0.15", + "@types/sinon-chai": "^3.2.9", + "chai": "^4.3.7", + "chai-as-promised": "^7.1.1", + "eslint": "^8.40.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^4.2.1", + "mocha": "^9.2.2", + "prettier": "^2.8.8", + "proxyquire": "^2.1.3", + "sinon": "^13.0.2", + "sinon-chai": "^3.7.0", + "typescript": "~4.6.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@alcalzone/pak": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@alcalzone/pak/-/pak-0.8.1.tgz", + "integrity": "sha512-sPdxNxdXLH96kbyWLdIljVSIY2N6/qnPqkq5AlWvuizjGQUwHIUtWZHLss9XNDV/hY7YkgdIb9ILHbMTnRBxVQ==", + "dev": true, + "dependencies": { + "axios": "^0.26.0", + "execa": "^5.0.0", + "fs-extra": "^10.0.1" + } + }, + "node_modules/@alcalzone/pak/node_modules/axios": { + "version": "0.26.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", + "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.8" + } + }, + "node_modules/@alcalzone/release-script": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script/-/release-script-3.5.9.tgz", + "integrity": "sha512-2qBUyh+wd/7KToZGXrJDp8v1nos1jm+xsDiSvI2jv5Co+105N415DCJNtgOvR6s2+/G2lbIZ08oYopl+evHgkw==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "@alcalzone/release-script-plugin-changelog": "3.5.9", + "@alcalzone/release-script-plugin-exec": "3.5.9", + "@alcalzone/release-script-plugin-git": "3.5.9", + "@alcalzone/release-script-plugin-package": "3.5.9", + "@alcalzone/release-script-plugin-version": "3.5.9", + "alcalzone-shared": "^4.0.1", + "axios": "^0.27.1", + "enquirer": "^2.3.6", + "fs-extra": "^10.1.0", + "picocolors": "1.0.0", + "semver": "^7.3.7", + "source-map-support": "^0.5.21", + "yargs": "^17.4.1" + }, + "bin": { + "release-script": "bin/release.js" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-core": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-core/-/release-script-core-3.5.9.tgz", + "integrity": "sha512-rRxosfZMtpDcIm+sPTdwP5oVRBLX1WLYImrp0nUhqOPNN/UD5l9TxNVXDhGUsstXhaRXXBYS2BnOQwR308OfyA==", + "dev": true, + "dependencies": { + "execa": "^5.1.1" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-changelog": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-changelog/-/release-script-plugin-changelog-3.5.9.tgz", + "integrity": "sha512-KmOMbjd7ta/Wl2OWQUxMpNza6Sr5/sB7AfV7BC0uCl839StnoivSjqywDfNcgJq97fxMs7hnGT/uYaz7oTUm7A==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "alcalzone-shared": "^4.0.1", + "fs-extra": "^10.1.0" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-exec": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-exec/-/release-script-plugin-exec-3.5.9.tgz", + "integrity": "sha512-Y6OM+gEpfYYoDvHdzNUtgVZiBAgOzGWZk9yRPF5l8UWE3+tQAyMWavk2m08ExbEICfGV1lb8lRBzAdQaf7/0HA==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "alcalzone-shared": "^4.0.1" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-git": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-git/-/release-script-plugin-git-3.5.9.tgz", + "integrity": "sha512-LT8YSevyLqZFI4rx4ET1qRnqTNnU5rVmQvGFCnC+d375zU5/U2cu19s/WVLChMHkvmUbAwBld+xhqqos2hQrKw==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "fs-extra": "^10.1.0" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-iobroker": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-iobroker/-/release-script-plugin-iobroker-3.5.9.tgz", + "integrity": "sha512-0z0wU0HCLEe94JAtDPtarOc0AcqudefRlhA7RddZ6+FRwPOyAg8i37hcDKTo+C7rrk31TwgY2xiPIDjkfBKhyQ==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "alcalzone-shared": "^4.0.1", + "axios": "^0.27.1", + "fs-extra": "^10.1.0", + "semver": "^7.3.7" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-license": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-license/-/release-script-plugin-license-3.5.9.tgz", + "integrity": "sha512-Wa+RN968zYK0ZNkkaIRfD3Ru2ndWLD5e+VNbah4krtoeHqvQDiOPlfcWM0McU8q3ud+AMPwhYEwR1mh2lwi0gg==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "fs-extra": "^10.1.0", + "tiny-glob": "^0.2.9" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-manual-review": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-manual-review/-/release-script-plugin-manual-review-3.5.9.tgz", + "integrity": "sha512-W/7T6lXfnfGo822g2LLU122SDYOk5V7GgPSL4+yr+mRvgAVwiUf4YBnv8C6fyO0/7cSGNYebmuIlRJcGc6sZCw==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-package": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-package/-/release-script-plugin-package-3.5.9.tgz", + "integrity": "sha512-jYmWzm9Dvnnc6RWTrZApQbeXzaFYSrHqkEHViAtx5NvBztfH3ANwVl6jS4UEaMm2NbIIq6toWGznVvNtnVzEjg==", + "dev": true, + "dependencies": { + "@alcalzone/pak": "^0.8.1", + "@alcalzone/release-script-core": "3.5.9", + "alcalzone-shared": "^4.0.1", + "fs-extra": "^10.1.0", + "semver": "^7.3.7" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@alcalzone/release-script-plugin-version": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@alcalzone/release-script-plugin-version/-/release-script-plugin-version-3.5.9.tgz", + "integrity": "sha512-CYN49aXx4QSFRWQN11wCC13SK1ZygILlohYlUFkRiA0g6u2G7z1rjW8QZSLXrR6C6gxzR4zL12VJ/xFZqYeuZA==", + "dev": true, + "dependencies": { + "@alcalzone/release-script-core": "3.5.9", + "alcalzone-shared": "^4.0.1", + "fs-extra": "^10.1.0", + "semver": "^7.3.7", + "tiny-glob": "^0.2.9" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@babel/parser": { + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", + "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.18.tgz", + "integrity": "sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.18.tgz", + "integrity": "sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.40.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.40.0.tgz", + "integrity": "sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@esm2cjs/execa": { + "version": "6.1.1-cjs.1", + "resolved": "https://registry.npmjs.org/@esm2cjs/execa/-/execa-6.1.1-cjs.1.tgz", + "integrity": "sha512-FHxfnmuDIjY1VS/BLzDkL8EkbcFvi8s6x1nYQ1Nyu0An0n88EJcGhDBcRWLFwt3C3nT7xwI+MwHRH1TZcAFW2w==", + "dev": true, + "dependencies": { + "@esm2cjs/human-signals": "^3.0.1", + "@esm2cjs/is-stream": "^3.0.0", + "@esm2cjs/npm-run-path": "^5.1.1-cjs.0", + "@esm2cjs/onetime": "^6.0.1-cjs.0", + "@esm2cjs/strip-final-newline": "^3.0.1-cjs.0", + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "merge-stream": "^2.0.0", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/human-signals": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@esm2cjs/human-signals/-/human-signals-3.0.1.tgz", + "integrity": "sha512-QZme4eF/PwTpeSbMB4AaWGQ4VSygzE30jI+Oas1NPTtZQAgcHwWVDOQpIW8FUmtzn5Q+2cS7AjnTzbtqtc5P6g==", + "dev": true, + "engines": { + "node": ">=12.20.0" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@esm2cjs/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-qcBscHlJpZFOD5nnmMHkzOrq2xyvsp9fbVreQLS8x2LOs8N3CrNi3fqvFY0GVJR+YSOHscwhG9T5t4Ck7R7QGw==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@esm2cjs/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-LIIAjcpjLr4rcbYmRQ+eRu55Upy/MMB78seIlwqbnyiA+cTa1/pxWnJ1NHJQrw6tx2wMQmlYoJj+wf16NjWH6Q==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/npm-run-path": { + "version": "5.1.1-cjs.0", + "resolved": "https://registry.npmjs.org/@esm2cjs/npm-run-path/-/npm-run-path-5.1.1-cjs.0.tgz", + "integrity": "sha512-CWeAIyE8iNSCgP2ItPE8iPgS+lACqgH+MuFRaWOIl2T7hnHqPFfhAJJ/LcLJJ/RMIxNMeenjFMwc91HW7NWr1A==", + "dev": true, + "dependencies": { + "@esm2cjs/path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/onetime": { + "version": "6.0.1-cjs.0", + "resolved": "https://registry.npmjs.org/@esm2cjs/onetime/-/onetime-6.0.1-cjs.0.tgz", + "integrity": "sha512-MkZMZSxrSC/6yUuAw6Azc56XOgwHQQIsNDlO/zgFmOcycJBhRwRuc/gdYUUOFNZIh7y+f0JSIxkNdJPFvJ5W0w==", + "dev": true, + "dependencies": { + "@esm2cjs/mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@esm2cjs/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-fKzZ3uIIP4j+7WfyG0MEkomGHL0hUXWCx1kY2Zct3GTdl4pyY+3k5lCUxjgdDa2Ld1BCjMNorXnRHiBP6jW6CQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@esm2cjs/strip-final-newline": { + "version": "3.0.1-cjs.0", + "resolved": "https://registry.npmjs.org/@esm2cjs/strip-final-newline/-/strip-final-newline-3.0.1-cjs.0.tgz", + "integrity": "sha512-o41riCGPiOEStayoikBCAqwa6igbv9L9rP+k5UCfQ24EJD/wGrdDs/KTNwkHG5JzDK3T60D5dMkWkLKEPy8gjA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/AlCalzone" + } + }, + "node_modules/@google-cloud/common": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@google-cloud/common/-/common-4.0.3.tgz", + "integrity": "sha512-fUoMo5b8iAKbrYpneIRV3z95AlxVJPrjpevxs4SKoclngWZvTXBSGpNisF5+x5m+oNGve7jfB1e6vNBZBUs7Fw==", + "dev": true, + "dependencies": { + "@google-cloud/projectify": "^3.0.0", + "@google-cloud/promisify": "^3.0.0", + "arrify": "^2.0.1", + "duplexify": "^4.1.1", + "ent": "^2.2.0", + "extend": "^3.0.2", + "google-auth-library": "^8.0.2", + "retry-request": "^5.0.0", + "teeny-request": "^8.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@google-cloud/projectify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@google-cloud/projectify/-/projectify-3.0.0.tgz", + "integrity": "sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@google-cloud/promisify": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@google-cloud/promisify/-/promisify-3.0.1.tgz", + "integrity": "sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@google-cloud/translate": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/@google-cloud/translate/-/translate-7.2.1.tgz", + "integrity": "sha512-VXmEvMF8qa4c7p5drjUZ06B8v0DxoUfFPyjhFp/wbgoe0GWaD1y1gGk6rUZxGKD/pB19kFU+0LMMSCgBW+a0iA==", + "dev": true, + "dependencies": { + "@google-cloud/common": "^4.0.0", + "@google-cloud/promisify": "^3.0.0", + "arrify": "^2.0.0", + "extend": "^3.0.2", + "google-gax": "^3.5.8", + "is-html": "^2.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.8.14", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz", + "integrity": "sha512-w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A==", + "dev": true, + "dependencies": { + "@grpc/proto-loader": "^0.7.0", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz", + "integrity": "sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==", + "dev": true, + "dependencies": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^7.0.0", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@iobroker/adapter-core": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/@iobroker/adapter-core/-/adapter-core-2.6.8.tgz", + "integrity": "sha512-xrqtH5RYZ6BvEcDyfuPkajd9el4R6p0VLRYKlnfMafAbxybIN+zfeHvjGI4l8OAHkyP2tcv6boX2Vu0KnMFOHw==", + "dependencies": { + "@types/iobroker": "^4.0.5" + } + }, + "node_modules/@iobroker/adapter-dev": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@iobroker/adapter-dev/-/adapter-dev-1.2.0.tgz", + "integrity": "sha512-dOw6sCPufMN/OygVloFerYW7mtP5unYGjc/HHsZuhr5i5VBvRACArZsSlmxsGkhlJPUydWvrK3t4pedzCXG0ow==", + "dev": true, + "dependencies": { + "@esm2cjs/execa": "^6.1.1-cjs.1", + "@google-cloud/translate": "^7.0.3", + "ansi-colors": "^4.1.3", + "axios": "^0.27.2", + "esbuild": "^0.15.12", + "fs-extra": "^10.1.0", + "tiny-glob": "^0.2.9", + "yargs": "^17.6.0" + }, + "bin": { + "build-adapter": "bin/build-adapter.js", + "translate-adapter": "bin/translate-adapter.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@iobroker/testing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@iobroker/testing/-/testing-4.1.0.tgz", + "integrity": "sha512-fzCfR5xF9VToixMqSZQKjNZiGvwDCZ5cUX+bfdll7ZyVhPXcMt6LB5UXkAYLF4QN/wA0TYa9o71iElKOQp4b4A==", + "dev": true, + "dependencies": { + "alcalzone-shared": "~4.0.3", + "chai": "^4.3.6", + "chai-as-promised": "^7.1.1", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "mocha": "^10.0.0", + "sinon": "^14.0.0", + "sinon-chai": "^3.7.0" + } + }, + "node_modules/@iobroker/testing/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@iobroker/testing/node_modules/@sinonjs/samsam": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-7.0.1.tgz", + "integrity": "sha512-zsAk2Jkiq89mhZovB2LLOdTCxJF4hqqTToGP0ASWlhp4I1hqOjcfmZGafXntCN7MDC6yySH0mFHrYtHceOeLmw==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/@iobroker/testing/node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@iobroker/testing/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@iobroker/testing/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@iobroker/testing/node_modules/minimatch": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@iobroker/testing/node_modules/mocha": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz", + "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==", + "dev": true, + "dependencies": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "nanoid": "3.3.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mochajs" + } + }, + "node_modules/@iobroker/testing/node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@iobroker/testing/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/@iobroker/testing/node_modules/nanoid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/@iobroker/testing/node_modules/sinon": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-14.0.2.tgz", + "integrity": "sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "^9.1.2", + "@sinonjs/samsam": "^7.0.1", + "diff": "^5.0.0", + "nise": "^5.1.2", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/@iobroker/testing/node_modules/workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true + }, + "node_modules/@iobroker/testing/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jsdoc/salty": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.5.tgz", + "integrity": "sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=v12.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "dev": true + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "dev": true + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "dev": true + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "dev": true + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "dev": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "dev": true + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "dev": true + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "dev": true + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "dev": true + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", + "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@sinonjs/samsam": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.1.3.tgz", + "integrity": "sha512-nhOb2dWPeb1sd3IQXL/dVPnKHDOAFfvichtBf4xV00/rU1QbPCQqKMbvIheIjqwVjh7qIgf2AHTHi391yMOMpQ==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/@sinonjs/text-encoding": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", + "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", + "dev": true + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@types/chai": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.5.tgz", + "integrity": "sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==", + "dev": true + }, + "node_modules/@types/chai-as-promised": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.5.tgz", + "integrity": "sha512-jStwss93SITGBwt/niYrkf2C+/1KTeZCZl1LaeezTlqppAKeoQC7jxyqYuP72sxBGKCIbw7oHgbYssIRzT5FCQ==", + "dev": true, + "dependencies": { + "@types/chai": "*" + } + }, + "node_modules/@types/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", + "dev": true, + "dependencies": { + "@types/minimatch": "^5.1.2", + "@types/node": "*" + } + }, + "node_modules/@types/iobroker": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/iobroker/-/iobroker-4.0.5.tgz", + "integrity": "sha512-D1tJwuDQEQQQ/cZVFjFjFUhUuMxJbfrz5U2UooiZwhgs69D/t8IowMvBI6Lk4ZR8HnCSxYwWHVRKyQnEMNgJPA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/linkify-it": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz", + "integrity": "sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==", + "dev": true + }, + "node_modules/@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", + "dev": true + }, + "node_modules/@types/markdown-it": { + "version": "12.2.3", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz", + "integrity": "sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==", + "dev": true, + "dependencies": { + "@types/linkify-it": "*", + "@types/mdurl": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/mocha": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.1.tgz", + "integrity": "sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==", + "dev": true + }, + "node_modules/@types/node": { + "version": "14.18.47", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.47.tgz", + "integrity": "sha512-OuJi8bIng4wYHHA3YpKauL58dZrPxro3d0tabPHyiNF8rKfGKuVfr83oFlPLmKri1cX+Z3cJP39GXmnqkP11Gw==" + }, + "node_modules/@types/proxyquire": { + "version": "1.3.28", + "resolved": "https://registry.npmjs.org/@types/proxyquire/-/proxyquire-1.3.28.tgz", + "integrity": "sha512-SQaNzWQ2YZSr7FqAyPPiA3FYpux2Lqh3HWMZQk47x3xbMCqgC/w0dY3dw9rGqlweDDkrySQBcaScXWeR+Yb11Q==", + "dev": true + }, + "node_modules/@types/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==", + "dev": true, + "dependencies": { + "@types/glob": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sinon": { + "version": "10.0.15", + "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.15.tgz", + "integrity": "sha512-3lrFNQG0Kr2LDzvjyjB6AMJk4ge+8iYhQfdnSwIwlG88FUOV43kPcQqDZkDa/h3WSZy6i8Fr0BSjfQtB1B3xuQ==", + "dev": true, + "dependencies": { + "@types/sinonjs__fake-timers": "*" + } + }, + "node_modules/@types/sinon-chai": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/@types/sinon-chai/-/sinon-chai-3.2.9.tgz", + "integrity": "sha512-/19t63pFYU0ikrdbXKBWj9PCdnKyTd0Qkz0X91Ta081cYsq90OxYdcWwK/dwEoDa6dtXgj2HJfmzgq+QZTHdmQ==", + "dev": true, + "dependencies": { + "@types/chai": "*", + "@types/sinon": "*" + } + }, + "node_modules/@types/sinonjs__fake-timers": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.2.tgz", + "integrity": "sha512-9GcLXF0/v3t80caGs5p2rRfkB+a8VBGLJZVih6CNFkx8IZ994wiKKLSRs9nuFwk1HevWs/1mnUmkApGrSGsShA==", + "dev": true + }, + "node_modules/@ungap/promise-all-settled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", + "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/alcalzone-shared": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/alcalzone-shared/-/alcalzone-shared-4.0.8.tgz", + "integrity": "sha512-Rr0efCjNL9lw7miDvU8exL87Y42ehsLU2jUGNQUphhnlvxnTMrHeApWgoOSGZvsE2PhxC3KO7Z+VpQ/IbuV3aA==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bignumber.js": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz", + "integrity": "sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "dev": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/catharsis": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz", + "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/chai": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz", + "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==", + "dev": true, + "dependencies": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^4.1.2", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chai-as-promised": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz", + "integrity": "sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==", + "dev": true, + "dependencies": { + "check-error": "^1.0.2" + }, + "peerDependencies": { + "chai": ">= 2.1.2 < 5" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-eql": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "dev": true, + "dependencies": { + "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/ent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", + "integrity": "sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==", + "dev": true + }, + "node_modules/entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.18.tgz", + "integrity": "sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.15.18", + "@esbuild/linux-loong64": "0.15.18", + "esbuild-android-64": "0.15.18", + "esbuild-android-arm64": "0.15.18", + "esbuild-darwin-64": "0.15.18", + "esbuild-darwin-arm64": "0.15.18", + "esbuild-freebsd-64": "0.15.18", + "esbuild-freebsd-arm64": "0.15.18", + "esbuild-linux-32": "0.15.18", + "esbuild-linux-64": "0.15.18", + "esbuild-linux-arm": "0.15.18", + "esbuild-linux-arm64": "0.15.18", + "esbuild-linux-mips64le": "0.15.18", + "esbuild-linux-ppc64le": "0.15.18", + "esbuild-linux-riscv64": "0.15.18", + "esbuild-linux-s390x": "0.15.18", + "esbuild-netbsd-64": "0.15.18", + "esbuild-openbsd-64": "0.15.18", + "esbuild-sunos-64": "0.15.18", + "esbuild-windows-32": "0.15.18", + "esbuild-windows-64": "0.15.18", + "esbuild-windows-arm64": "0.15.18" + } + }, + "node_modules/esbuild-android-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.18.tgz", + "integrity": "sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-android-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.18.tgz", + "integrity": "sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.18.tgz", + "integrity": "sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.18.tgz", + "integrity": "sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.18.tgz", + "integrity": "sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.18.tgz", + "integrity": "sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-32": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.18.tgz", + "integrity": "sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.18.tgz", + "integrity": "sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.18.tgz", + "integrity": "sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.18.tgz", + "integrity": "sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-mips64le": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.18.tgz", + "integrity": "sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-ppc64le": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.18.tgz", + "integrity": "sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-riscv64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.18.tgz", + "integrity": "sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-s390x": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.18.tgz", + "integrity": "sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-netbsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.18.tgz", + "integrity": "sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-openbsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.18.tgz", + "integrity": "sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-sunos-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.18.tgz", + "integrity": "sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-32": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.18.tgz", + "integrity": "sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.18.tgz", + "integrity": "sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.18.tgz", + "integrity": "sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.40.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.40.0.tgz", + "integrity": "sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.40.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fast-text-encoding": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", + "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-keys": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fill-keys/-/fill-keys-1.0.2.tgz", + "integrity": "sha512-tcgI872xXjwFF4xgQmLxi76GnwJG3g/3isB1l4/G5Z4zrbddGpBjqZCO9oEAcB5wX0Hj/5iQB3toxfO7in1hHA==", + "dev": true, + "dependencies": { + "is-object": "~1.0.1", + "merge-descriptors": "~1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gaxios": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-5.1.0.tgz", + "integrity": "sha512-aezGIjb+/VfsJtIcHGcBSerNEDdfdHeMros+RbYbGpmonKWQCOVOes0LVZhn1lDtIgq55qq0HaxymIoae3Fl/A==", + "dev": true, + "dependencies": { + "extend": "^3.0.2", + "https-proxy-agent": "^5.0.0", + "is-stream": "^2.0.0", + "node-fetch": "^2.6.7" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/gcp-metadata": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.2.0.tgz", + "integrity": "sha512-aFhhvvNycky2QyhG+dcfEdHBF0FRbYcf39s6WNHUDysKSrbJ5vuFbjydxBcmewtXeV248GP8dWT3ByPNxsyHCw==", + "dev": true, + "dependencies": { + "gaxios": "^5.0.0", + "json-bigint": "^1.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalyzer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", + "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", + "dev": true + }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true + }, + "node_modules/google-auth-library": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.8.0.tgz", + "integrity": "sha512-0iJn7IDqObDG5Tu9Tn2WemmJ31ksEa96IyK0J0OZCpTh6CrC6FrattwKX87h3qKVuprCJpdOGKc1Xi8V0kMh8Q==", + "dev": true, + "dependencies": { + "arrify": "^2.0.0", + "base64-js": "^1.3.0", + "ecdsa-sig-formatter": "^1.0.11", + "fast-text-encoding": "^1.0.0", + "gaxios": "^5.0.0", + "gcp-metadata": "^5.2.0", + "gtoken": "^6.1.0", + "jws": "^4.0.0", + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/google-gax": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/google-gax/-/google-gax-3.6.0.tgz", + "integrity": "sha512-2fyb61vWxUonHiArRNJQmE4tx5oY1ni8VPo08fzII409vDSCWG7apDX4qNOQ2GXXT82gLBn3d3P1Dydh7pWjyw==", + "dev": true, + "dependencies": { + "@grpc/grpc-js": "~1.8.0", + "@grpc/proto-loader": "^0.7.0", + "@types/long": "^4.0.0", + "@types/rimraf": "^3.0.2", + "abort-controller": "^3.0.0", + "duplexify": "^4.0.0", + "fast-text-encoding": "^1.0.3", + "google-auth-library": "^8.0.2", + "is-stream-ended": "^0.1.4", + "node-fetch": "^2.6.1", + "object-hash": "^3.0.0", + "proto3-json-serializer": "^1.0.0", + "protobufjs": "7.2.3", + "protobufjs-cli": "1.1.1", + "retry-request": "^5.0.0" + }, + "bin": { + "compileProtos": "build/tools/compileProtos.js", + "minifyProtoJson": "build/tools/minify.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/google-p12-pem": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-4.0.1.tgz", + "integrity": "sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==", + "dev": true, + "dependencies": { + "node-forge": "^1.3.1" + }, + "bin": { + "gp12-pem": "build/src/bin/gp12-pem.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true, + "engines": { + "node": ">=4.x" + } + }, + "node_modules/gtoken": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-6.1.2.tgz", + "integrity": "sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==", + "dev": true, + "dependencies": { + "gaxios": "^5.0.1", + "google-p12-pem": "^4.0.0", + "jws": "^4.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-html": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-html/-/is-html-2.0.0.tgz", + "integrity": "sha512-S+OpgB5i7wzIue/YSE5hg0e5ZYfG3hhpNh9KGl6ayJ38p7ED6wxQLd1TV91xHpcTvw90KMJ9EwN3F/iNflHBVg==", + "dev": true, + "dependencies": { + "html-tags": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-stream-ended": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-stream-ended/-/is-stream-ended-0.1.4.tgz", + "integrity": "sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-sdsl": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", + "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/js2xmlparser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz", + "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==", + "dev": true, + "dependencies": { + "xmlcreate": "^2.0.4" + } + }, + "node_modules/jsdoc": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.2.tgz", + "integrity": "sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.15", + "@jsdoc/salty": "^0.2.1", + "@types/markdown-it": "^12.2.3", + "bluebird": "^3.7.2", + "catharsis": "^0.9.0", + "escape-string-regexp": "^2.0.0", + "js2xmlparser": "^4.0.2", + "klaw": "^3.0.0", + "markdown-it": "^12.3.2", + "markdown-it-anchor": "^8.4.1", + "marked": "^4.0.10", + "mkdirp": "^1.0.4", + "requizzle": "^0.2.3", + "strip-json-comments": "^3.1.0", + "underscore": "~1.13.2" + }, + "bin": { + "jsdoc": "jsdoc.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsdoc/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-bigint": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", + "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", + "dev": true, + "dependencies": { + "bignumber.js": "^9.0.0" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/just-extend": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz", + "integrity": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==", + "dev": true + }, + "node_modules/jwa": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", + "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", + "dev": true, + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", + "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", + "dev": true, + "dependencies": { + "jwa": "^2.0.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/klaw": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", + "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dev": true, + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "dev": true + }, + "node_modules/loupe": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz", + "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it-anchor": { + "version": "8.6.7", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz", + "integrity": "sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==", + "dev": true, + "peerDependencies": { + "@types/markdown-it": "*", + "markdown-it": "*" + } + }, + "node_modules/marked": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", + "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", + "dev": true, + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz", + "integrity": "sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==", + "dev": true, + "dependencies": { + "@ungap/promise-all-settled": "1.1.2", + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.3", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "4.2.1", + "ms": "2.1.3", + "nanoid": "3.3.1", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "which": "2.0.2", + "workerpool": "6.2.0", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mochajs" + } + }, + "node_modules/mocha/node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/mocha/node_modules/debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/mocha/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/mocha/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/module-not-found-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/module-not-found-error/-/module-not-found-error-1.0.1.tgz", + "integrity": "sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/nise": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.4.tgz", + "integrity": "sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "@sinonjs/fake-timers": "^10.0.2", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + } + }, + "node_modules/nise/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/nise/node_modules/@sinonjs/fake-timers": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.1.0.tgz", + "integrity": "sha512-w1qd368vtrwttm1PRJWPW1QHlbmHrVDGs1eBH/jZvRPUFS4MNXV9Q33EQdjOdeAxZ7O8+3wM7zxztm2nfUSyKw==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/nise/node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/proto3-json-serializer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-1.1.1.tgz", + "integrity": "sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==", + "dev": true, + "dependencies": { + "protobufjs": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protobufjs": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", + "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protobufjs-cli": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/protobufjs-cli/-/protobufjs-cli-1.1.1.tgz", + "integrity": "sha512-VPWMgIcRNyQwWUv8OLPyGQ/0lQY/QTQAVN5fh+XzfDwsVw1FZ2L3DM/bcBf8WPiRz2tNpaov9lPZfNcmNo6LXA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "escodegen": "^1.13.0", + "espree": "^9.0.0", + "estraverse": "^5.1.0", + "glob": "^8.0.0", + "jsdoc": "^4.0.0", + "minimist": "^1.2.0", + "semver": "^7.1.2", + "tmp": "^0.2.1", + "uglify-js": "^3.7.7" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "protobufjs": "^7.0.0" + } + }, + "node_modules/protobufjs-cli/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/protobufjs-cli/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/protobufjs-cli/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/protobufjs/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "dev": true + }, + "node_modules/proxyquire": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/proxyquire/-/proxyquire-2.1.3.tgz", + "integrity": "sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==", + "dev": true, + "dependencies": { + "fill-keys": "^1.0.2", + "module-not-found-error": "^1.0.1", + "resolve": "^1.11.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requizzle": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz", + "integrity": "sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/retry-request": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/retry-request/-/retry-request-5.0.2.tgz", + "integrity": "sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "extend": "^3.0.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sinon": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-13.0.2.tgz", + "integrity": "sha512-KvOrztAVqzSJWMDoxM4vM+GPys1df2VBoXm+YciyB/OLMamfS3VXh3oGh5WtrAGSzrgczNWFFY22oKb7Fi5eeA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^9.1.2", + "@sinonjs/samsam": "^6.1.1", + "diff": "^5.0.0", + "nise": "^5.1.1", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/sinon-chai": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/sinon-chai/-/sinon-chai-3.7.0.tgz", + "integrity": "sha512-mf5NURdUaSdnatJx3uhoBOrY9dtL19fiOtAdT1Azxg3+lNJFiuN0uzaU3xX1LeAfL17kHQhTAJgpsfhbMJMY2g==", + "dev": true, + "peerDependencies": { + "chai": "^4.0.0", + "sinon": ">=4.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/stream-events": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stream-events/-/stream-events-1.0.5.tgz", + "integrity": "sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==", + "dev": true, + "dependencies": { + "stubs": "^3.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stubs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stubs/-/stubs-3.0.0.tgz", + "integrity": "sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==", + "dev": true + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/teeny-request": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/teeny-request/-/teeny-request-8.0.3.tgz", + "integrity": "sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww==", + "dev": true, + "dependencies": { + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "stream-events": "^1.0.5", + "uuid": "^9.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tiny-glob": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", + "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", + "dev": true, + "dependencies": { + "globalyzer": "0.1.0", + "globrex": "^0.1.2" + } + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.6.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", + "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "dev": true + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workerpool": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz", + "integrity": "sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xmlcreate": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", + "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d67f54d --- /dev/null +++ b/package.json @@ -0,0 +1,78 @@ +{ + "name": "iobroker.awtrix-light", + "version": "0.0.1", + "description": "Integrates your Ulanzi TC001 via HTTP", + "author": { + "name": "Matthias Kleine", + "email": "info@haus-automatisierung.com" + }, + "homepage": "https://github.com/klein0r/ioBroker.awtrix-light", + "license": "MIT", + "keywords": [ + "awtrix", + "ulanzi", + "tc001", + "pixel-clock" + ], + "repository": { + "type": "git", + "url": "git@github.com:klein0r/ioBroker.awtrix-light.git" + }, + "engines": { + "node": ">= 14" + }, + "dependencies": { + "@iobroker/adapter-core": "^2.6.8" + }, + "devDependencies": { + "@alcalzone/release-script": "^3.5.9", + "@alcalzone/release-script-plugin-iobroker": "^3.5.9", + "@alcalzone/release-script-plugin-license": "^3.5.9", + "@alcalzone/release-script-plugin-manual-review": "^3.5.9", + "@iobroker/adapter-dev": "^1.2.0", + "@iobroker/testing": "^4.1.0", + "@tsconfig/node14": "^1.0.3", + "@types/chai": "^4.3.5", + "@types/chai-as-promised": "^7.1.5", + "@types/mocha": "^10.0.1", + "@types/node": "^14.18.47", + "@types/proxyquire": "^1.3.28", + "@types/sinon": "^10.0.15", + "@types/sinon-chai": "^3.2.9", + "chai": "^4.3.7", + "chai-as-promised": "^7.1.1", + "eslint": "^8.40.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^4.2.1", + "mocha": "^9.2.2", + "prettier": "^2.8.8", + "proxyquire": "^2.1.3", + "sinon-chai": "^3.7.0", + "sinon": "^13.0.2", + "typescript": "~4.6.4" + }, + "main": "main.js", + "files": [ + "admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}", + "admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}", + "lib/", + "www/", + "io-package.json", + "LICENSE", + "main.js" + ], + "scripts": { + "test:js": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,*.test.js,test/**/test!(PackageFiles|Startup).js}\"", + "test:package": "mocha test/package --exit", + "test:integration": "mocha test/integration --exit", + "test": "npm run test:js && npm run test:package", + "check": "tsc --noEmit -p tsconfig.check.json", + "lint": "eslint .", + "translate": "translate-adapter", + "release": "release-script" + }, + "bugs": { + "url": "https://github.com/klein0r/ioBroker.awtrix-light/issues" + }, + "readmeFilename": "README.md" +} \ No newline at end of file diff --git a/test/integration.js b/test/integration.js new file mode 100644 index 0000000..1b3453e --- /dev/null +++ b/test/integration.js @@ -0,0 +1,5 @@ +const path = require('path'); +const { tests } = require('@iobroker/testing'); + +// Run integration tests - See https://github.com/ioBroker/testing for a detailed explanation and further options +tests.integration(path.join(__dirname, '..')); diff --git a/test/mocha.setup.js b/test/mocha.setup.js new file mode 100644 index 0000000..7bc1808 --- /dev/null +++ b/test/mocha.setup.js @@ -0,0 +1,14 @@ +// Don't silently swallow unhandled rejections +process.on('unhandledRejection', (e) => { + throw e; +}); + +// enable the should interface with sinon +// and load chai-as-promised and sinon-chai by default +const sinonChai = require('sinon-chai'); +const chaiAsPromised = require('chai-as-promised'); +const { should, use } = require('chai'); + +should(); +use(sinonChai); +use(chaiAsPromised); diff --git a/test/mocharc.custom.json b/test/mocharc.custom.json new file mode 100644 index 0000000..f01dabb --- /dev/null +++ b/test/mocharc.custom.json @@ -0,0 +1,4 @@ +{ + "require": ["test/mocha.setup.js"], + "watch-files": ["!(node_modules|test)/**/*.test.js", "*.test.js", "test/**/test!(PackageFiles|Startup).js"] +} diff --git a/test/package.js b/test/package.js new file mode 100644 index 0000000..38eacc8 --- /dev/null +++ b/test/package.js @@ -0,0 +1,5 @@ +const path = require('path'); +const { tests } = require('@iobroker/testing'); + +// Validate the package files +tests.packageFiles(path.join(__dirname, '..')); diff --git a/test/tsconfig.json b/test/tsconfig.json new file mode 100644 index 0000000..0fa051d --- /dev/null +++ b/test/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "noImplicitAny": false + }, + "include": ["./**/*.js"] +} diff --git a/tsconfig.check.json b/tsconfig.check.json new file mode 100644 index 0000000..273f42f --- /dev/null +++ b/tsconfig.check.json @@ -0,0 +1,7 @@ +// Specialized tsconfig for type-checking js files +{ + "extends": "./tsconfig.json", + "compilerOptions": {}, + "include": ["**/*.js", "**/*.d.ts"], + "exclude": ["**/build", "node_modules/", "widgets/"] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a23d7e7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +// Root tsconfig to set the settings and power editor support for all TS files +{ + // To update the compilation target, install a different version of @tsconfig/node... and reference it here + // https://github.com/tsconfig/bases#node-14-tsconfigjson + "extends": "@tsconfig/node14/tsconfig.json", + "compilerOptions": { + // do not compile anything, this file is just to configure type checking + "noEmit": true, + + // check JS files + "allowJs": true, + "checkJs": true, + + // This is necessary for the automatic typing of the adapter config + "resolveJsonModule": true, + + // If you want to disable the stricter type checks (not recommended), uncomment the following line + // "strict": false, + // And enable some of those features for more fine-grained control + // "strictNullChecks": true, + // "strictPropertyInitialization": true, + // "strictBindCallApply": true, + "noImplicitAny": false, + // "noUnusedLocals": true, + // "noUnusedParameters": true, + "useUnknownInCatchVariables": false + }, + "include": ["**/*.js", "**/*.d.ts"], + "exclude": ["node_modules/**", "widgets/**"] +}